Merge JDK-8200758-branch
authorherrick
Tue, 29 Jan 2019 09:38:31 -0500
branchJDK-8200758-branch
changeset 57118 cf2b4754174d
parent 57109 b50715adf242 (current diff)
parent 53547 9d1a788dea3d (diff)
child 57119 b3dda8d77d8a
Merge
src/java.base/unix/native/libnio/ch/SocketChannelImpl.c
src/java.base/unix/native/libnio/ch/SocketDispatcher.c
src/java.base/windows/native/libnio/ch/SocketChannelImpl.c
test/Makefile
test/TestCommon.gmk
test/hotspot/jtreg/Makefile
test/hotspot/jtreg/gc/g1/TestStringTableStats.java
test/jaxp/Makefile
test/jdk/Makefile
test/langtools/Makefile
test/nashorn/Makefile
--- a/.hgtags	Tue Jan 22 09:43:38 2019 -0500
+++ b/.hgtags	Tue Jan 29 09:38:31 2019 -0500
@@ -536,4 +536,5 @@
 f15d443f97318e9b40e6f451e327ff69ed4ec361 jdk-12+27
 a47b8125b7cc9ef59619745c163975fe935b57ed jdk-13+4
 659b004b6a1bd8c31e766cbdf328d8f8473fd4d7 jdk-12+28
-
+e3ed960609927b5fdfd0a797159835cd83a81a31 jdk-13+5
+44f41693631f9b5ac78ff4d2bfabd6734fe46df2 jdk-12+29
--- a/doc/testing.html	Tue Jan 22 09:43:38 2019 -0500
+++ b/doc/testing.html	Tue Jan 29 09:38:31 2019 -0500
@@ -34,6 +34,7 @@
 </ul></li>
 <li><a href="#test-results-and-summary">Test results and summary</a></li>
 <li><a href="#test-suite-control">Test suite control</a><ul>
+<li><a href="#general-keywords-test_opts">General keywords (TEST_OPTS)</a></li>
 <li><a href="#jtreg-keywords">JTReg keywords</a></li>
 <li><a href="#gtest-keywords">Gtest keywords</a></li>
 <li><a href="#microbenchmark-keywords">Microbenchmark keywords</a></li>
@@ -102,11 +103,29 @@
 <p>To separate multiple keyword=value pairs, use <code>;</code> (semicolon). Since the shell normally eats <code>;</code>, the recommended usage is to write the assignment inside qoutes, e.g. <code>JTREG=&quot;...;...&quot;</code>. This will also make sure spaces are preserved, as in <code>JTREG=&quot;VM_OPTIONS=-XshowSettings -Xlog:gc+ref=debug&quot;</code>.</p>
 <p>(Other ways are possible, e.g. using backslash: <code>JTREG=JOBS=1\;TIMEOUT=8</code>. Also, as a special technique, the string <code>%20</code> will be replaced with space for certain options, e.g. <code>JTREG=VM_OPTIONS=-XshowSettings%20-Xlog:gc+ref=debug</code>. This can be useful if you have layers of scripts and have trouble getting proper quoting of command line arguments through.)</p>
 <p>As far as possible, the names of the keywords have been standardized between test suites.</p>
+<h3 id="general-keywords-test_opts">General keywords (TEST_OPTS)</h3>
+<p>Some keywords are valid across different test suites. If you want to run tests from multiple test suites, or just don't want to care which test suite specific control variable to use, then you can use the general TEST_OPTS control variable.</p>
+<p>There are also some keywords that applies globally to the test runner system, not to any specific test suites. These are also available as TEST_OPTS keywords.</p>
+<h4 id="jobs">JOBS</h4>
+<p>Currently only applies to JTReg.</p>
+<h4 id="timeout_factor">TIMEOUT_FACTOR</h4>
+<p>Currently only applies to JTReg.</p>
+<h4 id="vm_options">VM_OPTIONS</h4>
+<p>Applies to JTReg, GTest and Micro.</p>
+<h4 id="java_options">JAVA_OPTIONS</h4>
+<p>Applies to JTReg, GTest and Micro.</p>
+<h4 id="aot_modules">AOT_MODULES</h4>
+<p>Applies to JTReg and GTest.</p>
+<h4 id="jcov">JCOV</h4>
+<p>This keywords applies globally to the test runner system. If set to <code>true</code>, it enables JCov coverage reporting for all tests run. To be useful, the JDK under test must be run with a JDK built with JCov instrumentation (<code>configure --with-jcov=&lt;path to directory containing lib/jcov.jar&gt;</code>, <code>make jcov-image</code>).</p>
+<p>The simplest way to run tests with JCov coverage report is to use the special target <code>jcov-test</code> instead of <code>test</code>, e.g. <code>make jcov-test TEST=jdk_lang</code>. This will make sure the JCov image is built, and that JCov reporting is enabled.</p>
+<p>The JCov report is stored in <code>build/$BUILD/test-results/jcov-output</code>.</p>
+<p>Please note that running with JCov reporting can be very memory intensive.</p>
 <h3 id="jtreg-keywords">JTReg keywords</h3>
-<h4 id="jobs">JOBS</h4>
+<h4 id="jobs-1">JOBS</h4>
 <p>The test concurrency (<code>-concurrency</code>).</p>
 <p>Defaults to TEST_JOBS (if set by <code>--with-test-jobs=</code>), otherwise it defaults to JOBS, except for Hotspot, where the default is <em>number of CPU cores/2</em>, but never more than 12.</p>
-<h4 id="timeout">TIMEOUT</h4>
+<h4 id="timeout_factor-1">TIMEOUT_FACTOR</h4>
 <p>The timeout factor (<code>-timeoutFactor</code>).</p>
 <p>Defaults to 4.</p>
 <h4 id="test_mode">TEST_MODE</h4>
@@ -125,13 +144,21 @@
 <p>Limit memory consumption (<code>-Xmx</code> and <code>-vmoption:-Xmx</code>, or none).</p>
 <p>Limit memory consumption for JTReg test framework and VM under test. Set to 0 to disable the limits.</p>
 <p>Defaults to 512m, except for hotspot, where it defaults to 0 (no limit).</p>
+<h4 id="keywords">KEYWORDS</h4>
+<p>JTReg kewords sent to JTReg using <code>-k</code>. Please be careful in making sure that spaces and special characters (like <code>!</code>) are properly quoted. To avoid some issues, the special value <code>%20</code> can be used instead of space.</p>
+<h4 id="extra_problem_lists">EXTRA_PROBLEM_LISTS</h4>
+<p>Use additional problem lists file or files, in addition to the default ProblemList.txt located at the JTReg test roots.</p>
+<p>If multiple file names are specified, they should be separated by space (or, to help avoid quoting issues, the special value <code>%20</code>).</p>
+<p>The file names should be either absolute, or relative to the JTReg test root of the tests to be run.</p>
 <h4 id="options">OPTIONS</h4>
 <p>Additional options to the JTReg test framework.</p>
 <p>Use <code>JTREG=&quot;OPTIONS=--help all&quot;</code> to see all available JTReg options.</p>
-<h4 id="java_options">JAVA_OPTIONS</h4>
+<h4 id="java_options-1">JAVA_OPTIONS</h4>
 <p>Additional Java options to JTReg (<code>-javaoption</code>).</p>
-<h4 id="vm_options">VM_OPTIONS</h4>
+<h4 id="vm_options-1">VM_OPTIONS</h4>
 <p>Additional VM options to JTReg (<code>-vmoption</code>).</p>
+<h4 id="aot_modules-1">AOT_MODULES</h4>
+<p>Generate AOT modules before testing for the specified module, or set of modules. If multiple modules are specified, they should be separated by space (or, to help avoid quoting issues, the special value <code>%20</code>).</p>
 <h3 id="gtest-keywords">Gtest keywords</h3>
 <h4 id="repeat">REPEAT</h4>
 <p>The number of times to repeat the tests (<code>--gtest_repeat</code>).</p>
@@ -139,6 +166,8 @@
 <h4 id="options-1">OPTIONS</h4>
 <p>Additional options to the Gtest test framework.</p>
 <p>Use <code>GTEST=&quot;OPTIONS=--help&quot;</code> to see all available Gtest options.</p>
+<h4 id="aot_modules-2">AOT_MODULES</h4>
+<p>Generate AOT modules before testing for the specified module, or set of modules. If multiple modules are specified, they should be separated by space (or, to help avoid quoting issues, the special value <code>%20</code>).</p>
 <h3 id="microbenchmark-keywords">Microbenchmark keywords</h3>
 <h4 id="fork">FORK</h4>
 <p>Override the number of benchmark forks to spawn. Same as specifying <code>-f &lt;num&gt;</code>.</p>
@@ -152,7 +181,7 @@
 <p>Amount of time to spend in each warmup iteration. Same as specifying <code>-w &lt;num&gt;</code>.</p>
 <h4 id="results_format">RESULTS_FORMAT</h4>
 <p>Specify to have the test run save a log of the values. Accepts the same values as <code>-rff</code>, i.e., <code>text</code>, <code>csv</code>, <code>scsv</code>, <code>json</code>, or <code>latex</code>.</p>
-<h4 id="vm_options-1">VM_OPTIONS</h4>
+<h4 id="vm_options-2">VM_OPTIONS</h4>
 <p>Additional VM arguments to provide to forked off VMs. Same as <code>-jvmArgs &lt;args&gt;</code></p>
 <h4 id="options-2">OPTIONS</h4>
 <p>Additional arguments to send to JMH.</p>
--- a/doc/testing.md	Tue Jan 22 09:43:38 2019 -0500
+++ b/doc/testing.md	Tue Jan 29 09:38:31 2019 -0500
@@ -40,8 +40,8 @@
 
 To be able to run microbenchmarks, `configure` needs to know where to find
 the JMH dependency. Use `--with-jmh=<path to JMH jars>` to point to a directory
-containing the core JMH and transitive dependencies. The recommended dependencies 
-can be retrieved by running `sh make/devkit/createJMHBundle.sh`, after which 
+containing the core JMH and transitive dependencies. The recommended dependencies
+can be retrieved by running `sh make/devkit/createJMHBundle.sh`, after which
 `--with-jmh=build/jmh/jars` should work.
 
 ## Test selection
@@ -202,6 +202,50 @@
 As far as possible, the names of the keywords have been standardized between
 test suites.
 
+### General keywords (TEST_OPTS)
+
+Some keywords are valid across different test suites. If you want to run
+tests from multiple test suites, or just don't want to care which test suite specific
+control variable to use, then you can use the general TEST_OPTS control variable.
+
+There are also some keywords that applies globally to the test runner system,
+not to any specific test suites. These are also available as TEST_OPTS keywords.
+
+#### JOBS
+
+Currently only applies to JTReg.
+
+#### TIMEOUT_FACTOR
+
+Currently only applies to JTReg.
+
+#### VM_OPTIONS
+
+Applies to JTReg, GTest and Micro.
+
+#### JAVA_OPTIONS
+
+Applies to JTReg, GTest and Micro.
+
+#### AOT_MODULES
+
+Applies to JTReg and GTest.
+
+#### JCOV
+
+This keywords applies globally to the test runner system. If set to `true`, it
+enables JCov coverage reporting for all tests run. To be useful, the JDK under
+test must be run with a JDK built with JCov instrumentation (`configure
+--with-jcov=<path to directory containing lib/jcov.jar>`, `make jcov-image`).
+
+The simplest way to run tests with JCov coverage report is to use the special
+target `jcov-test` instead of `test`, e.g. `make jcov-test TEST=jdk_lang`. This
+will make sure the JCov image is built, and that JCov reporting is enabled.
+
+The JCov report is stored in `build/$BUILD/test-results/jcov-output`.
+
+Please note that running with JCov reporting can be very memory intensive.
+
 ### JTReg keywords
 
 #### JOBS
@@ -211,7 +255,7 @@
 JOBS, except for Hotspot, where the default is *number of CPU cores/2*, but
 never more than 12.
 
-#### TIMEOUT
+#### TIMEOUT_FACTOR
 The timeout factor (`-timeoutFactor`).
 
 Defaults to 4.
@@ -245,6 +289,24 @@
 
 Defaults to 512m, except for hotspot, where it defaults to 0 (no limit).
 
+#### KEYWORDS
+
+JTReg kewords sent to JTReg using `-k`. Please be careful in making sure that
+spaces and special characters (like `!`) are properly quoted. To avoid some
+issues, the special value `%20` can be used instead of space.
+
+#### EXTRA_PROBLEM_LISTS
+
+Use additional problem lists file or files, in addition to the default
+ProblemList.txt located at the JTReg test roots.
+
+If multiple file names are specified, they should be separated by space (or, to
+help avoid quoting issues, the special value `%20`).
+
+The file names should be either absolute, or relative to the JTReg test root of
+the tests to be run.
+
+
 #### OPTIONS
 Additional options to the JTReg test framework.
 
@@ -256,6 +318,12 @@
 #### VM_OPTIONS
 Additional VM options to JTReg (`-vmoption`).
 
+#### AOT_MODULES
+
+Generate AOT modules before testing for the specified module, or set of
+modules. If multiple modules are specified, they should be separated by space
+(or, to help avoid quoting issues, the special value `%20`).
+
 ### Gtest keywords
 
 #### REPEAT
@@ -270,6 +338,12 @@
 
 Use `GTEST="OPTIONS=--help"` to see all available Gtest options.
 
+#### AOT_MODULES
+
+Generate AOT modules before testing for the specified module, or set of
+modules. If multiple modules are specified, they should be separated by space
+(or, to help avoid quoting issues, the special value `%20`).
+
 ### Microbenchmark keywords
 
 #### FORK
--- a/make/CompileToolsJdk.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/CompileToolsJdk.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -90,7 +90,7 @@
 
 # To be able to call the javascript filter when generating man pages using
 # pandoc, we need to create this executable wrapper script.
-ifneq ($(PANDOC), )
+ifeq ($(ENABLE_PANDOC), true)
   # PANDOC_TROFF_MANPAGE_FILTER is duplicated for export in ToolsJdk.gmk.
   PANDOC_TROFF_MANPAGE_FILTER := \
       $(BUILDTOOLS_OUTPUTDIR)/manpages/pandoc-troff-manpage-filter
--- a/make/Main.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/Main.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -479,10 +479,11 @@
 
 define DeclareRunTestRecipe
   test-$1:
-	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$1")
+	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk \
+	    TEST="$1")
 
   exploded-test-$1:
-	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test \
+	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk \
 	    TEST="$1" JDK_IMAGE_DIR=$(JDK_OUTPUTDIR))
 endef
 
@@ -490,21 +491,11 @@
 $(foreach t, $(ALL_NAMED_TESTS), $(eval $(call DeclareRunTestRecipe,$t)))
 ALL_TEST_TARGETS := $(addprefix test-, $(ALL_NAMED_TESTS))
 
-define DeclareRunJCovTestRecipe
-  jcov-test-$1:
-	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk \
-	    TEST="$1" TEST_OPTS_JCOV=true)
-endef
-
-# jcov-test only makes sense for some of the tests
-$(foreach t, $(JCOV_NAMED_TESTS), $(eval $(call DeclareRunJCovTestRecipe,$t)))
-ALL_JCOV_TEST_TARGETS := $(addprefix jcov-test-, $(JCOV_NAMED_TESTS))
-
 # We only support the "exploded-test-gtest" shortcut
 ALL_EXPLODED_TESTS := gtest
 ALL_EXPLODED_TEST_TARGETS := $(addprefix exploded-test-, $(ALL_EXPLODED_TESTS))
 
-ALL_TARGETS += $(ALL_TEST_TARGETS) $(ALL_EXPLODED_TEST_TARGETS) $(ALL_JCOV_TEST_TARGETS)
+ALL_TARGETS += $(ALL_TEST_TARGETS) $(ALL_EXPLODED_TEST_TARGETS)
 
 ################################################################################
 # Build tests and microbenchmarks
@@ -571,10 +562,11 @@
 # Run tests
 
 test:
-	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$(TEST)")
+	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk \
+	    TEST="$(TEST)")
 
 exploded-test:
-	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test \
+	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk \
 	    TEST="$(TEST)" JDK_IMAGE_DIR=$(JDK_OUTPUTDIR))
 
 jcov-test:
@@ -891,7 +883,6 @@
   # Declare dependency for all generated test targets
   $(foreach t, $(filter-out test-make%, $(ALL_TEST_TARGETS)), $(eval $t: jdk-image test-image))
   $(foreach t, $(ALL_EXPLODED_TEST_TARGETS), $(eval $t: exploded-image test-image))
-  $(ALL_JCOV_TEST_TARGETS): jcov-image test-image
 
   create-buildjdk-copy: jdk.jlink-java java.base-gendata \
       $(addsuffix -java, $(INTERIM_IMAGE_MODULES))
--- a/make/RunTests.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/RunTests.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -45,8 +45,8 @@
 endif
 
 $(eval $(call ParseKeywordVariable, TEST_OPTS, \
-    SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR AOT_MODULES JCOV, \
-    STRING_KEYWORDS := VM_OPTIONS JAVA_OPTIONS, \
+    SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR JCOV, \
+    STRING_KEYWORDS := VM_OPTIONS JAVA_OPTIONS AOT_MODULES, \
 ))
 
 # Helper function to propagate TEST_OPTS values.
@@ -72,7 +72,7 @@
             ) \
         ))
     export _NT_SYMBOL_PATH
-    $(info _NT_SYMBOL_PATH=$(_NT_SYMBOL_PATH))
+    $(call LogDebug, Rewriting _NT_SYMBOL_PATH to $(_NT_SYMBOL_PATH))
   endif
 endif
 
@@ -81,6 +81,9 @@
 $(eval $(call IncludeCustomExtension, RunTests.gmk))
 ################################################################################
 
+# This is the JDK that we will test
+JDK_UNDER_TEST := $(JDK_IMAGE_DIR)
+
 TEST_RESULTS_DIR := $(OUTPUTDIR)/test-results
 TEST_SUPPORT_DIR := $(OUTPUTDIR)/test-support
 TEST_SUMMARY := $(TEST_RESULTS_DIR)/test-summary.txt
@@ -104,8 +107,26 @@
       -timeoutHandlerTimeout:0
 endif
 
-GTEST_LAUNCHER_DIRS := $(patsubst %/gtestLauncher, %, $(wildcard $(TEST_IMAGE_DIR)/hotspot/gtest/*/gtestLauncher))
-GTEST_VARIANTS := $(strip $(patsubst $(TEST_IMAGE_DIR)/hotspot/gtest/%, %, $(GTEST_LAUNCHER_DIRS)))
+GTEST_LAUNCHER_DIRS := $(patsubst %/gtestLauncher, %, \
+    $(wildcard $(TEST_IMAGE_DIR)/hotspot/gtest/*/gtestLauncher))
+GTEST_VARIANTS := $(strip $(patsubst $(TEST_IMAGE_DIR)/hotspot/gtest/%, %, \
+    $(GTEST_LAUNCHER_DIRS)))
+
+ifeq ($(TEST_OPTS_JCOV), true)
+  JCOV_OUTPUT_DIR := $(TEST_RESULTS_DIR)/jcov-output
+  JCOV_GRABBER_LOG := $(JCOV_OUTPUT_DIR)/grabber.log
+  JCOV_RESULT_FILE := $(JCOV_OUTPUT_DIR)/result.xml
+  JCOV_REPORT := $(JCOV_OUTPUT_DIR)/report
+  JCOV_MEM_OPTIONS := -Xms64m -Xmx4g
+
+  # Replace our normal test JDK with the JCov image.
+  JDK_UNDER_TEST := $(JCOV_IMAGE_DIR)
+
+  JCOV_ENVIRONMENT := JAVA_TOOL_OPTIONS="$(JCOV_MEM_OPTIONS)" \
+      _JAVA_OPTIONS="$(JCOV_MEM_OPTIONS)"
+  JTREG_JCOV_OPTIONS := -e:JAVA_TOOL_OPTIONS='$(JCOV_MEM_OPTIONS)' \
+      -e:_JAVA_OPTIONS='$(JCOV_MEM_OPTIONS)'
+endif
 
 ################################################################################
 # Optionally create AOT libraries for specified modules before running tests.
@@ -129,38 +150,35 @@
   $1_AOT_LIB := $$($1_BIN)/$$(call SHARED_LIBRARY,$$($1_MODULE))
   $1_AOT_CCLIST := $$(wildcard $$(TOPDIR)/test/hotspot/jtreg/compiler/aot/scripts/$$($1_MODULE)-list.txt)
 
-  ifeq ($(OPENJDK_TARGET_OS), windows)
-    $1_LD := $$(addsuffix $$(EXE_SUFFIX), $$(filter-out $$(FIXPATH), $$(LD)))
-  else
-    $1_LD := $$(LD)
-  endif
-
   # Create jaotc flags.
-  # VM flags which don't affect AOT code generation are filtered out: -Xcomp, -XX:+-TieredCompilation
+  # VM flags which don't affect AOT code generation are filtered out:
+  # -Xcomp, -XX:+-TieredCompilation
   $1_JAOTC_OPTS := \
       -J-Xmx4g --info \
       $$(addprefix -J, $$(filter-out -Xcomp %TieredCompilation, $$($1_VM_OPTIONS))) \
       $$(addprefix --compile-commands$(SPACE), $$($1_AOT_CCLIST)) \
-      --linker-path $$($1_LD) \
+      --linker-path $$(LD_JAOTC) \
       #
 
   ifneq ($$(filter -ea, $$($1_VM_OPTIONS)), )
     $1_JAOTC_OPTS += --compile-with-assertions
   endif
 
-  $$($1_AOT_LIB): $$(JDK_IMAGE_DIR)/release \
+  $$($1_AOT_LIB): $$(JDK_UNDER_TEST)/release \
       $$(call DependOnVariable, $1_JAOTC_OPTS) \
-      $$(call DependOnVariable, JDK_IMAGE_DIR)
+      $$(call DependOnVariable, JDK_UNDER_TEST)
 	$$(call LogWarn, Generating $$(patsubst $$(OUTPUTDIR)/%, %, $$@))
 	$$(call MakeTargetDir)
 	$$(call ExecuteWithLog, $$@, \
-	    $$(FIXPATH) $$(JDK_IMAGE_DIR)/bin/jaotc \
-	    $$($1_JAOTC_OPTS) --output $$@ --module $$($1_MODULE) \
+	    $$(FIXPATH) $$(JDK_UNDER_TEST)/bin/jaotc \
+	        $$($1_JAOTC_OPTS) --output $$@ --module $$($1_MODULE) \
 	)
 	$$(call ExecuteWithLog, $$@.check, \
-	  $$(FIXPATH) $$(JDK_IMAGE_DIR)/bin/java \
-	  $$($1_VM_OPTIONS) -XX:+PrintAOT -XX:+UseAOTStrictLoading -XX:AOTLibrary=$$@ -version \
-	  > $$@.verify-aot \
+	    $$(FIXPATH) $$(JDK_UNDER_TEST)/bin/java \
+	        $$($1_VM_OPTIONS) -XX:+UnlockDiagnosticVMOptions \
+	        -XX:+PrintAOT -XX:+UseAOTStrictLoading \
+	        -XX:AOTLibrary=$$@ -version \
+	         > $$@.verify-aot \
 	)
 
   $1_AOT_OPTIONS += -XX:AOTLibrary=$$($1_AOT_LIB)
@@ -249,9 +267,10 @@
 $(eval $(call SetTestOpt,TIMEOUT_FACTOR,JTREG))
 
 $(eval $(call ParseKeywordVariable, JTREG, \
-    SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR TEST_MODE ASSERT VERBOSE RETAIN MAX_MEM \
-        EXTRA_PROBLEM_LISTS KEYWORDS AOT_MODULES, \
-    STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS, \
+    SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR TEST_MODE ASSERT VERBOSE RETAIN \
+        MAX_MEM, \
+    STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS KEYWORDS \
+        EXTRA_PROBLEM_LISTS AOT_MODULES, \
 ))
 
 ifneq ($(JTREG), )
@@ -266,8 +285,8 @@
 $(eval $(call SetTestOpt,AOT_MODULES,GTEST))
 
 $(eval $(call ParseKeywordVariable, GTEST, \
-    SINGLE_KEYWORDS := REPEAT AOT_MODULES, \
-    STRING_KEYWORDS := OPTIONS VM_OPTIONS JAVA_OPTIONS, \
+    SINGLE_KEYWORDS := REPEAT, \
+    STRING_KEYWORDS := OPTIONS VM_OPTIONS JAVA_OPTIONS AOT_MODULES, \
 ))
 
 ifneq ($(GTEST), )
@@ -282,7 +301,8 @@
 
 $(eval $(call ParseKeywordVariable, MICRO, \
     SINGLE_KEYWORDS := ITER FORK TIME WARMUP_ITER WARMUP_TIME, \
-    STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS RESULTS_FORMAT TEST_JDK BENCHMARKS_JAR, \
+    STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS RESULTS_FORMAT TEST_JDK \
+        BENCHMARKS_JAR, \
 ))
 
 ifneq ($(MICRO), )
@@ -348,8 +368,8 @@
 
 # Helper function to determine if a test specification is a microbenchmark test
 #
-# It is a microbenchmark test if it is either "micro", or "micro:" followed by an optional
-# test filter string.
+# It is a microbenchmark test if it is either "micro", or "micro:" followed by
+# an optional test filter string.
 define ParseMicroTestSelection
   $(if $(filter micro%, $1), \
     $(if $(filter micro, $1), \
@@ -439,8 +459,8 @@
 # Helper function to determine if a test specification is a special test
 #
 # It is a special test if it is "special:" followed by a test name,
-# if it is "make:" or "make-" followed by a make test, or any of the special test names
-# as a single word.
+# if it is "make:" or "make-" followed by a make test, or any of the special
+# test names as a single word.
 define ParseSpecialTestSelection
   $(if $(filter special:%, $1), \
     $1 \
@@ -555,13 +575,13 @@
     ))
   endif
 
-  run-test-$1: $$($1_AOT_TARGETS)
+  run-test-$1: pre-run-test $$($1_AOT_TARGETS)
 	$$(call LogWarn)
 	$$(call LogWarn, Running test '$$($1_TEST)')
 	$$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
 	$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/gtest, \
 	    $$(FIXPATH) $$(TEST_IMAGE_DIR)/hotspot/gtest/$$($1_VARIANT)/gtestLauncher \
-	        -jdk $(JDK_IMAGE_DIR) $$($1_GTEST_FILTER) \
+	        -jdk $(JDK_UNDER_TEST) $$($1_GTEST_FILTER) \
 	        --gtest_output=xml:$$($1_TEST_RESULTS_DIR)/gtest.xml \
 	        $$($1_GTEST_REPEAT) $$(GTEST_OPTIONS) $$(GTEST_VM_OPTIONS) \
 	        $$(GTEST_JAVA_OPTIONS) $$($1_AOT_OPTIONS) \
@@ -595,7 +615,11 @@
 	  $$(eval $1_TOTAL := 1) \
 	)
 
-  TARGETS += run-test-$1 parse-test-$1
+  $1: run-test-$1 parse-test-$1
+
+  TARGETS += $1 run-test-$1 parse-test-$1
+  TEST_TARGETS += parse-test-$1
+
 endef
 
 ################################################################################
@@ -629,7 +653,7 @@
   $1_TEST_NAME := $$(strip $$(patsubst micro:%, %, $$($1_TEST)))
 
   $$(eval $$(call SetMicroValue,$1,MICRO_BENCHMARKS_JAR,$$(TEST_IMAGE_DIR)/micro/benchmarks.jar))
-  $$(eval $$(call SetMicroValue,$1,MICRO_TEST_JDK,$$(JDK_IMAGE_DIR)))
+  $$(eval $$(call SetMicroValue,$1,MICRO_TEST_JDK,$$(JDK_UNDER_TEST)))
   $$(eval $$(call SetMicroValue,$1,MICRO_JAVA_OPTIONS))
 
   # Current tests needs to open java.io
@@ -637,7 +661,8 @@
 
   # Save output as JSON or CSV file
   ifneq ($$(MICRO_RESULTS_FORMAT), )
-    $1_MICRO_BASIC_OPTIONS += -rf $$(MICRO_RESULTS_FORMAT) -rff $$($1_TEST_RESULTS_DIR)/jmh-result.$(MICRO_RESULTS_FORMAT)
+    $1_MICRO_BASIC_OPTIONS += -rf $$(MICRO_RESULTS_FORMAT)
+    $1_MICRO_BASIC_OPTIONS += -rff $$($1_TEST_RESULTS_DIR)/jmh-result.$(MICRO_RESULTS_FORMAT)
   endif
 
   ifneq ($$(MICRO_VM_OPTIONS)$$(MICRO_JAVA_OPTIONS), )
@@ -660,7 +685,7 @@
     $1_MICRO_WARMUP_TIME := -w $$(MICRO_WARMUP_TIME)
   endif
 
-  run-test-$1:
+  run-test-$1: pre-run-test
 	$$(call LogWarn)
 	$$(call LogWarn, Running test '$$($1_TEST)')
 	$$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
@@ -668,7 +693,7 @@
 	    $$($1_MICRO_TEST_JDK)/bin/java $$($1_MICRO_JAVA_OPTIONS) -jar $$($1_MICRO_BENCHMARKS_JAR) \
 	        $$($1_MICRO_ITER) $$($1_MICRO_FORK) $$($1_MICRO_TIME) \
 	        $$($1_MICRO_WARMUP_ITER) $$($1_MICRO_WARMUP_TIME) \
-	        $$($1_MICRO_VM_OPTIONS) $$($1_MICRO_BASIC_OPTIONS) $$(MICRO_OPTIONS)  \
+	        $$($1_MICRO_VM_OPTIONS) $$($1_MICRO_BASIC_OPTIONS) $$(MICRO_OPTIONS) \
 	        $$($1_TEST_NAME) \
 	        > >($(TEE) $$($1_TEST_RESULTS_DIR)/micro.txt) \
 	    && $$(ECHO) $$$$? > $$($1_EXITCODE) \
@@ -700,7 +725,11 @@
 	  $$(eval $1_TOTAL := 1) \
 	)
 
-  TARGETS += run-test-$1 parse-test-$1
+  $1: run-test-$1 parse-test-$1
+
+  TARGETS += $1 run-test-$1 parse-test-$1
+  TEST_TARGETS += parse-test-$1
+
 endef
 
 ################################################################################
@@ -870,7 +899,7 @@
   clean-workdir-$1:
 	$$(RM) -r $$($1_TEST_SUPPORT_DIR)
 
-  run-test-$1: clean-workdir-$1 $$($1_AOT_TARGETS)
+  run-test-$1: pre-run-test clean-workdir-$1 $$($1_AOT_TARGETS)
 	$$(call LogWarn)
 	$$(call LogWarn, Running test '$$($1_TEST)')
 	$$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
@@ -879,7 +908,7 @@
 	    $$(JAVA) $$($1_JTREG_LAUNCHER_OPTIONS) \
 	        -Dprogram=jtreg -jar $$(JT_HOME)/lib/jtreg.jar \
 	        $$($1_JTREG_BASIC_OPTIONS) \
-	        -testjdk:$$(JDK_IMAGE_DIR) \
+	        -testjdk:$$(JDK_UNDER_TEST) \
 	        -dir:$$(JTREG_TOPDIR) \
 	        -reportDir:$$($1_TEST_RESULTS_DIR) \
 	        -workDir:$$($1_TEST_SUPPORT_DIR) \
@@ -919,7 +948,11 @@
 	  $$(eval $1_TOTAL := 1) \
 	)
 
-  TARGETS += run-test-$1 parse-test-$1
+  $1: run-test-$1 parse-test-$1 clean-workdir-$1
+
+  TARGETS += $1 run-test-$1 parse-test-$1 clean-workdir-$1
+  TEST_TARGETS += parse-test-$1
+
 endef
 
 ################################################################################
@@ -957,7 +990,7 @@
     $$(error Invalid special test specification: $$($1_TEST_NAME))
   endif
 
-  run-test-$1: $(TEST_PREREQS)
+  run-test-$1: pre-run-test
 	$$(call LogWarn)
 	$$(call LogWarn, Running test '$$($1_TEST)')
 	$$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
@@ -981,7 +1014,11 @@
 	$$(eval $1_ERROR := 0)
 	$$(eval $1_TOTAL := 0)
 
-  TARGETS += run-test-$1 parse-test-$1
+  $1: run-test-$1 parse-test-$1
+
+  TARGETS += $1 run-test-$1 parse-test-$1
+  TEST_TARGETS += parse-test-$1
+
 endef
 
 ################################################################################
@@ -1043,12 +1080,36 @@
 # The main target for RunTests.gmk
 ################################################################################
 
-# The SetupRun*Test functions have populated TARGETS.
+#
+# Provide hooks for adding functionality before and after all tests are run.
+#
+
+$(call LogInfo, RunTest setup starting)
+
+# This target depends on all actual test having been run (TEST_TARGETS has beeen
+# populated by the SetupRun*Test functions). If you need to provide a teardown
+# hook, you must let it depend on this target.
+run-all-tests: $(TEST_TARGETS)
+	$(call LogInfo, RunTest teardown starting)
 
+# This is an abstract target that will be run before any actual tests. Add your
+# target as a dependency to thisif you need "setup" type functionality executed
+# before all tests.
+pre-run-test:
+	$(call LogInfo, RunTest setup done)
+
+# This is an abstract target that will be run after all actual tests, but before
+# the test summary. If you need "teardown" type functionality, add your target
+# as a dependency on this, and let the teardown target depend on run-all-tests.
+post-run-test: run-all-tests
+	$(call LogInfo, RunTest teardown done)
+
+#
+# Create and print a table of the result of all tests run
+#
 TEST_FAILURE := false
 
-run-test: $(TARGETS)
-        # Create and print a table of the result of all tests run
+run-test-report: post-run-test
 	$(RM) $(TEST_SUMMARY).old 2> /dev/null
 	$(MV) $(TEST_SUMMARY) $(TEST_SUMMARY).old 2> /dev/null || true
 	$(RM) $(TEST_LAST_IDS).old 2> /dev/null
@@ -1092,27 +1153,17 @@
 	$(CAT) $(TEST_SUMMARY)
 	$(ECHO)
 
+# The main run-test target
+run-test: run-test-report
+
+TARGETS += run-all-tests pre-run-test post-run-test run-test-report run-test
+
 ################################################################################
 # Setup JCov
 ################################################################################
 
 ifeq ($(TEST_OPTS_JCOV), true)
 
-  JCOV_OUTPUT_DIR := $(TEST_RESULTS_DIR)/jcov-output
-  JCOV_GRABBER_LOG := $(JCOV_OUTPUT_DIR)/grabber.log
-  JCOV_RESULT_FILE := $(JCOV_OUTPUT_DIR)/result.xml
-  JCOV_REPORT := $(JCOV_OUTPUT_DIR)/report
-  JCOV_MEM_OPTIONS := -Xms64m -Xmx4g
-
-  ifneq ($(JCOV_IMAGE_DIR), )
-    JDK_IMAGE_DIR := $(JCOV_IMAGE_DIR)
-  endif
-
-  JCOV_ENVIRONMENT := JAVA_TOOL_OPTIONS="$(JCOV_MEM_OPTIONS)" \
-      _JAVA_OPTIONS="$(JCOV_MEM_OPTIONS)"
-  JTREG_JCOV_OPTIONS := -e:JAVA_TOOL_OPTIONS='$(JCOV_MEM_OPTIONS)' \
-      -e:_JAVA_OPTIONS='$(JCOV_MEM_OPTIONS)'
-
   jcov-do-start-grabber:
 	$(call MakeDir, $(JCOV_OUTPUT_DIR))
 	if $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -status 1>/dev/null 2>&1 ; then \
@@ -1130,14 +1181,21 @@
 	$(call LogWarn, Stopping JCov Grabber...)
 	$(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -stop -stoptimeout 3600
 
-  jcov-gen-report: run-test jcov-stop-grabber
+  jcov-gen-report: jcov-stop-grabber
 	$(call LogWarn, Generating JCov report ...)
 	$(JAVA) -Xmx4g -jar $(JCOV_HOME)/lib/jcov.jar RepGen -sourcepath \
 	    `$(ECHO) $(TOPDIR)/src/*/share/classes/ | $(TR) ' ' ':'` -fmt html \
 	    -o $(JCOV_REPORT) $(JCOV_RESULT_FILE)
 
-  $(TARGETS): jcov-start-grabber
-  all: jcov-gen-report
+  TARGETS += jcov-do-start-grabber jcov-start-grabber jcov-stop-grabber \
+      jcov-gen-report
+
+  # Hook this into the framework at appropriate places
+  pre-run-test: jcov-start-grabber
+
+  post-run-test: jcov-gen-report
+
+  jcov-gen-report: run-all-tests
 
 endif
 
@@ -1145,4 +1203,4 @@
 
 all: run-test
 
-.PHONY: default all run-test $(TARGETS)
+.PHONY: default all $(TARGETS)
--- a/make/RunTestsPrebuilt.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/RunTestsPrebuilt.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -95,12 +95,12 @@
 # $1: The output file name
 # $2..$N: The lines to output to the file
 define CreateNewSpec
-  $(if $(strip $(31)), \
+  $(if $(strip $(33)), \
     $(error Internal makefile error: \
       Too many arguments to macro, please update CreateNewSpec in RunTestsPrebuilt.gmk) \
   ) \
   $(shell $(RM) $1) \
-  $(foreach i, $(call sequence, 2, 30), \
+  $(foreach i, $(call sequence, 2, 32), \
     $(if $(strip $($i)), \
       $(call AppendFile, $(strip $($i)), $1) \
     ) \
@@ -254,31 +254,35 @@
 # Setup LD for AOT support
 ifneq ($(DEVKIT_HOME), )
   ifeq ($(OPENJDK_TARGET_OS), windows)
-    LD := $(DEVKIT_HOME)/VC/bin/x64/link
+    LD_JAOTC := $(DEVKIT_HOME)/VC/bin/x64/link.exe
     LIBRARY_PREFIX :=
     SHARED_LIBRARY_SUFFIX := .dll
-    EXE_SUFFIX := .exe
   else ifeq ($(OPENJDK_TARGET_OS), linux)
-    LD := $(DEVKIT_HOME)/bin/ld
+    LD_JAOTC := $(DEVKIT_HOME)/bin/ld
     LIBRARY_PREFIX := lib
     SHARED_LIBRARY_SUFFIX := .so
-    EXE_SUFFIX :=
   else ifeq ($(OPENJDK_TARGET_OS), macosx)
-    LD := $(DEVKIT_HOME)/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
+    LD_JAOTC := $(DEVKIT_HOME)/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
     LIBRARY_PREFIX := lib
     SHARED_LIBRARY_SUFFIX := .dylib
-    EXE_SUFFIX :=
   else ifeq ($(OPENJDK_TARGET_OS), solaris)
     # Prefer system linker for AOT on Solaris.
-    LD := ld
+    LD_JAOTC := ld
     LIBRARY_PREFIX := lib
     SHARED_LIBRARY_SUFFIX := .so
-    EXE_SUFFIX :=
   endif
 else
   LD := ld
 endif
 
+ifneq ($(wildcard $(JDK_IMAGE_DIR)/template.xml), )
+  TEST_OPTS_JCOV := true
+  JCOV_IMAGE_DIR := $(JDK_IMAGE_DIR)
+else
+  TEST_OPTS_JCOV := false
+  JCOV_IMAGE_DIR :=
+endif
+
 ################################################################################
 # Generate the ephemeral spec file
 ################################################################################
@@ -299,6 +303,7 @@
     BOOT_JDK := $(BOOT_JDK), \
     JT_HOME := $(JT_HOME), \
     JDK_IMAGE_DIR := $(JDK_IMAGE_DIR), \
+    JCOV_IMAGE_DIR := $(JCOV_IMAGE_DIR), \
     TEST_IMAGE_DIR := $(TEST_IMAGE_DIR), \
     SYMBOLS_IMAGE_DIR := $(SYMBOLS_IMAGE_DIR), \
     MAKE := $(MAKE), \
@@ -315,11 +320,11 @@
     OPENJDK_TARGET_CPU_ENDIAN := $(OPENJDK_TARGET_CPU_ENDIAN), \
     NUM_CORES := $(NUM_CORES), \
     MEMORY_SIZE := $(MEMORY_SIZE), \
-    LD := $(LD), \
+    LD_JAOTC := $(LD_JAOTC), \
     LIBRARY_PREFIX := $(LIBRARY_PREFIX), \
     SHARED_LIBRARY_SUFFIX := $(SHARED_LIBRARY_SUFFIX), \
-    EXE_SUFFIX := $(EXE_SUFFIX), \
     include $(TOPDIR)/make/RunTestsPrebuiltSpec.gmk, \
+    TEST_OPTS_JCOV := $(TEST_OPTS_JCOV), \
     $(CUSTOM_NEW_SPEC_LINE), \
 )
 
--- a/make/UpdateBuildDocs.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/UpdateBuildDocs.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -34,7 +34,7 @@
 #
 ################################################################################
 
-ifeq ($(PANDOC), )
+ifeq ($(ENABLE_PANDOC), false)
   $(info No pandoc executable was detected by configure)
   $(error Cannot continue)
 endif
--- a/make/autoconf/hotspot.m4	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/autoconf/hotspot.m4	Tue Jan 29 09:38:31 2019 -0500
@@ -47,8 +47,8 @@
 [ [ [[ " $JVM_VARIANTS " =~ " $1 " ]] ] ])
 
 ###############################################################################
-# Check if the specified JVM features are explicitly enabled. To be used in
-# shell if constructs, like this:
+# Check if the specified JVM feature is enabled. To be used in shell if
+# constructs, like this:
 # if HOTSPOT_CHECK_JVM_FEATURE(jvmti); then
 #
 # Only valid to use after HOTSPOT_SETUP_JVM_FEATURES has setup features.
@@ -59,6 +59,20 @@
 [ [ [[ " $JVM_FEATURES " =~ " $1 " ]] ] ])
 
 ###############################################################################
+# Check if the specified JVM feature is explicitly disabled. To be used in
+# shell if constructs, like this:
+# if HOTSPOT_IS_JVM_FEATURE_DISABLED(jvmci); then
+#
+# This function is internal to hotspot.m4, and is only used when constructing
+# the valid set of enabled JVM features. Users outside of hotspot.m4 should just
+# use HOTSPOT_CHECK_JVM_FEATURE to check if a feature is enabled or not.
+
+# Definition kept in one line to allow inlining in if statements.
+# Additional [] needed to keep m4 from mangling shell constructs.
+AC_DEFUN([HOTSPOT_IS_JVM_FEATURE_DISABLED],
+[ [ [[ " $DISABLED_JVM_FEATURES " =~ " $1 " ]] ] ])
+
+###############################################################################
 # Check which variants of the JVM that we want to build. Available variants are:
 #   server: normal interpreter, and a tiered C1/C2 compiler
 #   client: normal interpreter, and C1 (no C2 compiler)
@@ -373,8 +387,7 @@
 
   AC_MSG_CHECKING([if jvmci module jdk.internal.vm.ci should be built])
   # Check if jvmci is diabled
-  DISABLE_JVMCI=`$ECHO $DISABLED_JVM_FEATURES | $GREP jvmci`
-  if test "x$DISABLE_JVMCI" = "xjvmci"; then
+  if HOTSPOT_IS_JVM_FEATURE_DISABLED(jvmci); then
     AC_MSG_RESULT([no, forced])
     JVM_FEATURES_jvmci=""
     INCLUDE_JVMCI="false"
@@ -400,8 +413,7 @@
 
   AC_MSG_CHECKING([if graal module jdk.internal.vm.compiler should be built])
   # Check if graal is diabled
-  DISABLE_GRAAL=`$ECHO $DISABLED_JVM_FEATURES | $GREP graal`
-  if test "x$DISABLE_GRAAL" = "xgraal"; then
+  if HOTSPOT_IS_JVM_FEATURE_DISABLED(graal); then
     AC_MSG_RESULT([no, forced])
     JVM_FEATURES_graal=""
     INCLUDE_GRAAL="false"
@@ -433,8 +445,7 @@
   AC_SUBST(INCLUDE_GRAAL)
 
   # Disable aot with '--with-jvm-features=-aot'
-  DISABLE_AOT=`$ECHO $DISABLED_JVM_FEATURES | $GREP aot`
-  if test "x$DISABLE_AOT" = "xaot"; then
+  if HOTSPOT_IS_JVM_FEATURE_DISABLED(aot); then
     ENABLE_AOT="false"
   fi
 
@@ -458,7 +469,7 @@
       JVM_FEATURES_aot="aot"
     fi
   else
-    if test "x$enable_aot" = "xno" || test "x$DISABLE_AOT" = "xaot"; then
+    if test "x$enable_aot" = "xno" || HOTSPOT_IS_JVM_FEATURE_DISABLED(aot); then
       AC_MSG_RESULT([no, forced])
     else
       AC_MSG_RESULT([no])
@@ -490,8 +501,7 @@
   fi
 
   # Disable CDS if user requested it with --with-jvm-features=-cds.
-  DISABLE_CDS=`$ECHO $DISABLED_JVM_FEATURES | $GREP cds`
-  if test "x$DISABLE_CDS" = "xcds"; then
+  if HOTSPOT_IS_JVM_FEATURE_DISABLED(cds); then
     ENABLE_CDS="false"
     if test "x$enable_cds" = "xyes"; then
       AC_MSG_ERROR([CDS was disabled by --with-jvm-features=-cds. Remove --enable-cds.])
--- a/make/autoconf/spec.gmk.in	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/autoconf/spec.gmk.in	Tue Jan 29 09:38:31 2019 -0500
@@ -487,6 +487,9 @@
 # The linker can be gcc or ld on unix systems, or link.exe on windows systems.
 LD:=@FIXPATH@ @LD@
 
+# Linker used by the jaotc tool for AOT compilation.
+LD_JAOTC:=@LD_JAOTC@
+
 # Xcode SDK path
 SDKROOT:=@SDKROOT@
 
--- a/make/autoconf/toolchain.m4	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/autoconf/toolchain.m4	Tue Jan 29 09:38:31 2019 -0500
@@ -715,12 +715,18 @@
       AC_MSG_RESULT([yes])
     fi
     LDCXX="$LD"
+    # jaotc being a windows program expects the linker to be supplied with exe suffix.
+    LD_JAOTC="$LD$EXE_SUFFIX"
   else
     # All other toolchains use the compiler to link.
     LD="$CC"
     LDCXX="$CXX"
+    # jaotc expects 'ld' as the linker rather than the compiler.
+    BASIC_CHECK_TOOLS([LD_JAOTC], ld)
+    BASIC_FIXUP_EXECUTABLE(LD_JAOTC)
   fi
   AC_SUBST(LD)
+  AC_SUBST(LD_JAOTC)
   # FIXME: it should be CXXLD, according to standard (cf CXXCPP)
   AC_SUBST(LDCXX)
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/make/common/CopyFiles.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,112 @@
+#
+# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# This code is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License version 2 only, as
+# published by the Free Software Foundation.  Oracle designates this
+# particular file as subject to the "Classpath" exception as provided
+# by Oracle in the LICENSE file that accompanied this code.
+#
+# This code is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# version 2 for more details (a copy is included in the LICENSE file that
+# accompanied this code).
+#
+# You should have received a copy of the GNU General Public License version
+# 2 along with this work; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+# or visit www.oracle.com if you need additional information or have any
+# questions.
+#
+
+ifeq (,$(_MAKEBASE_GMK))
+  $(error You must include MakeBase.gmk prior to including CopyFiles.gmk)
+endif
+
+################################################################################
+#
+# Code for handling the SetupCopyFiles macro.
+#
+################################################################################
+
+define AddFileToCopy
+  # Helper macro for SetupCopyFiles
+  # 1 : Source file
+  # 2 : Dest file
+  # 3 : Variable to add targets to
+  # 4 : Macro to call for copy operation
+  # 5 : Action text to log
+  $2: $1
+	$$(call LogInfo, $(strip $5) $$(patsubst $(OUTPUTDIR)/%,%,$$(call DecodeSpace, $$@)))
+	$$($$(strip $4))
+
+  $3 += $2
+  $3_SOURCES += $1
+endef
+
+# Returns the value of the first argument
+identity = \
+    $(strip $1)
+
+# Setup make rules for copying files, with an option to do more complex
+# processing instead of copying.
+#
+# Parameter 1 is the name of the rule. This name is used as variable prefix,
+# and the targets generated are listed in a variable by that name.
+#
+# The list of all source files is returned in $1_SOURCES.
+#
+# Remaining parameters are named arguments. These include:
+#   SRC     : Source root dir (defaults to dir of first file)
+#   DEST    : Dest root dir
+#   FILES   : List of files to copy with absolute paths, or path relative to SRC.
+#             Must be in SRC.
+#   FLATTEN : Set to flatten the directory structure in the DEST dir.
+#   MACRO   : Optionally override the default macro used for making the copy.
+#             Default is 'install-file'
+#   NAME_MACRO : Optionally supply a macro that rewrites the target file name
+#                based on the source file name
+#   LOG_ACTION : Optionally specify a different action text for log messages
+SetupCopyFiles = $(NamedParamsMacroTemplate)
+define SetupCopyFilesBody
+
+  ifeq ($$($1_MACRO), )
+    $1_MACRO := install-file
+  endif
+
+  # Default SRC to the dir of the first file.
+  ifeq ($$($1_SRC), )
+    $1_SRC := $$(dir $$(firstword $$($1_FILES)))
+  endif
+
+  ifeq ($$($1_NAME_MACRO), )
+    $1_NAME_MACRO := identity
+  endif
+
+  ifeq ($$($1_LOG_ACTION), )
+    $1_LOG_ACTION := Copying
+  endif
+
+  # Remove any trailing slash from SRC and DEST
+  $1_SRC := $$(patsubst %/,%,$$($1_SRC))
+  $1_DEST := $$(patsubst %/,%,$$($1_DEST))
+
+  # Need to wrap arguments in DoubleDollar because of the eval nested inside an
+  # eval macro body.
+  $$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \
+    $$(eval $$(call AddFileToCopy, \
+        $$(call DoubleDollar, $$($1_SRC)/$$f), \
+        $$(call DoubleDollar, \
+            $$($1_DEST)/$$(call $$(strip $$($1_NAME_MACRO)),$$(if $$($1_FLATTEN),$$(notdir $$f),$$f)) \
+        ), \
+        $1, \
+        $$($1_MACRO), \
+        $$($1_LOG_ACTION) \
+    )) \
+  )
+
+endef
--- a/make/common/FindTests.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/common/FindTests.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -68,7 +68,6 @@
 # Add Jtreg test groups to list of named tests (test groups, test list, etc)
 # ALL_NAMED_TESTS might have been set by a custom extension
 ALL_NAMED_TESTS += $(JTREG_TEST_GROUPS)
-JCOV_NAMED_TESTS += $(JTREG_TEST_GROUPS)
 
 # Add Gtest
 ALL_NAMED_TESTS += gtest
--- a/make/common/MakeBase.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/common/MakeBase.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -70,17 +70,17 @@
   CORRECT_FUNCTION_IN_RECIPE_EVALUATION := true
 endif
 
-##############################
-# Functions
-##############################
 
-### Debug functions
+# For convenience, MakeBase.gmk continues to include these separate files, at
+# least for now.
 
-# Prints the name and value of a variable
-PrintVar = \
-    $(info $(strip $1) >$($(strip $1))<)
+include $(TOPDIR)/make/common/Utils.gmk
+include $(TOPDIR)/make/common/MakeIO.gmk
+include $(TOPDIR)/make/common/CopyFiles.gmk
 
-### Functions for timers
+################################################################################
+# Functions for timers
+################################################################################
 
 # Store the build times in this directory.
 BUILDTIMESDIR=$(OUTPUTDIR)/make-support/build-times
@@ -117,227 +117,6 @@
 endef
 
 ################################################################################
-# This macro translates $ into \$ to protect the $ from expansion in the shell.
-# To make this macro resilient against already escaped strings, first remove
-# any present escapes before escaping so that no double escapes are added.
-EscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1)))
-
-################################################################################
-# This macro works just like EscapeDollar above, but for #.
-EscapeHash = $(subst \#,\\\#,$(subst \\\#,\#,$(strip $1)))
-
-################################################################################
-# This macro translates $ into $$ to protect the string from make itself.
-DoubleDollar = $(subst $$,$$$$,$(strip $1))
-
-################################################################################
-# ListPathsSafely can be used to print command parameters to a file. This is
-# typically done if the command line lenght risk being too long for the
-# OS/shell. In later make versions, the file function can be used for this
-# purpose. For earlier versions, a more complex implementation is provided.
-#
-# The function ListPathsSafely can be called either directly or, more commonly
-# from a recipe line. If called from a recipe, it will be executed in the
-# evaluation phase of that recipe, which means that it will write to the file
-# before any other line in the recipe has been run.
-ifeq ($(HAS_FILE_FUNCTION), true)
-  # Param 1 - Name of variable containing paths/arguments to output
-  # Param 2 - File to print to
-  # Param 3 - Set to true to append to file instead of overwriting
-  define ListPathsSafely
-    $$(call MakeDir, $$(dir $$(strip $2)))
-    $$(file $$(if $$(filter true, $$(strip $3)),>>,>) \
-        $$(strip $2),$$(subst $$(SPACE),$$(NEWLINE),$$(strip $$($$(strip $1)))))
-  endef
-
-else # HAS_FILE_FUNCTION = false
-
-  $(eval compress_paths = \
-      $(strip $(shell $(CAT) $(TOPDIR)/make/common/support/ListPathsSafely-pre-compress.incl)))
-  compress_paths += \
-      $(subst $(TOPDIR),X97, \
-      $(subst $(OUTPUTDIR),X98, \
-      $(subst X,X00, \
-      $(subst $(SPACE),\n,$(strip $1)))))
-  $(eval compress_paths += \
-      $(strip $(shell $(CAT) $(TOPDIR)/make/common/support/ListPathsSafely-post-compress.incl)))
-
-  decompress_paths=$(SED) -f $(TOPDIR)/make/common/support/ListPathsSafely-uncompress.sed \
-      -e 's|X99|\\n|g' \
-      -e 's|X98|$(OUTPUTDIR)|g' -e 's|X97|$(TOPDIR)|g' \
-      -e 's|X00|X|g'
-
-  ListPathsSafely_IfPrintf = \
-      $(if $(word $3,$($(strip $1))), \
-          $(shell $(PRINTF) -- "$(strip $(call EscapeDollar, \
-              $(call compress_paths, $(wordlist $3,$4,$($(strip $1))))))\n" \
-              | $(decompress_paths) >> $2))
-
-  # Param 1 - Name of variable containing paths/arguments to output
-  # Param 2 - File to print to
-  # Param 3 - Set to true to append to file instead of overwriting
-  define ListPathsSafely
-    ifneq (,$$(word 30001,$$($$(strip $1))))
-      $$(error Cannot list safely more than 30000 paths. $1 has $$(words $$($$(strip $1))) paths!)
-    endif
-    $$(call MakeDir, $$(dir $2))
-    ifneq ($$(strip $3), true)
-      $$(shell $(RM) $$(strip $2))
-    endif
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,1,250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,251,500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,501,750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,751,1000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,1001,1250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,1251,1500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,1501,1750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,1751,2000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,2001,2250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,2251,2500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,2501,2750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,2751,3000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,3001,3250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,3251,3500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,3501,3750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,3751,4000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,4001,4250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,4251,4500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,4501,4750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,4751,5000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,5001,5250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,5251,5500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,5501,5750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,5751,6000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,6001,6250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,6251,6500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,6501,6750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,6751,7000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,7001,7250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,7251,7500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,7501,7750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,7751,8000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,8001,8250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,8251,8500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,8501,8750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,8751,9000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,9001,9250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,9251,9500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,9501,9750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,9751,10000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,10001,10250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,10251,10500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,10501,10750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,10751,11000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,11001,11250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,11251,11500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,11501,11750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,11751,12000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,12001,12250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,12251,12500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,12501,12750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,12751,13000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,13001,13250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,13251,13500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,13501,13750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,13751,14000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,14001,14250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,14251,14500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,14501,14750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,14751,15000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,15001,15250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,15251,15500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,15501,15750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,15751,16000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,16001,16250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,16251,16500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,16501,16750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,16751,17000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,17001,17250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,17251,17500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,17501,17750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,17751,18000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,18001,18250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,18251,18500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,18501,18750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,18751,19000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,19001,19250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,19251,19500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,19501,19750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,19751,20000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,20001,20250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,20251,20500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,20501,20750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,20751,21000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,21001,21250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,21251,21500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,21501,21750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,21751,22000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,22001,22250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,22251,22500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,22501,22750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,22751,23000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,23001,23250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,23251,23500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,23501,23750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,23751,24000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,24001,24250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,24251,24500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,24501,24750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,24751,25000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,25001,25250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,25251,25500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,25501,25750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,25751,26000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,26001,26250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,26251,26500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,26501,26750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,26751,27000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,27001,27250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,27251,27500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,27501,27750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,27751,28000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,28001,28250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,28251,28500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,28501,28750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,28751,29000)
-
-    $$(call ListPathsSafely_IfPrintf,$1,$2,29001,29250)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,29251,29500)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,29501,29750)
-    $$(call ListPathsSafely_IfPrintf,$1,$2,29751,30000)
-  endef
-endif # HAS_FILE_FUNCTION
-
-################################################################################
 
 # A file containing a way to uniquely identify the source code revision that
 # the build was created from
@@ -409,21 +188,6 @@
 $(eval $(call SetupLogging))
 
 ################################################################################
-# Creates a sequence of increasing numbers (inclusive).
-# Param 1 - starting number
-# Param 2 - ending number
-sequence = \
-    $(wordlist $1, $2, $(strip \
-        $(eval SEQUENCE_COUNT :=) \
-        $(call _sequence-do,$(strip $2))))
-
-_sequence-do = \
-    $(if $(word $1, $(SEQUENCE_COUNT)),, \
-      $(eval SEQUENCE_COUNT += .) \
-      $(words $(SEQUENCE_COUNT)) \
-      $(call _sequence-do,$1))
-
-################################################################################
 
 MAX_PARAMS := 36
 PARAM_SEQUENCE := $(call sequence, 2, $(MAX_PARAMS))
@@ -465,16 +229,6 @@
 endef
 
 ################################################################################
-# Replace question marks with space in string. This macro needs to be called on
-# files from CacheFind in case any of them contains space in their file name,
-# since CacheFind replaces space with ?.
-# Param 1 - String to replace in
-DecodeSpace = \
-    $(subst ?,$(SPACE),$(strip $1))
-EncodeSpace = \
-    $(subst $(SPACE),?,$(strip $1))
-
-################################################################################
 # Make directory without forking mkdir if not needed.
 #
 # If a directory with an encoded space is provided, the wildcard function
@@ -502,13 +256,6 @@
     $(call MakeDir, $(dir $(call EncodeSpace, $@)))
 
 ################################################################################
-# Assign a variable only if it is empty
-# Param 1 - Variable to assign
-# Param 2 - Value to assign
-SetIfEmpty = \
-    $(if $($(strip $1)),,$(eval $(strip $1) := $2))
-
-################################################################################
 # All install-file and related macros automatically call DecodeSpace when needed.
 
 ifeq ($(OPENJDK_TARGET_OS),solaris)
@@ -576,46 +323,6 @@
 endef
 
 ################################################################################
-# Take two paths and return the path of the last common directory.
-# Ex: /foo/bar/baz, /foo/bar/banan -> /foo/bar
-#     foo/bar/baz, /foo/bar -> <empty>
-#
-# The x prefix is used to preserve the presence of the initial slash
-#
-# $1 - Path to compare
-# $2 - Other path to compare
-FindCommonPathPrefix = \
-    $(patsubst x%,%,$(subst $(SPACE),/,$(strip \
-        $(call FindCommonPathPrefixHelper, \
-            $(subst /,$(SPACE),x$(strip $1)), $(subst /,$(SPACE),x$(strip $2))) \
-    )))
-
-FindCommonPathPrefixHelper = \
-    $(if $(call equals, $(firstword $1), $(firstword $2)), \
-      $(firstword $1) \
-      $(call FindCommonPathPrefixHelper, \
-          $(wordlist 2, $(words $1), $1), $(wordlist 2, $(words $2), $2) \
-      ) \
-    )
-
-# Convert a partial path into as many directory levels of ../, removing
-# leading and following /.
-# Ex: foo/bar/baz/ -> ../../..
-#     foo/bar -> ../..
-#     /foo -> ..
-DirToDotDot = \
-    $(subst $(SPACE),/,$(foreach d, $(subst /,$(SPACE),$1),..))
-
-# Computes the relative path from a directory to a file
-# $1 - File to compute the relative path to
-# $2 - Directory to compute the relative path from
-RelativePath = \
-    $(eval $1_prefix := $(call FindCommonPathPrefix, $1, $2)) \
-    $(eval $1_dotdots := $(call DirToDotDot, $(patsubst $($(strip $1)_prefix)/%, %, $2))) \
-    $(eval $1_suffix := $(patsubst $($(strip $1)_prefix)/%, %, $1)) \
-    $($(strip $1)_dotdots)/$($(strip $1)_suffix)
-
-################################################################################
 # link-file-* works similarly to install-file but creates a symlink instead.
 # There are two versions, either creating a relative or an absolute link. Be
 # careful when using this on Windows since the symlink created is only valid in
@@ -633,60 +340,6 @@
 endef
 
 ################################################################################
-# Filter out duplicate sub strings while preserving order. Keeps the first occurance.
-uniq = \
-    $(strip $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1))))
-
-# Returns all whitespace-separated words in $2 where at least one of the
-# whitespace-separated words in $1 is a substring.
-containing = \
-    $(strip \
-        $(foreach v,$(strip $2),\
-          $(call uniq,$(foreach p,$(strip $1),$(if $(findstring $p,$v),$v)))))
-
-# Returns all whitespace-separated words in $2 where none of the
-# whitespace-separated words in $1 is a substring.
-not-containing = \
-    $(strip $(filter-out $(call containing,$1,$2),$2))
-
-# Return a list of all string elements that are duplicated in $1.
-dups = \
-    $(strip $(foreach v, $(sort $1), $(if $(filter-out 1, \
-        $(words $(filter $v, $1))), $v)))
-
-# String equals
-equals = \
-    $(if $(strip $1)$(strip $2),$(strip \
-      $(and $(findstring $(strip $1),$(strip $2)),\
-        $(findstring $(strip $2),$(strip $1)))), \
-      true \
-    )
-
-# Remove a whole list of prefixes
-# $1 - List of prefixes
-# $2 - List of elements to process
-remove-prefixes = \
-    $(strip $(if $1,$(patsubst $(firstword $1)%,%,\
-      $(call remove-prefixes,$(filter-out $(firstword $1),$1),$2)),$2))
-
-# Convert the string given to upper case, without any $(shell)
-# Inspired by http://lists.gnu.org/archive/html/help-make/2013-09/msg00009.html
-uppercase_table := a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O \
-    p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
-
-uppercase_internal = \
-  $(if $(strip $1), $$(subst $(firstword $1), $(call uppercase_internal, \
-      $(wordlist 2, $(words $1), $1), $2)), $2)
-
-# Convert a string to upper case. Works only on a-z.
-# $1 - The string to convert
-uppercase = \
-  $(strip \
-    $(eval uppercase_result := $(call uppercase_internal, $(uppercase_table), $1)) \
-    $(uppercase_result) \
-  )
-
-################################################################################
 
 ifneq ($(DISABLE_CACHE_FIND), true)
   # In Cygwin, finds are very costly, both because of expensive forks and because
@@ -758,144 +411,6 @@
 endif
 
 ################################################################################
-
-define AddFileToCopy
-  # Helper macro for SetupCopyFiles
-  # 1 : Source file
-  # 2 : Dest file
-  # 3 : Variable to add targets to
-  # 4 : Macro to call for copy operation
-  # 5 : Action text to log
-  $2: $1
-	$$(call LogInfo, $(strip $5) $$(patsubst $(OUTPUTDIR)/%,%,$$(call DecodeSpace, $$@)))
-	$$($$(strip $4))
-
-  $3 += $2
-  $3_SOURCES += $1
-endef
-
-# Returns the value of the first argument
-identity = \
-    $(strip $1)
-
-# Setup make rules for copying files, with an option to do more complex
-# processing instead of copying.
-#
-# Parameter 1 is the name of the rule. This name is used as variable prefix,
-# and the targets generated are listed in a variable by that name.
-#
-# The list of all source files is returned in $1_SOURCES.
-#
-# Remaining parameters are named arguments. These include:
-#   SRC     : Source root dir (defaults to dir of first file)
-#   DEST    : Dest root dir
-#   FILES   : List of files to copy with absolute paths, or path relative to SRC.
-#             Must be in SRC.
-#   FLATTEN : Set to flatten the directory structure in the DEST dir.
-#   MACRO   : Optionally override the default macro used for making the copy.
-#             Default is 'install-file'
-#   NAME_MACRO : Optionally supply a macro that rewrites the target file name
-#                based on the source file name
-#   LOG_ACTION : Optionally specify a different action text for log messages
-SetupCopyFiles = $(NamedParamsMacroTemplate)
-define SetupCopyFilesBody
-
-  ifeq ($$($1_MACRO), )
-    $1_MACRO := install-file
-  endif
-
-  # Default SRC to the dir of the first file.
-  ifeq ($$($1_SRC), )
-    $1_SRC := $$(dir $$(firstword $$($1_FILES)))
-  endif
-
-  ifeq ($$($1_NAME_MACRO), )
-    $1_NAME_MACRO := identity
-  endif
-
-  ifeq ($$($1_LOG_ACTION), )
-    $1_LOG_ACTION := Copying
-  endif
-
-  # Remove any trailing slash from SRC and DEST
-  $1_SRC := $$(patsubst %/,%,$$($1_SRC))
-  $1_DEST := $$(patsubst %/,%,$$($1_DEST))
-
-  # Need to wrap arguments in DoubleDollar because of the eval nested inside an
-  # eval macro body.
-  $$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \
-    $$(eval $$(call AddFileToCopy, \
-        $$(call DoubleDollar, $$($1_SRC)/$$f), \
-        $$(call DoubleDollar, \
-            $$($1_DEST)/$$(call $$(strip $$($1_NAME_MACRO)),$$(if $$($1_FLATTEN),$$(notdir $$f),$$f)) \
-        ), \
-        $1, \
-        $$($1_MACRO), \
-        $$($1_LOG_ACTION) \
-    )) \
-  )
-
-endef
-
-################################################################################
-# Parse a multiple-keyword variable, like FOO="KEYWORD1=val1;KEYWORD2=val2;..."
-# These will be converted into a series of variables like FOO_KEYWORD1=val1,
-# FOO_KEYWORD2=val2, etc. Unknown keywords will cause an error.
-#
-# Parameter 1 is the name of the rule, and is also the name of the variable.
-#
-# Remaining parameters are named arguments. These include:
-#   SINGLE_KEYWORDS   A list of valid keywords with single string values
-#   STRING_KEYWORDS   A list of valid keywords, processed as string. This means
-#       that '%20' will be replaced by ' ' to allow for multi-word strings.
-#
-ParseKeywordVariable = $(NamedParamsMacroTemplate)
-define ParseKeywordVariableBody
-  ifneq ($$($1), )
-    # To preserve spaces, substitute them with a hopefully unique pattern
-    # before splitting and then re-substitute spaces back.
-    $1_MANGLED := $$(subst $$(SPACE),||||,$$($1))
-    $$(foreach mangled_part, $$(subst ;, , $$($1_MANGLED)), \
-      $$(eval mangled_part_eval := $$(call DoubleDollar, $$(mangled_part))) \
-      $$(eval part := $$$$(subst ||||,$$$$(SPACE),$$$$(mangled_part_eval))) \
-      $$(eval $1_NO_MATCH := true) \
-      $$(foreach keyword, $$($1_SINGLE_KEYWORDS), \
-        $$(eval keyword_eval := $$(call DoubleDollar, $$(keyword))) \
-        $$(if $$(filter $$(keyword)=%, $$(part)), \
-          $$(eval $(strip $1)_$$$$(keyword_eval) := $$$$(strip $$$$(patsubst $$$$(keyword_eval)=%, %, $$$$(part)))) \
-          $$(eval $1_NO_MATCH := ) \
-        ) \
-      ) \
-      $$(foreach keyword, $$($1_STRING_KEYWORDS), \
-        $$(eval keyword_eval := $$(call DoubleDollar, $$(keyword))) \
-        $$(if $$(filter $$(keyword)=%, $$(part)), \
-          $$(eval $(strip $1)_$$$$(keyword_eval) := $$$$(strip $$$$(subst %20, , $$$$(patsubst $$$$(keyword_eval)=%, %, $$$$(part))))) \
-          $$(eval $1_NO_MATCH := ) \
-        ) \
-      ) \
-      $$(if $$($1_NO_MATCH), \
-        $$(if $$(filter $$(part), $$($1_SINGLE_KEYWORDS) $$($1_STRING_KEYWORDS)), \
-          $$(info Keyword $$(part) for $1 needs to be assigned a value.) \
-        , \
-          $$(info $$(part) is not a valid keyword for $1.) \
-          $$(info Valid keywords: $$($1_SINGLE_KEYWORDS) $$($1_STRING_KEYWORDS).) \
-        ) \
-        $$(error Cannot continue) \
-      ) \
-    )
-  endif
-endef
-
-################################################################################
-# ShellQuote
-#
-# Quotes a string with single quotes and replaces single quotes with '\'' so
-# that the contents survives being given to the shell.
-
-ShellQuote = \
-    $(SQUOTE)$(subst $(SQUOTE),$(SQUOTE)\$(SQUOTE)$(SQUOTE),$(strip $1))$(SQUOTE)
-
-################################################################################
 # FixPath
 #
 # On Windows, converts a path from cygwin/unix style (e.g. /bin/foo) into
@@ -912,35 +427,6 @@
 endif
 
 ################################################################################
-# Write to and read from file
-
-# Param 1 - File to read
-ReadFile = \
-    $(shell $(CAT) $1)
-
-# Param 1 - Text to write
-# Param 2 - File to write to
-ifeq ($(HAS_FILE_FUNCTION), true)
-  WriteFile = \
-      $(file >$2,$(strip $1))
-else
-  # Use printf to get consistent behavior on all platforms.
-  WriteFile = \
-      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) > $2)
-endif
-
-# Param 1 - Text to write
-# Param 2 - File to write to
-ifeq ($(HAS_FILE_FUNCTION), true)
-  AppendFile = \
-      $(file >>$2,$(strip $1))
-else
-  # Use printf to get consistent behavior on all platforms.
-  AppendFile = \
-      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) >> $2)
-endif
-
-################################################################################
 # DependOnVariable
 #
 # This macro takes a variable name and puts the value in a file only if the
@@ -1026,75 +512,6 @@
       exit $(DOLLAR)exitcode ) )
 
 ################################################################################
-# Find lib dir for module
-# Param 1 - module name
-FindLibDirForModule = \
-    $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
-
-################################################################################
-# Find executable dir for module
-# Param 1 - module name
-FindExecutableDirForModule = \
-    $(SUPPORT_OUTPUTDIR)/modules_cmds/$(strip $1)
-
-################################################################################
-# Return a string suitable for use after a -classpath or --module-path option. It
-# will be correct and safe to use on all platforms. Arguments are given as space
-# separate classpath entries. Safe for multiple nested calls.
-# param 1 : A space separated list of classpath entries
-# The surrounding strip is needed to keep additional whitespace out
-PathList = \
-  "$(subst $(SPACE),$(PATH_SEP),$(strip $(subst $(DQUOTE),,$1)))"
-
-################################################################################
-# Check if a specified hotspot variant is being built, or at least one of a
-# list of variants. Will return 'true' or 'false'.
-# $1 - the variant to test for
-check-jvm-variant = \
-  $(strip \
-    $(if $(filter-out $(VALID_JVM_VARIANTS), $1), \
-      $(error Internal error: Invalid variant tested: $1)) \
-    $(if $(filter $1, $(JVM_VARIANTS)), true, false))
-
-################################################################################
-# Converts a space separated list to a comma separated list.
-#
-# Replacing double-comma with a single comma is to workaround the issue with
-# some version of make on windows that doesn't substitute spaces with one comma
-# properly.
-CommaList = \
-  $(strip \
-      $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1))) \
-  )
-
-################################################################################
-# Converts a space separated list to a colon separated list.
-#
-# Replacing double-colon with a single colon is to workaround the issue with
-# some version of make on windows that doesn't substitute spaces with one colon
-# properly.
-ColonList = \
-  $(strip \
-      $(subst ::,:,$(subst $(SPACE),:,$(strip $1))) \
-  )
-
-################################################################################
-# Given a list of files, filters out locale specific files for translations
-# that should be excluded from this build.
-# $1 - The list of files to filter
-# $2 - The suffix of the files that should be considered (.java or .properties)
-FilterExcludedTranslations = \
-  $(strip $(if $(EXCLUDE_TRANSLATIONS), \
-    $(filter-out \
-        $(foreach suffix, $2, \
-          $(addprefix %_, $(addsuffix $(suffix), $(EXCLUDE_TRANSLATIONS))) \
-        ), \
-        $1 \
-    ), \
-    $1 \
-  ))
-
-################################################################################
 
 # Hook to include the corresponding custom file, if present.
 $(eval $(call IncludeCustomExtension, common/MakeBase.gmk))
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/make/common/MakeIO.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,272 @@
+#
+# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# This code is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License version 2 only, as
+# published by the Free Software Foundation.  Oracle designates this
+# particular file as subject to the "Classpath" exception as provided
+# by Oracle in the LICENSE file that accompanied this code.
+#
+# This code is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# version 2 for more details (a copy is included in the LICENSE file that
+# accompanied this code).
+#
+# You should have received a copy of the GNU General Public License version
+# 2 along with this work; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+# or visit www.oracle.com if you need additional information or have any
+# questions.
+#
+
+ifeq (,$(_MAKEBASE_GMK))
+  $(error You must include MakeBase.gmk prior to including MakeIO.gmk)
+endif
+
+################################################################################
+#
+# Functions for dealing with reading and writing from makefiles. Prior to GNU
+# Make 4.0, this was tricky business.
+#
+################################################################################
+
+
+################################################################################
+# ListPathsSafely can be used to print command parameters to a file. This is
+# typically done if the command line lenght risk being too long for the
+# OS/shell. In later make versions, the file function can be used for this
+# purpose. For earlier versions, a more complex implementation is provided.
+#
+# The function ListPathsSafely can be called either directly or, more commonly
+# from a recipe line. If called from a recipe, it will be executed in the
+# evaluation phase of that recipe, which means that it will write to the file
+# before any other line in the recipe has been run.
+ifeq ($(HAS_FILE_FUNCTION), true)
+  # Param 1 - Name of variable containing paths/arguments to output
+  # Param 2 - File to print to
+  # Param 3 - Set to true to append to file instead of overwriting
+  define ListPathsSafely
+    $$(call MakeDir, $$(dir $$(strip $2)))
+    $$(file $$(if $$(filter true, $$(strip $3)),>>,>) \
+        $$(strip $2),$$(subst $$(SPACE),$$(NEWLINE),$$(strip $$($$(strip $1)))))
+  endef
+
+else # HAS_FILE_FUNCTION = false
+
+  $(eval compress_paths = \
+      $(strip $(shell $(CAT) $(TOPDIR)/make/common/support/ListPathsSafely-pre-compress.incl)))
+  compress_paths += \
+      $(subst $(TOPDIR),X97, \
+      $(subst $(OUTPUTDIR),X98, \
+      $(subst X,X00, \
+      $(subst $(SPACE),\n,$(strip $1)))))
+  $(eval compress_paths += \
+      $(strip $(shell $(CAT) $(TOPDIR)/make/common/support/ListPathsSafely-post-compress.incl)))
+
+  decompress_paths=$(SED) -f $(TOPDIR)/make/common/support/ListPathsSafely-uncompress.sed \
+      -e 's|X99|\\n|g' \
+      -e 's|X98|$(OUTPUTDIR)|g' -e 's|X97|$(TOPDIR)|g' \
+      -e 's|X00|X|g'
+
+  ListPathsSafely_IfPrintf = \
+      $(if $(word $3,$($(strip $1))), \
+          $(shell $(PRINTF) -- "$(strip $(call EscapeDollar, \
+              $(call compress_paths, $(wordlist $3,$4,$($(strip $1))))))\n" \
+              | $(decompress_paths) >> $2))
+
+  # Param 1 - Name of variable containing paths/arguments to output
+  # Param 2 - File to print to
+  # Param 3 - Set to true to append to file instead of overwriting
+  define ListPathsSafely
+    ifneq (,$$(word 30001,$$($$(strip $1))))
+      $$(error Cannot list safely more than 30000 paths. $1 has $$(words $$($$(strip $1))) paths!)
+    endif
+    $$(call MakeDir, $$(dir $2))
+    ifneq ($$(strip $3), true)
+      $$(shell $(RM) $$(strip $2))
+    endif
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,1,250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,251,500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,501,750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,751,1000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,1001,1250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,1251,1500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,1501,1750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,1751,2000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,2001,2250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,2251,2500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,2501,2750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,2751,3000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,3001,3250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,3251,3500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,3501,3750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,3751,4000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,4001,4250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,4251,4500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,4501,4750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,4751,5000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,5001,5250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,5251,5500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,5501,5750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,5751,6000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,6001,6250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,6251,6500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,6501,6750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,6751,7000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,7001,7250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,7251,7500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,7501,7750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,7751,8000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,8001,8250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,8251,8500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,8501,8750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,8751,9000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,9001,9250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,9251,9500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,9501,9750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,9751,10000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,10001,10250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,10251,10500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,10501,10750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,10751,11000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,11001,11250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,11251,11500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,11501,11750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,11751,12000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,12001,12250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,12251,12500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,12501,12750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,12751,13000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,13001,13250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,13251,13500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,13501,13750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,13751,14000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,14001,14250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,14251,14500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,14501,14750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,14751,15000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,15001,15250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,15251,15500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,15501,15750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,15751,16000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,16001,16250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,16251,16500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,16501,16750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,16751,17000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,17001,17250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,17251,17500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,17501,17750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,17751,18000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,18001,18250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,18251,18500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,18501,18750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,18751,19000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,19001,19250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,19251,19500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,19501,19750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,19751,20000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,20001,20250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,20251,20500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,20501,20750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,20751,21000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,21001,21250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,21251,21500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,21501,21750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,21751,22000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,22001,22250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,22251,22500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,22501,22750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,22751,23000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,23001,23250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,23251,23500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,23501,23750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,23751,24000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,24001,24250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,24251,24500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,24501,24750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,24751,25000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,25001,25250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,25251,25500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,25501,25750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,25751,26000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,26001,26250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,26251,26500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,26501,26750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,26751,27000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,27001,27250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,27251,27500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,27501,27750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,27751,28000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,28001,28250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,28251,28500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,28501,28750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,28751,29000)
+
+    $$(call ListPathsSafely_IfPrintf,$1,$2,29001,29250)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,29251,29500)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,29501,29750)
+    $$(call ListPathsSafely_IfPrintf,$1,$2,29751,30000)
+  endef
+endif # HAS_FILE_FUNCTION
+
+################################################################################
+# Write to and read from file
+
+# Param 1 - File to read
+ReadFile = \
+    $(shell $(CAT) $1)
+
+# Param 1 - Text to write
+# Param 2 - File to write to
+ifeq ($(HAS_FILE_FUNCTION), true)
+  WriteFile = \
+      $(file >$2,$(strip $1))
+else
+  # Use printf to get consistent behavior on all platforms.
+  WriteFile = \
+      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) > $2)
+endif
+
+# Param 1 - Text to write
+# Param 2 - File to write to
+ifeq ($(HAS_FILE_FUNCTION), true)
+  AppendFile = \
+      $(file >>$2,$(strip $1))
+else
+  # Use printf to get consistent behavior on all platforms.
+  AppendFile = \
+      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) >> $2)
+endif
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/make/common/Utils.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,307 @@
+#
+# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# This code is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License version 2 only, as
+# published by the Free Software Foundation.  Oracle designates this
+# particular file as subject to the "Classpath" exception as provided
+# by Oracle in the LICENSE file that accompanied this code.
+#
+# This code is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# version 2 for more details (a copy is included in the LICENSE file that
+# accompanied this code).
+#
+# You should have received a copy of the GNU General Public License version
+# 2 along with this work; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+# or visit www.oracle.com if you need additional information or have any
+# questions.
+#
+
+ifeq (,$(_MAKEBASE_GMK))
+  $(error You must include MakeBase.gmk prior to including Utils.gmk)
+endif
+
+################################################################################
+#
+# Common utility functions
+#
+################################################################################
+
+### Debug functions
+
+# Prints the name and value of a variable
+PrintVar = \
+    $(info $(strip $1) >$($(strip $1))<)
+
+################################################################################
+# This macro translates $ into \$ to protect the $ from expansion in the shell.
+# To make this macro resilient against already escaped strings, first remove
+# any present escapes before escaping so that no double escapes are added.
+EscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1)))
+
+################################################################################
+# This macro works just like EscapeDollar above, but for #.
+EscapeHash = $(subst \#,\\\#,$(subst \\\#,\#,$(strip $1)))
+
+################################################################################
+# This macro translates $ into $$ to protect the string from make itself.
+DoubleDollar = $(subst $$,$$$$,$(strip $1))
+
+################################################################################
+# Creates a sequence of increasing numbers (inclusive).
+# Param 1 - starting number
+# Param 2 - ending number
+sequence = \
+    $(wordlist $1, $2, $(strip \
+        $(eval SEQUENCE_COUNT :=) \
+        $(call _sequence-do,$(strip $2))))
+
+_sequence-do = \
+    $(if $(word $1, $(SEQUENCE_COUNT)),, \
+      $(eval SEQUENCE_COUNT += .) \
+      $(words $(SEQUENCE_COUNT)) \
+      $(call _sequence-do,$1))
+
+################################################################################
+# Replace question marks with space in string. This macro needs to be called on
+# files from CacheFind in case any of them contains space in their file name,
+# since CacheFind replaces space with ?.
+# Param 1 - String to replace in
+DecodeSpace = \
+    $(subst ?,$(SPACE),$(strip $1))
+
+EncodeSpace = \
+    $(subst $(SPACE),?,$(strip $1))
+
+################################################################################
+# Assign a variable only if it is empty
+# Param 1 - Variable to assign
+# Param 2 - Value to assign
+SetIfEmpty = \
+    $(if $($(strip $1)),,$(eval $(strip $1) := $2))
+
+################################################################################
+# Take two paths and return the path of the last common directory.
+# Ex: /foo/bar/baz, /foo/bar/banan -> /foo/bar
+#     foo/bar/baz, /foo/bar -> <empty>
+#
+# The x prefix is used to preserve the presence of the initial slash
+#
+# $1 - Path to compare
+# $2 - Other path to compare
+FindCommonPathPrefix = \
+    $(patsubst x%,%,$(subst $(SPACE),/,$(strip \
+        $(call FindCommonPathPrefixHelper, \
+            $(subst /,$(SPACE),x$(strip $1)), $(subst /,$(SPACE),x$(strip $2))) \
+    )))
+
+FindCommonPathPrefixHelper = \
+    $(if $(call equals, $(firstword $1), $(firstword $2)), \
+      $(firstword $1) \
+      $(call FindCommonPathPrefixHelper, \
+          $(wordlist 2, $(words $1), $1), $(wordlist 2, $(words $2), $2) \
+      ) \
+    )
+
+# Convert a partial path into as many directory levels of ../, removing
+# leading and following /.
+# Ex: foo/bar/baz/ -> ../../..
+#     foo/bar -> ../..
+#     /foo -> ..
+DirToDotDot = \
+    $(subst $(SPACE),/,$(foreach d, $(subst /,$(SPACE),$1),..))
+
+# Computes the relative path from a directory to a file
+# $1 - File to compute the relative path to
+# $2 - Directory to compute the relative path from
+RelativePath = \
+    $(eval $1_prefix := $(call FindCommonPathPrefix, $1, $2)) \
+    $(eval $1_dotdots := $(call DirToDotDot, $(patsubst $($(strip $1)_prefix)/%, %, $2))) \
+    $(eval $1_suffix := $(patsubst $($(strip $1)_prefix)/%, %, $1)) \
+    $($(strip $1)_dotdots)/$($(strip $1)_suffix)
+
+################################################################################
+# Filter out duplicate sub strings while preserving order. Keeps the first occurance.
+uniq = \
+    $(strip $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1))))
+
+# Returns all whitespace-separated words in $2 where at least one of the
+# whitespace-separated words in $1 is a substring.
+containing = \
+    $(strip \
+        $(foreach v,$(strip $2),\
+          $(call uniq,$(foreach p,$(strip $1),$(if $(findstring $p,$v),$v)))))
+
+# Returns all whitespace-separated words in $2 where none of the
+# whitespace-separated words in $1 is a substring.
+not-containing = \
+    $(strip $(filter-out $(call containing,$1,$2),$2))
+
+# Return a list of all string elements that are duplicated in $1.
+dups = \
+    $(strip $(foreach v, $(sort $1), $(if $(filter-out 1, \
+        $(words $(filter $v, $1))), $v)))
+
+# String equals
+equals = \
+    $(if $(strip $1)$(strip $2),$(strip \
+      $(and $(findstring $(strip $1),$(strip $2)),\
+        $(findstring $(strip $2),$(strip $1)))), \
+      true \
+    )
+
+# Remove a whole list of prefixes
+# $1 - List of prefixes
+# $2 - List of elements to process
+remove-prefixes = \
+    $(strip $(if $1,$(patsubst $(firstword $1)%,%,\
+      $(call remove-prefixes,$(filter-out $(firstword $1),$1),$2)),$2))
+
+# Convert the string given to upper case, without any $(shell)
+# Inspired by http://lists.gnu.org/archive/html/help-make/2013-09/msg00009.html
+uppercase_table := a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O \
+    p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
+
+uppercase_internal = \
+  $(if $(strip $1), $$(subst $(firstword $1), $(call uppercase_internal, \
+      $(wordlist 2, $(words $1), $1), $2)), $2)
+
+# Convert a string to upper case. Works only on a-z.
+# $1 - The string to convert
+uppercase = \
+  $(strip \
+    $(eval uppercase_result := $(call uppercase_internal, $(uppercase_table), $1)) \
+    $(uppercase_result) \
+  )
+
+################################################################################
+# Parse a multiple-keyword variable, like FOO="KEYWORD1=val1;KEYWORD2=val2;..."
+# These will be converted into a series of variables like FOO_KEYWORD1=val1,
+# FOO_KEYWORD2=val2, etc. Unknown keywords will cause an error.
+#
+# Parameter 1 is the name of the rule, and is also the name of the variable.
+#
+# Remaining parameters are named arguments. These include:
+#   SINGLE_KEYWORDS   A list of valid keywords with single string values
+#   STRING_KEYWORDS   A list of valid keywords, processed as string. This means
+#       that '%20' will be replaced by ' ' to allow for multi-word strings.
+#
+ParseKeywordVariable = $(NamedParamsMacroTemplate)
+define ParseKeywordVariableBody
+  ifneq ($$($1), )
+    # To preserve spaces, substitute them with a hopefully unique pattern
+    # before splitting and then re-substitute spaces back.
+    $1_MANGLED := $$(subst $$(SPACE),||||,$$($1))
+    $$(foreach mangled_part, $$(subst ;, , $$($1_MANGLED)), \
+      $$(eval mangled_part_eval := $$(call DoubleDollar, $$(mangled_part))) \
+      $$(eval part := $$$$(subst ||||,$$$$(SPACE),$$$$(mangled_part_eval))) \
+      $$(eval $1_NO_MATCH := true) \
+      $$(foreach keyword, $$($1_SINGLE_KEYWORDS), \
+        $$(eval keyword_eval := $$(call DoubleDollar, $$(keyword))) \
+        $$(if $$(filter $$(keyword)=%, $$(part)), \
+          $$(eval $(strip $1)_$$$$(keyword_eval) := $$$$(strip $$$$(patsubst $$$$(keyword_eval)=%, %, $$$$(part)))) \
+          $$(eval $1_NO_MATCH := ) \
+        ) \
+      ) \
+      $$(foreach keyword, $$($1_STRING_KEYWORDS), \
+        $$(eval keyword_eval := $$(call DoubleDollar, $$(keyword))) \
+        $$(if $$(filter $$(keyword)=%, $$(part)), \
+          $$(eval $(strip $1)_$$$$(keyword_eval) := $$$$(strip $$$$(subst %20, , $$$$(patsubst $$$$(keyword_eval)=%, %, $$$$(part))))) \
+          $$(eval $1_NO_MATCH := ) \
+        ) \
+      ) \
+      $$(if $$($1_NO_MATCH), \
+        $$(if $$(filter $$(part), $$($1_SINGLE_KEYWORDS) $$($1_STRING_KEYWORDS)), \
+          $$(info Keyword $$(part) for $1 needs to be assigned a value.) \
+        , \
+          $$(info $$(part) is not a valid keyword for $1.) \
+          $$(info Valid keywords: $$($1_SINGLE_KEYWORDS) $$($1_STRING_KEYWORDS).) \
+        ) \
+        $$(error Cannot continue) \
+      ) \
+    )
+  endif
+endef
+
+################################################################################
+# ShellQuote
+#
+# Quotes a string with single quotes and replaces single quotes with '\'' so
+# that the contents survives being given to the shell.
+ShellQuote = \
+    $(SQUOTE)$(subst $(SQUOTE),$(SQUOTE)\$(SQUOTE)$(SQUOTE),$(strip $1))$(SQUOTE)
+
+################################################################################
+# Find lib dir for module
+# Param 1 - module name
+FindLibDirForModule = \
+    $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
+
+################################################################################
+# Find executable dir for module
+# Param 1 - module name
+FindExecutableDirForModule = \
+    $(SUPPORT_OUTPUTDIR)/modules_cmds/$(strip $1)
+
+################################################################################
+# Return a string suitable for use after a -classpath or --module-path option. It
+# will be correct and safe to use on all platforms. Arguments are given as space
+# separate classpath entries. Safe for multiple nested calls.
+# param 1 : A space separated list of classpath entries
+# The surrounding strip is needed to keep additional whitespace out
+PathList = \
+  "$(subst $(SPACE),$(PATH_SEP),$(strip $(subst $(DQUOTE),,$1)))"
+
+################################################################################
+# Check if a specified hotspot variant is being built, or at least one of a
+# list of variants. Will return 'true' or 'false'.
+# $1 - the variant to test for
+check-jvm-variant = \
+  $(strip \
+    $(if $(filter-out $(VALID_JVM_VARIANTS), $1), \
+      $(error Internal error: Invalid variant tested: $1)) \
+    $(if $(filter $1, $(JVM_VARIANTS)), true, false))
+
+################################################################################
+# Converts a space separated list to a comma separated list.
+#
+# Replacing double-comma with a single comma is to workaround the issue with
+# some version of make on windows that doesn't substitute spaces with one comma
+# properly.
+CommaList = \
+  $(strip \
+      $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1))) \
+  )
+
+################################################################################
+# Converts a space separated list to a colon separated list.
+#
+# Replacing double-colon with a single colon is to workaround the issue with
+# some version of make on windows that doesn't substitute spaces with one colon
+# properly.
+ColonList = \
+  $(strip \
+      $(subst ::,:,$(subst $(SPACE),:,$(strip $1))) \
+  )
+
+################################################################################
+# Given a list of files, filters out locale specific files for translations
+# that should be excluded from this build.
+# $1 - The list of files to filter
+# $2 - The suffix of the files that should be considered (.java or .properties)
+FilterExcludedTranslations = \
+  $(strip $(if $(EXCLUDE_TRANSLATIONS), \
+    $(filter-out \
+        $(foreach suffix, $2, \
+          $(addprefix %_, $(addsuffix $(suffix), $(EXCLUDE_TRANSLATIONS))) \
+        ), \
+        $1 \
+    ), \
+    $1 \
+  ))
--- a/make/conf/jib-profiles.js	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/conf/jib-profiles.js	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -574,6 +574,20 @@
             profiles[bootcyclePrebuiltName].default_make_targets = [ "product-images" ];
         });
 
+    // JCov profiles build JCov-instrumented JDK image based on images provided through dependencies.
+    [ "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
+        .forEach(function (name) {
+            var jcovName = name + "-jcov";
+            profiles[jcovName] = clone(common.main_profile_base);
+            profiles[jcovName].target_os = profiles[name].target_os
+            profiles[jcovName].target_cpu = profiles[name].target_cpu
+            profiles[jcovName].default_make_targets = [ "jcov-bundles" ];
+            profiles[jcovName].dependencies = concat(profiles[jcovName].dependencies,
+                [ name + ".jdk", "devkit" ]);
+            profiles[jcovName].configure_args = concat(profiles[jcovName].configure_args,
+                ["--with-jcov-input-jdk=" + input.get(name + ".jdk", "home_path")]);
+        });
+
     //
     // Define artifacts for profiles
     //
@@ -707,6 +721,26 @@
         });
     });
 
+    // Artifacts of JCov profiles
+    [ "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
+        .forEach(function (name) {
+            var o = artifactData[name]
+            var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
+            var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
+            var pf = o.platform
+            var jcovName = name + "-jcov";
+            profiles[jcovName].artifacts = {
+                jdk: {
+                    local: "bundles/\\(jdk-jcov.*bin." + jdk_suffix + "\\)",
+                    remote: [
+                        "bundles/" + pf + "/jdk-jcov-" + data.version + "_" + pf + "_bin." + jdk_suffix
+                    ],
+                    subdir: jdk_subdir,
+                    exploded: "images/jdk-jcov"
+                }
+            };
+        });
+
     // Profiles used to run tests.
     var testOnlyProfiles = {
         "run-test": {
@@ -726,20 +760,27 @@
     if (testedProfile == null) {
         testedProfile = input.build_os + "-" + input.build_cpu;
     }
+    var testedProfileJDK = testedProfile + ".jdk";
+    var testedProfileTest = ""
+    if (testedProfile.endsWith("-jcov")) {
+        testedProfileTest = testedProfile.substring(0, testedProfile.length - "-jcov".length) + ".test";
+    } else {
+        testedProfileTest = testedProfile + ".test";
+    }
     var testOnlyProfilesPrebuilt = {
         "run-test-prebuilt": {
             target_os: input.build_os,
             target_cpu: input.build_cpu,
             dependencies: [
-                "jtreg", "gnumake", "boot_jdk", "devkit", "jib", testedProfile + ".jdk",
-                testedProfile + ".test"
+                "jtreg", "gnumake", "boot_jdk", "devkit", "jib", "jcov", testedProfileJDK,
+                testedProfileTest
             ],
             src: "src.conf",
             make_args: [ "run-test-prebuilt", "LOG_CMDLINES=true", "JTREG_VERBOSE=fail,error,time" ],
             environment: {
                 "BOOT_JDK": common.boot_jdk_home,
-                "JDK_IMAGE_DIR": input.get(testedProfile + ".jdk", "home_path"),
-                "TEST_IMAGE_DIR": input.get(testedProfile + ".test", "home_path")
+                "JDK_IMAGE_DIR": input.get(testedProfileJDK, "home_path"),
+                "TEST_IMAGE_DIR": input.get(testedProfileTest, "home_path")
             },
             labels: "test"
         }
@@ -905,6 +946,7 @@
             version: "3.0",
             build_number: "b07",
             file: "bundles/jcov-3_0.zip",
+            environment_name: "JCOV_HOME",
         },
 
         gnumake: {
--- a/make/data/charsetmapping/charsets	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/data/charsetmapping/charsets	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -1561,6 +1561,15 @@
     alias   ibm-euctw
     alias   964
 
+charset x-IBM29626C IBM29626C
+    package sun.nio.cs.ext
+    type    template
+    alias   cp29626c            # JDK historical
+    alias   ibm29626c
+    alias   ibm-29626c
+    alias   29626c
+    alias   ibm-eucjp
+
 charset x-IBM33722 IBM33722
     package sun.nio.cs.ext
     type    source
--- a/make/data/charsetmapping/stdcs-aix	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/data/charsetmapping/stdcs-aix	Tue Jan 29 09:38:31 2019 -0500
@@ -22,8 +22,12 @@
 IBM1124
 IBM1129
 IBM1383
+IBM29626C
 ISO_8859_6
 ISO_8859_8
+JIS_X_0201
+JIS_X_0208
+JIS_X_0212
 MS1252
 TIS_620
 SimpleEUCEncoder
--- a/make/hotspot/gensrc/GensrcAdlc.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/hotspot/gensrc/GensrcAdlc.gmk	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -142,6 +142,12 @@
       )))
   endif
 
+  ifeq ($(call check-jvm-feature, zgc), true)
+    AD_SRC_FILES += $(call uniq, $(wildcard $(foreach d, $(AD_SRC_ROOTS), \
+        $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/gc/z/z_$(HOTSPOT_TARGET_CPU).ad \
+      )))
+  endif
+
   SINGLE_AD_SRCFILE := $(ADLC_SUPPORT_DIR)/all-ad-src.ad
 
   INSERT_FILENAME_AWK_SCRIPT := \
--- a/make/nb_native/nbproject/configurations.xml	Tue Jan 22 09:43:38 2019 -0500
+++ b/make/nb_native/nbproject/configurations.xml	Tue Jan 29 09:38:31 2019 -0500
@@ -2,6711 +2,6 @@
 <configurationDescriptor version="100">
   <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
     <df root="../.." name="0">
-      <df name="bin">
-        <in>unshuffle_list.txt</in>
-      </df>
-      <df name="build">
-        <df name="hotspot">
-          <df name="linux_amd64_compiler2">
-            <df name="generated">
-              <df name="adfiles">
-                <in>ad_x86_64.cpp</in>
-                <in>ad_x86_64_clone.cpp</in>
-                <in>ad_x86_64_expand.cpp</in>
-                <in>ad_x86_64_format.cpp</in>
-                <in>ad_x86_64_gen.cpp</in>
-                <in>ad_x86_64_misc.cpp</in>
-                <in>ad_x86_64_peephole.cpp</in>
-                <in>ad_x86_64_pipeline.cpp</in>
-                <in>dfa_x86_64.cpp</in>
-              </df>
-              <df name="jvmtifiles">
-                <in>bytecodeInterpreterWithChecks.cpp</in>
-                <in>jvmtiEnter.cpp</in>
-                <in>jvmtiEnterTrace.cpp</in>
-              </df>
-            </df>
-          </df>
-          <df name="variant-server">
-            <df name="gensrc">
-              <df name="adfiles">
-                <in>ad_x86_64.cpp</in>
-                <in>ad_x86_64_clone.cpp</in>
-                <in>ad_x86_64_expand.cpp</in>
-                <in>ad_x86_64_format.cpp</in>
-                <in>ad_x86_64_gen.cpp</in>
-                <in>ad_x86_64_misc.cpp</in>
-                <in>ad_x86_64_peephole.cpp</in>
-                <in>ad_x86_64_pipeline.cpp</in>
-                <in>dfa_x86_64.cpp</in>
-              </df>
-              <df name="jvmtifiles">
-                <in>bytecodeInterpreterWithChecks.cpp</in>
-                <in>jvmtiEnter.cpp</in>
-                <in>jvmtiEnterTrace.cpp</in>
-              </df>
-            </df>
-            <df name="support">
-              <df name="dtrace">
-                <in>JvmOffsets.cpp</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="macosx-x86_64-normal-server-release">
-          <df name="hotspot">
-            <df name="variant-server">
-              <df name="gensrc">
-                <df name="adfiles">
-                  <in>ad_x86_64.cpp</in>
-                  <in>ad_x86_64_clone.cpp</in>
-                  <in>ad_x86_64_expand.cpp</in>
-                  <in>ad_x86_64_format.cpp</in>
-                  <in>ad_x86_64_gen.cpp</in>
-                  <in>ad_x86_64_misc.cpp</in>
-                  <in>ad_x86_64_peephole.cpp</in>
-                  <in>ad_x86_64_pipeline.cpp</in>
-                  <in>dfa_x86_64.cpp</in>
-                </df>
-                <df name="jvmtifiles">
-                  <in>bytecodeInterpreterWithChecks.cpp</in>
-                  <in>jvmtiEnter.cpp</in>
-                  <in>jvmtiEnterTrace.cpp</in>
-                </df>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="support">
-          <df name="gensrc">
-            <df name="java.desktop">
-              <df name="_x11wrappers">
-                <in>sizer.64.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-      </df>
-      <df name="make">
-        <df name="data">
-          <df name="charsetmapping">
-            <in>Big5.map</in>
-            <in>Big5_HKSCS.map</in>
-            <in>Big5_Solaris.map</in>
-            <in>EUC_CN.map</in>
-            <in>EUC_JP.map</in>
-            <in>EUC_JP_LINUX.map</in>
-            <in>EUC_JP_Open.map</in>
-            <in>EUC_KR.map</in>
-            <in>EUC_TW.map</in>
-            <in>GB18030.map</in>
-            <in>GBK.map</in>
-            <in>HKSCS2001.map</in>
-            <in>HKSCS2008.map</in>
-            <in>HKSCS_XP.map</in>
-            <in>IBM037.map</in>
-            <in>IBM1006.map</in>
-            <in>IBM1025.map</in>
-            <in>IBM1026.map</in>
-            <in>IBM1046.map</in>
-            <in>IBM1047.map</in>
-            <in>IBM1097.map</in>
-            <in>IBM1098.map</in>
-            <in>IBM1112.map</in>
-            <in>IBM1122.map</in>
-            <in>IBM1123.map</in>
-            <in>IBM1124.map</in>
-            <in>IBM1129.map</in>
-            <in>IBM1140.map</in>
-            <in>IBM1141.map</in>
-            <in>IBM1142.map</in>
-            <in>IBM1143.map</in>
-            <in>IBM1144.map</in>
-            <in>IBM1145.map</in>
-            <in>IBM1146.map</in>
-            <in>IBM1147.map</in>
-            <in>IBM1148.map</in>
-            <in>IBM1149.map</in>
-            <in>IBM1166.map</in>
-            <in>IBM1364.map</in>
-            <in>IBM1381.map</in>
-            <in>IBM1383.map</in>
-            <in>IBM273.map</in>
-            <in>IBM277.map</in>
-            <in>IBM278.map</in>
-            <in>IBM280.map</in>
-            <in>IBM284.map</in>
-            <in>IBM285.map</in>
-            <in>IBM290.map</in>
-            <in>IBM297.map</in>
-            <in>IBM300.map</in>
-            <in>IBM420.map</in>
-            <in>IBM424.map</in>
-            <in>IBM437.map</in>
-            <in>IBM500.map</in>
-            <in>IBM737.map</in>
-            <in>IBM775.map</in>
-            <in>IBM833.map</in>
-            <in>IBM838.map</in>
-            <in>IBM850.map</in>
-            <in>IBM852.map</in>
-            <in>IBM855.map</in>
-            <in>IBM856.map</in>
-            <in>IBM857.map</in>
-            <in>IBM858.map</in>
-            <in>IBM860.map</in>
-            <in>IBM861.map</in>
-            <in>IBM862.map</in>
-            <in>IBM863.map</in>
-            <in>IBM864.map</in>
-            <in>IBM865.map</in>
-            <in>IBM866.map</in>
-            <in>IBM868.map</in>
-            <in>IBM869.map</in>
-            <in>IBM870.map</in>
-            <in>IBM871.map</in>
-            <in>IBM874.map</in>
-            <in>IBM875.map</in>
-            <in>IBM918.map</in>
-            <in>IBM921.map</in>
-            <in>IBM922.map</in>
-            <in>IBM930.map</in>
-            <in>IBM933.map</in>
-            <in>IBM935.map</in>
-            <in>IBM937.map</in>
-            <in>IBM939.map</in>
-            <in>IBM942.map</in>
-            <in>IBM943.map</in>
-            <in>IBM948.map</in>
-            <in>IBM949.map</in>
-            <in>IBM950.map</in>
-            <in>IBM970.map</in>
-            <in>ISO_8859_11.map</in>
-            <in>ISO_8859_13.map</in>
-            <in>ISO_8859_15.map</in>
-            <in>ISO_8859_16.map</in>
-            <in>ISO_8859_2.map</in>
-            <in>ISO_8859_3.map</in>
-            <in>ISO_8859_4.map</in>
-            <in>ISO_8859_5.map</in>
-            <in>ISO_8859_6.map</in>
-            <in>ISO_8859_7.map</in>
-            <in>ISO_8859_8.map</in>
-            <in>ISO_8859_9.map</in>
-            <in>JIS_X_0201.map</in>
-            <in>JIS_X_0208.map</in>
-            <in>JIS_X_0208_MS5022X.map</in>
-            <in>JIS_X_0208_MS932.map</in>
-            <in>JIS_X_0208_Solaris.map</in>
-            <in>JIS_X_0212.map</in>
-            <in>JIS_X_0212_MS5022X.map</in>
-            <in>JIS_X_0212_Solaris.map</in>
-            <in>Johab.map</in>
-            <in>KOI8_R.map</in>
-            <in>KOI8_U.map</in>
-            <in>MS1250.map</in>
-            <in>MS1251.map</in>
-            <in>MS1252.map</in>
-            <in>MS1253.map</in>
-            <in>MS1254.map</in>
-            <in>MS1255.map</in>
-            <in>MS1256.map</in>
-            <in>MS1257.map</in>
-            <in>MS1258.map</in>
-            <in>MS874.map</in>
-            <in>MS932.map</in>
-            <in>MS936.map</in>
-            <in>MS949.map</in>
-            <in>MS950.map</in>
-            <in>MS950_HKSCS_XP.map</in>
-            <in>MacArabic.map</in>
-            <in>MacCentralEurope.map</in>
-            <in>MacCroatian.map</in>
-            <in>MacCyrillic.map</in>
-            <in>MacDingbat.map</in>
-            <in>MacGreek.map</in>
-            <in>MacHebrew.map</in>
-            <in>MacIceland.map</in>
-            <in>MacRoman.map</in>
-            <in>MacRomania.map</in>
-            <in>MacSymbol.map</in>
-            <in>MacThai.map</in>
-            <in>MacTurkish.map</in>
-            <in>MacUkraine.map</in>
-            <in>PCK.map</in>
-            <in>SJIS.map</in>
-            <in>TIS_620.map</in>
-            <in>sjis0213.map</in>
-          </df>
-          <df name="dtdbuilder">
-            <in>public.map</in>
-          </df>
-          <df name="lsrdata">
-            <in>language-subtag-registry.txt</in>
-          </df>
-          <df name="symbols">
-            <in>java.activation-6.sym.txt</in>
-            <in>java.activation-7.sym.txt</in>
-            <in>java.activation-8.sym.txt</in>
-            <in>java.annotations.common-6.sym.txt</in>
-            <in>java.annotations.common-7.sym.txt</in>
-            <in>java.annotations.common-8.sym.txt</in>
-            <in>java.base-6.sym.txt</in>
-            <in>java.base-7.sym.txt</in>
-            <in>java.base-8.sym.txt</in>
-            <in>java.compiler-6.sym.txt</in>
-            <in>java.compiler-7.sym.txt</in>
-            <in>java.compiler-8.sym.txt</in>
-            <in>java.corba-6.sym.txt</in>
-            <in>java.corba-7.sym.txt</in>
-            <in>java.corba-8.sym.txt</in>
-            <in>java.datatransfer-6.sym.txt</in>
-            <in>java.datatransfer-7.sym.txt</in>
-            <in>java.datatransfer-8.sym.txt</in>
-            <in>java.desktop-6.sym.txt</in>
-            <in>java.desktop-7.sym.txt</in>
-            <in>java.desktop-8.sym.txt</in>
-            <in>java.instrument-6.sym.txt</in>
-            <in>java.instrument-7.sym.txt</in>
-            <in>java.instrument-8.sym.txt</in>
-            <in>java.logging-6.sym.txt</in>
-            <in>java.logging-7.sym.txt</in>
-            <in>java.logging-8.sym.txt</in>
-            <in>java.management-6.sym.txt</in>
-            <in>java.management-7.sym.txt</in>
-            <in>java.management-8.sym.txt</in>
-            <in>java.naming-6.sym.txt</in>
-            <in>java.naming-7.sym.txt</in>
-            <in>java.naming-8.sym.txt</in>
-            <in>java.prefs-6.sym.txt</in>
-            <in>java.prefs-7.sym.txt</in>
-            <in>java.prefs-8.sym.txt</in>
-            <in>java.rmi-6.sym.txt</in>
-            <in>java.rmi-7.sym.txt</in>
-            <in>java.rmi-8.sym.txt</in>
-            <in>java.scripting-6.sym.txt</in>
-            <in>java.scripting-7.sym.txt</in>
-            <in>java.scripting-8.sym.txt</in>
-            <in>java.security.jgss-6.sym.txt</in>
-            <in>java.security.jgss-7.sym.txt</in>
-            <in>java.security.jgss-8.sym.txt</in>
-            <in>java.security.sasl-6.sym.txt</in>
-            <in>java.security.sasl-7.sym.txt</in>
-            <in>java.security.sasl-8.sym.txt</in>
-            <in>java.sql-6.sym.txt</in>
-            <in>java.sql-7.sym.txt</in>
-            <in>java.sql-8.sym.txt</in>
-            <in>java.sql.rowset-6.sym.txt</in>
-            <in>java.sql.rowset-7.sym.txt</in>
-            <in>java.sql.rowset-8.sym.txt</in>
-            <in>java.transaction-6.sym.txt</in>
-            <in>java.transaction-7.sym.txt</in>
-            <in>java.transaction-8.sym.txt</in>
-            <in>java.xml-6.sym.txt</in>
-            <in>java.xml-7.sym.txt</in>
-            <in>java.xml-8.sym.txt</in>
-            <in>java.xml.bind-6.sym.txt</in>
-            <in>java.xml.bind-7.sym.txt</in>
-            <in>java.xml.bind-8.sym.txt</in>
-            <in>java.xml.crypto-6.sym.txt</in>
-            <in>java.xml.crypto-7.sym.txt</in>
-            <in>java.xml.crypto-8.sym.txt</in>
-            <in>java.xml.ws-6.sym.txt</in>
-            <in>java.xml.ws-7.sym.txt</in>
-            <in>java.xml.ws-8.sym.txt</in>
-            <in>jdk.httpserver-6.sym.txt</in>
-            <in>jdk.httpserver-7.sym.txt</in>
-            <in>jdk.httpserver-8.sym.txt</in>
-            <in>jdk.management-6.sym.txt</in>
-            <in>jdk.management-7.sym.txt</in>
-            <in>jdk.management-8.sym.txt</in>
-            <in>jdk.scripting.nashorn-6.sym.txt</in>
-            <in>jdk.scripting.nashorn-7.sym.txt</in>
-            <in>jdk.scripting.nashorn-8.sym.txt</in>
-            <in>jdk.sctp-6.sym.txt</in>
-            <in>jdk.sctp-7.sym.txt</in>
-            <in>jdk.sctp-8.sym.txt</in>
-            <in>jdk.security.auth-6.sym.txt</in>
-            <in>jdk.security.auth-7.sym.txt</in>
-            <in>jdk.security.auth-8.sym.txt</in>
-            <in>jdk.security.jgss-6.sym.txt</in>
-            <in>jdk.security.jgss-7.sym.txt</in>
-            <in>jdk.security.jgss-8.sym.txt</in>
-          </df>
-          <df name="unicodedata">
-            <in>PropList.txt</in>
-            <in>Scripts.txt</in>
-            <in>SpecialCasing.txt</in>
-            <in>UnicodeData.txt</in>
-          </df>
-          <df name="x11wrappergen">
-            <in>functions.txt</in>
-            <in>xlibtypes.txt</in>
-          </df>
-        </df>
-        <df name="devkit">
-          <in>solaris11.1-package-list.txt</in>
-        </df>
-        <df name="hotspot">
-          <df name="src">
-            <df name="native">
-              <df name="dtrace">
-                <in>generateJvmOffsets.cpp</in>
-                <in>generateJvmOffsets.h</in>
-                <in>generateJvmOffsetsMain.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="langtools">
-          <df name="test">
-            <df name="lib">
-              <in>classes.gold.txt</in>
-              <in>src.gold.txt</in>
-            </df>
-            <in>HelloWorld.apt.gold.txt</in>
-            <in>HelloWorld.gold.h</in>
-            <in>HelloWorld.javadoc.gold.txt</in>
-            <in>HelloWorld.javap.gold.txt</in>
-            <in>contents.gold.txt</in>
-          </df>
-        </df>
-        <df name="nashorn">
-          <df name="exclude">
-            <in>exclude_list.txt</in>
-            <in>exclude_list_cc.txt</in>
-          </df>
-        </df>
-        <df name="src">
-          <df name="native">
-            <in>fixpath.c</in>
-          </df>
-        </df>
-      </df>
-      <df name="src">
-        <df name="demo">
-          <df name="share">
-            <df name="java2d">
-              <df name="J2DBench">
-                <df name="resources">
-                  <df name="textdata">
-                    <in>arabic.ut8.txt</in>
-                    <in>english.ut8.txt</in>
-                    <in>greek.ut8.txt</in>
-                    <in>hebrew.ut8.txt</in>
-                    <in>hindi.ut8.txt</in>
-                    <in>japanese.ut8.txt</in>
-                    <in>korean.ut8.txt</in>
-                    <in>thai.ut8.txt</in>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="jfc">
-              <df name="FileChooserDemo">
-                <in>README.txt</in>
-              </df>
-              <df name="Font2DTest">
-                <in>README.txt</in>
-              </df>
-              <df name="Metalworks">
-                <in>README.txt</in>
-              </df>
-              <df name="Notepad">
-                <in>README.txt</in>
-              </df>
-              <df name="SampleTree">
-                <in>README.txt</in>
-              </df>
-              <df name="SwingApplet">
-                <in>README.txt</in>
-              </df>
-              <df name="TableExample">
-                <in>README.txt</in>
-              </df>
-              <df name="TransparentRuler">
-                <in>README.txt</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="hotspot">
-          <df name="cpu">
-            <df name="aarch64">
-              <in>aarch64.ad</in>
-              <in>aarch64Test.cpp</in>
-              <in>aarch64_call.cpp</in>
-              <in>aarch64_linkage.S</in>
-              <in>abstractInterpreter_aarch64.cpp</in>
-              <in>assembler_aarch64.cpp</in>
-              <in>assembler_aarch64.hpp</in>
-              <in>assembler_aarch64.inline.hpp</in>
-              <in>bytecodes_aarch64.cpp</in>
-              <in>bytecodes_aarch64.hpp</in>
-              <in>bytes_aarch64.hpp</in>
-              <in>c1_CodeStubs_aarch64.cpp</in>
-              <in>c1_Defs_aarch64.hpp</in>
-              <in>c1_FpuStackSim_aarch64.cpp</in>
-              <in>c1_FpuStackSim_aarch64.hpp</in>
-              <in>c1_FrameMap_aarch64.cpp</in>
-              <in>c1_FrameMap_aarch64.hpp</in>
-              <in>c1_LIRAssembler_aarch64.cpp</in>
-              <in>c1_LIRAssembler_aarch64.hpp</in>
-              <in>c1_LIRGenerator_aarch64.cpp</in>
-              <in>c1_LIR_aarch64.cpp</in>
-              <in>c1_LinearScan_aarch64.cpp</in>
-              <in>c1_LinearScan_aarch64.hpp</in>
-              <in>c1_MacroAssembler_aarch64.cpp</in>
-              <in>c1_MacroAssembler_aarch64.hpp</in>
-              <in>c1_Runtime1_aarch64.cpp</in>
-              <in>c1_globals_aarch64.hpp</in>
-              <in>c2_globals_aarch64.hpp</in>
-              <in>c2_init_aarch64.cpp</in>
-              <in>codeBuffer_aarch64.hpp</in>
-              <in>compiledIC_aarch64.cpp</in>
-              <in>copy_aarch64.hpp</in>
-              <in>cpustate_aarch64.hpp</in>
-              <in>decode_aarch64.hpp</in>
-              <in>depChecker_aarch64.cpp</in>
-              <in>depChecker_aarch64.hpp</in>
-              <in>disassembler_aarch64.hpp</in>
-              <in>frame_aarch64.cpp</in>
-              <in>frame_aarch64.hpp</in>
-              <in>frame_aarch64.inline.hpp</in>
-              <in>globalDefinitions_aarch64.hpp</in>
-              <in>globals_aarch64.hpp</in>
-              <in>icBuffer_aarch64.cpp</in>
-              <in>icache_aarch64.cpp</in>
-              <in>icache_aarch64.hpp</in>
-              <in>immediate_aarch64.cpp</in>
-              <in>immediate_aarch64.hpp</in>
-              <in>interp_masm_aarch64.cpp</in>
-              <in>interp_masm_aarch64.hpp</in>
-              <in>interpreterRT_aarch64.cpp</in>
-              <in>interpreterRT_aarch64.hpp</in>
-              <in>javaFrameAnchor_aarch64.hpp</in>
-              <in>jniFastGetField_aarch64.cpp</in>
-              <in>jniTypes_aarch64.hpp</in>
-              <in>jni_aarch64.h</in>
-              <in>jvmciCodeInstaller_aarch64.cpp</in>
-              <in>macroAssembler_aarch64.cpp</in>
-              <in>macroAssembler_aarch64.hpp</in>
-              <in>macroAssembler_aarch64.inline.hpp</in>
-              <in>methodHandles_aarch64.cpp</in>
-              <in>methodHandles_aarch64.hpp</in>
-              <in>nativeInst_aarch64.cpp</in>
-              <in>nativeInst_aarch64.hpp</in>
-              <in>registerMap_aarch64.hpp</in>
-              <in>register_aarch64.cpp</in>
-              <in>register_aarch64.hpp</in>
-              <in>register_definitions_aarch64.cpp</in>
-              <in>relocInfo_aarch64.cpp</in>
-              <in>relocInfo_aarch64.hpp</in>
-              <in>runtime_aarch64.cpp</in>
-              <in>sharedRuntime_aarch64.cpp</in>
-              <in>stubGenerator_aarch64.cpp</in>
-              <in>stubRoutines_aarch64.cpp</in>
-              <in>stubRoutines_aarch64.hpp</in>
-              <in>templateInterpreterGenerator_aarch64.cpp</in>
-              <in>templateTable_aarch64.cpp</in>
-              <in>templateTable_aarch64.hpp</in>
-              <in>vmStructs_aarch64.hpp</in>
-              <in>vm_version_aarch64.cpp</in>
-              <in>vm_version_aarch64.hpp</in>
-              <in>vmreg_aarch64.cpp</in>
-              <in>vmreg_aarch64.hpp</in>
-              <in>vmreg_aarch64.inline.hpp</in>
-              <in>vtableStubs_aarch64.cpp</in>
-            </df>
-            <df name="arm">
-              <in>abstractInterpreter_arm.cpp</in>
-              <in>arm.ad</in>
-              <in>arm_32.ad</in>
-              <in>arm_64.ad</in>
-              <in>assembler_arm.cpp</in>
-              <in>assembler_arm.hpp</in>
-              <in>assembler_arm.inline.hpp</in>
-              <in>assembler_arm_32.cpp</in>
-              <in>assembler_arm_32.hpp</in>
-              <in>assembler_arm_64.cpp</in>
-              <in>assembler_arm_64.hpp</in>
-              <in>bytes_arm.hpp</in>
-              <in>c1_CodeStubs_arm.cpp</in>
-              <in>c1_Defs_arm.hpp</in>
-              <in>c1_FpuStackSim_arm.cpp</in>
-              <in>c1_FpuStackSim_arm.hpp</in>
-              <in>c1_FrameMap_arm.cpp</in>
-              <in>c1_FrameMap_arm.hpp</in>
-              <in>c1_LIRAssembler_arm.cpp</in>
-              <in>c1_LIRAssembler_arm.hpp</in>
-              <in>c1_LIRGenerator_arm.cpp</in>
-              <in>c1_LIRGenerator_arm.hpp</in>
-              <in>c1_LIR_arm.cpp</in>
-              <in>c1_LinearScan_arm.cpp</in>
-              <in>c1_LinearScan_arm.hpp</in>
-              <in>c1_MacroAssembler_arm.cpp</in>
-              <in>c1_MacroAssembler_arm.hpp</in>
-              <in>c1_Runtime1_arm.cpp</in>
-              <in>c1_globals_arm.hpp</in>
-              <in>c2_globals_arm.hpp</in>
-              <in>codeBuffer_arm.hpp</in>
-              <in>compiledIC_arm.cpp</in>
-              <in>copy_arm.hpp</in>
-              <in>depChecker_arm.cpp</in>
-              <in>depChecker_arm.hpp</in>
-              <in>disassembler_arm.hpp</in>
-              <in>frame_arm.cpp</in>
-              <in>frame_arm.hpp</in>
-              <in>frame_arm.inline.hpp</in>
-              <in>globalDefinitions_arm.hpp</in>
-              <in>globals_arm.hpp</in>
-              <in>icBuffer_arm.cpp</in>
-              <in>icache_arm.cpp</in>
-              <in>icache_arm.hpp</in>
-              <in>interp_masm_arm.cpp</in>
-              <in>interp_masm_arm.hpp</in>
-              <in>interpreterRT_arm.cpp</in>
-              <in>interpreterRT_arm.hpp</in>
-              <in>javaFrameAnchor_arm.hpp</in>
-              <in>jniFastGetField_arm.cpp</in>
-              <in>jniTypes_arm.hpp</in>
-              <in>jni_arm.h</in>
-              <in>jvmciCodeInstaller_arm.cpp</in>
-              <in>macroAssembler_arm.cpp</in>
-              <in>macroAssembler_arm.hpp</in>
-              <in>macroAssembler_arm.inline.hpp</in>
-              <in>methodHandles_arm.cpp</in>
-              <in>methodHandles_arm.hpp</in>
-              <in>nativeInst_arm.hpp</in>
-              <in>nativeInst_arm_32.cpp</in>
-              <in>nativeInst_arm_32.hpp</in>
-              <in>nativeInst_arm_64.cpp</in>
-              <in>nativeInst_arm_64.hpp</in>
-              <in>registerMap_arm.hpp</in>
-              <in>register_arm.cpp</in>
-              <in>register_arm.hpp</in>
-              <in>register_definitions_arm.cpp</in>
-              <in>relocInfo_arm.cpp</in>
-              <in>relocInfo_arm.hpp</in>
-              <in>runtime_arm.cpp</in>
-              <in>sharedRuntime_arm.cpp</in>
-              <in>stubGenerator_arm.cpp</in>
-              <in>stubRoutinesCrypto_arm.cpp</in>
-              <in>stubRoutines_arm.cpp</in>
-              <in>stubRoutines_arm.hpp</in>
-              <in>templateInterpreterGenerator_arm.cpp</in>
-              <in>templateTable_arm.cpp</in>
-              <in>templateTable_arm.hpp</in>
-              <in>vmStructs_arm.hpp</in>
-              <in>vm_version_arm.hpp</in>
-              <in>vm_version_arm_32.cpp</in>
-              <in>vm_version_arm_64.cpp</in>
-              <in>vmreg_arm.cpp</in>
-              <in>vmreg_arm.hpp</in>
-              <in>vmreg_arm.inline.hpp</in>
-              <in>vtableStubs_arm.cpp</in>
-            </df>
-            <df name="ppc">
-              <in>abstractInterpreter_ppc.cpp</in>
-              <in>assembler_ppc.cpp</in>
-              <in>assembler_ppc.hpp</in>
-              <in>assembler_ppc.inline.hpp</in>
-              <in>bytes_ppc.hpp</in>
-              <in>c1_CodeStubs_ppc.cpp</in>
-              <in>c1_Defs_ppc.hpp</in>
-              <in>c1_FpuStackSim_ppc.hpp</in>
-              <in>c1_FrameMap_ppc.cpp</in>
-              <in>c1_FrameMap_ppc.hpp</in>
-              <in>c1_LIRAssembler_ppc.cpp</in>
-              <in>c1_LIRAssembler_ppc.hpp</in>
-              <in>c1_LIRGenerator_ppc.cpp</in>
-              <in>c1_LIR_ppc.cpp</in>
-              <in>c1_LinearScan_ppc.cpp</in>
-              <in>c1_LinearScan_ppc.hpp</in>
-              <in>c1_MacroAssembler_ppc.cpp</in>
-              <in>c1_MacroAssembler_ppc.hpp</in>
-              <in>c1_Runtime1_ppc.cpp</in>
-              <in>c1_globals_ppc.hpp</in>
-              <in>c2_globals_ppc.hpp</in>
-              <in>c2_init_ppc.cpp</in>
-              <in>codeBuffer_ppc.hpp</in>
-              <in>compiledIC_ppc.cpp</in>
-              <in>copy_ppc.hpp</in>
-              <in>depChecker_ppc.hpp</in>
-              <in>disassembler_ppc.hpp</in>
-              <in>frame_ppc.cpp</in>
-              <in>frame_ppc.hpp</in>
-              <in>frame_ppc.inline.hpp</in>
-              <in>globalDefinitions_ppc.hpp</in>
-              <in>globals_ppc.hpp</in>
-              <in>icBuffer_ppc.cpp</in>
-              <in>icache_ppc.cpp</in>
-              <in>icache_ppc.hpp</in>
-              <in>interp_masm_ppc.hpp</in>
-              <in>interp_masm_ppc_64.cpp</in>
-              <in>interpreterRT_ppc.cpp</in>
-              <in>interpreterRT_ppc.hpp</in>
-              <in>javaFrameAnchor_ppc.hpp</in>
-              <in>jniFastGetField_ppc.cpp</in>
-              <in>jniTypes_ppc.hpp</in>
-              <in>jni_ppc.h</in>
-              <in>jvmciCodeInstaller_ppc.cpp</in>
-              <in>macroAssembler_ppc.cpp</in>
-              <in>macroAssembler_ppc.hpp</in>
-              <in>macroAssembler_ppc.inline.hpp</in>
-              <in>macroAssembler_ppc_sha.cpp</in>
-              <in>methodHandles_ppc.cpp</in>
-              <in>methodHandles_ppc.hpp</in>
-              <in>nativeInst_ppc.cpp</in>
-              <in>nativeInst_ppc.hpp</in>
-              <in>ppc.ad</in>
-              <in>registerMap_ppc.hpp</in>
-              <in>register_definitions_ppc.cpp</in>
-              <in>register_ppc.cpp</in>
-              <in>register_ppc.hpp</in>
-              <in>relocInfo_ppc.cpp</in>
-              <in>relocInfo_ppc.hpp</in>
-              <in>runtime_ppc.cpp</in>
-              <in>sharedRuntime_ppc.cpp</in>
-              <in>stubGenerator_ppc.cpp</in>
-              <in>stubRoutines_ppc.hpp</in>
-              <in>stubRoutines_ppc_64.cpp</in>
-              <in>templateInterpreterGenerator_ppc.cpp</in>
-              <in>templateTable_ppc.hpp</in>
-              <in>templateTable_ppc_64.cpp</in>
-              <in>vmStructs_ppc.hpp</in>
-              <in>vm_version_ppc.cpp</in>
-              <in>vm_version_ppc.hpp</in>
-              <in>vmreg_ppc.cpp</in>
-              <in>vmreg_ppc.hpp</in>
-              <in>vmreg_ppc.inline.hpp</in>
-              <in>vtableStubs_ppc_64.cpp</in>
-            </df>
-            <df name="s390">
-              <in>abstractInterpreter_s390.cpp</in>
-              <in>assembler_s390.cpp</in>
-              <in>assembler_s390.hpp</in>
-              <in>assembler_s390.inline.hpp</in>
-              <in>bytes_s390.hpp</in>
-              <in>c1_CodeStubs_s390.cpp</in>
-              <in>c1_Defs_s390.hpp</in>
-              <in>c1_FpuStackSim_s390.hpp</in>
-              <in>c1_FrameMap_s390.cpp</in>
-              <in>c1_FrameMap_s390.hpp</in>
-              <in>c1_LIRAssembler_s390.cpp</in>
-              <in>c1_LIRAssembler_s390.hpp</in>
-              <in>c1_LIRGenerator_s390.cpp</in>
-              <in>c1_LIR_s390.cpp</in>
-              <in>c1_LinearScan_s390.cpp</in>
-              <in>c1_LinearScan_s390.hpp</in>
-              <in>c1_MacroAssembler_s390.cpp</in>
-              <in>c1_MacroAssembler_s390.hpp</in>
-              <in>c1_Runtime1_s390.cpp</in>
-              <in>c1_globals_s390.hpp</in>
-              <in>c2_globals_s390.hpp</in>
-              <in>c2_init_s390.cpp</in>
-              <in>codeBuffer_s390.hpp</in>
-              <in>compiledIC_s390.cpp</in>
-              <in>copy_s390.hpp</in>
-              <in>depChecker_s390.hpp</in>
-              <in>disassembler_s390.hpp</in>
-              <in>frame_s390.cpp</in>
-              <in>frame_s390.hpp</in>
-              <in>frame_s390.inline.hpp</in>
-              <in>globalDefinitions_s390.hpp</in>
-              <in>globals_s390.hpp</in>
-              <in>icBuffer_s390.cpp</in>
-              <in>icache_s390.cpp</in>
-              <in>icache_s390.hpp</in>
-              <in>interp_masm_s390.cpp</in>
-              <in>interp_masm_s390.hpp</in>
-              <in>interpreterRT_s390.cpp</in>
-              <in>interpreterRT_s390.hpp</in>
-              <in>javaFrameAnchor_s390.hpp</in>
-              <in>jniFastGetField_s390.cpp</in>
-              <in>jniTypes_s390.hpp</in>
-              <in>jni_s390.h</in>
-              <in>jvmciCodeInstaller_s390.cpp</in>
-              <in>macroAssembler_s390.cpp</in>
-              <in>macroAssembler_s390.hpp</in>
-              <in>macroAssembler_s390.inline.hpp</in>
-              <in>methodHandles_s390.cpp</in>
-              <in>methodHandles_s390.hpp</in>
-              <in>nativeInst_s390.cpp</in>
-              <in>nativeInst_s390.hpp</in>
-              <in>registerMap_s390.hpp</in>
-              <in>registerSaver_s390.hpp</in>
-              <in>register_definitions_s390.cpp</in>
-              <in>register_s390.cpp</in>
-              <in>register_s390.hpp</in>
-              <in>relocInfo_s390.cpp</in>
-              <in>relocInfo_s390.hpp</in>
-              <in>runtime_s390.cpp</in>
-              <in>s390.ad</in>
-              <in>sharedRuntime_s390.cpp</in>
-              <in>stubGenerator_s390.cpp</in>
-              <in>stubRoutines_s390.cpp</in>
-              <in>stubRoutines_s390.hpp</in>
-              <in>templateInterpreterGenerator_s390.cpp</in>
-              <in>templateTable_s390.cpp</in>
-              <in>templateTable_s390.hpp</in>
-              <in>vmStructs_s390.hpp</in>
-              <in>vm_version_s390.cpp</in>
-              <in>vm_version_s390.hpp</in>
-              <in>vmreg_s390.cpp</in>
-              <in>vmreg_s390.hpp</in>
-              <in>vmreg_s390.inline.hpp</in>
-              <in>vtableStubs_s390.cpp</in>
-            </df>
-            <df name="sparc">
-              <in>abstractInterpreter_sparc.cpp</in>
-              <in>args.cc</in>
-              <in>assembler_sparc.cpp</in>
-              <in>assembler_sparc.hpp</in>
-              <in>assembler_sparc.inline.hpp</in>
-              <in>bytes_sparc.hpp</in>
-              <in>c1_CodeStubs_sparc.cpp</in>
-              <in>c1_Defs_sparc.hpp</in>
-              <in>c1_FpuStackSim_sparc.cpp</in>
-              <in>c1_FpuStackSim_sparc.hpp</in>
-              <in>c1_FrameMap_sparc.cpp</in>
-              <in>c1_FrameMap_sparc.hpp</in>
-              <in>c1_LIRAssembler_sparc.cpp</in>
-              <in>c1_LIRAssembler_sparc.hpp</in>
-              <in>c1_LIRGenerator_sparc.cpp</in>
-              <in>c1_LIR_sparc.cpp</in>
-              <in>c1_LinearScan_sparc.cpp</in>
-              <in>c1_LinearScan_sparc.hpp</in>
-              <in>c1_MacroAssembler_sparc.cpp</in>
-              <in>c1_MacroAssembler_sparc.hpp</in>
-              <in>c1_Runtime1_sparc.cpp</in>
-              <in>c1_globals_sparc.hpp</in>
-              <in>c2_globals_sparc.hpp</in>
-              <in>c2_init_sparc.cpp</in>
-              <in>codeBuffer_sparc.hpp</in>
-              <in>compiledIC_sparc.cpp</in>
-              <in>copy_sparc.hpp</in>
-              <in>depChecker_sparc.cpp</in>
-              <in>depChecker_sparc.hpp</in>
-              <in>disassembler_sparc.hpp</in>
-              <in>frame_sparc.cpp</in>
-              <in>frame_sparc.hpp</in>
-              <in>frame_sparc.inline.hpp</in>
-              <in>globalDefinitions_sparc.hpp</in>
-              <in>globals_sparc.hpp</in>
-              <in>icBuffer_sparc.cpp</in>
-              <in>icache_sparc.cpp</in>
-              <in>icache_sparc.hpp</in>
-              <in>interp_masm_sparc.cpp</in>
-              <in>interp_masm_sparc.hpp</in>
-              <in>interpreterRT_sparc.cpp</in>
-              <in>interpreterRT_sparc.hpp</in>
-              <in>javaFrameAnchor_sparc.hpp</in>
-              <in>jniFastGetField_sparc.cpp</in>
-              <in>jniTypes_sparc.hpp</in>
-              <in>jni_sparc.h</in>
-              <in>jvmciCodeInstaller_sparc.cpp</in>
-              <in>macroAssembler_sparc.cpp</in>
-              <in>macroAssembler_sparc.hpp</in>
-              <in>macroAssembler_sparc.inline.hpp</in>
-              <in>memset_with_concurrent_readers_sparc.cpp</in>
-              <in>methodHandles_sparc.cpp</in>
-              <in>methodHandles_sparc.hpp</in>
-              <in>nativeInst_sparc.cpp</in>
-              <in>nativeInst_sparc.hpp</in>
-              <in>registerMap_sparc.hpp</in>
-              <in>register_definitions_sparc.cpp</in>
-              <in>register_sparc.cpp</in>
-              <in>register_sparc.hpp</in>
-              <in>relocInfo_sparc.cpp</in>
-              <in>relocInfo_sparc.hpp</in>
-              <in>runtime_sparc.cpp</in>
-              <in>sharedRuntime_sparc.cpp</in>
-              <in>sparc.ad</in>
-              <in>stubGenerator_sparc.cpp</in>
-              <in>stubRoutines_sparc.cpp</in>
-              <in>stubRoutines_sparc.hpp</in>
-              <in>templateInterpreterGenerator_sparc.cpp</in>
-              <in>templateTable_sparc.cpp</in>
-              <in>templateTable_sparc.hpp</in>
-              <in>vmStructs_sparc.hpp</in>
-              <in>vm_version_sparc.cpp</in>
-              <in>vm_version_sparc.hpp</in>
-              <in>vmreg_sparc.cpp</in>
-              <in>vmreg_sparc.hpp</in>
-              <in>vmreg_sparc.inline.hpp</in>
-              <in>vtableStubs_sparc.cpp</in>
-            </df>
-            <df name="x86">
-              <in>abstractInterpreter_x86.cpp</in>
-              <in>assembler_x86.cpp</in>
-              <in>assembler_x86.hpp</in>
-              <in>assembler_x86.inline.hpp</in>
-              <in>bytes_x86.hpp</in>
-              <in>c1_CodeStubs_x86.cpp</in>
-              <in>c1_Defs_x86.hpp</in>
-              <in>c1_FpuStackSim_x86.cpp</in>
-              <in>c1_FpuStackSim_x86.hpp</in>
-              <in>c1_FrameMap_x86.cpp</in>
-              <in>c1_FrameMap_x86.hpp</in>
-              <in>c1_LIRAssembler_x86.cpp</in>
-              <in>c1_LIRAssembler_x86.hpp</in>
-              <in>c1_LIRGenerator_x86.cpp</in>
-              <in>c1_LIR_x86.cpp</in>
-              <in>c1_LinearScan_x86.cpp</in>
-              <in>c1_LinearScan_x86.hpp</in>
-              <in>c1_MacroAssembler_x86.cpp</in>
-              <in>c1_MacroAssembler_x86.hpp</in>
-              <in>c1_Runtime1_x86.cpp</in>
-              <in>c1_globals_x86.hpp</in>
-              <in>c2_globals_x86.hpp</in>
-              <in>c2_init_x86.cpp</in>
-              <in>codeBuffer_x86.hpp</in>
-              <in>compiledIC_aot_x86_64.cpp</in>
-              <in>compiledIC_x86.cpp</in>
-              <in>copy_x86.hpp</in>
-              <in>crc32c.h</in>
-              <in>depChecker_x86.cpp</in>
-              <in>depChecker_x86.hpp</in>
-              <in>disassembler_x86.hpp</in>
-              <in>frame_x86.cpp</in>
-              <in>frame_x86.hpp</in>
-              <in>frame_x86.inline.hpp</in>
-              <in>globalDefinitions_x86.hpp</in>
-              <in>globals_x86.hpp</in>
-              <in>icBuffer_x86.cpp</in>
-              <in>icache_x86.cpp</in>
-              <in>icache_x86.hpp</in>
-              <in>interp_masm_x86.cpp</in>
-              <in>interp_masm_x86.hpp</in>
-              <in>interpreterRT_x86.hpp</in>
-              <in>interpreterRT_x86_32.cpp</in>
-              <in>interpreterRT_x86_64.cpp</in>
-              <in>javaFrameAnchor_x86.hpp</in>
-              <in>jniFastGetField_x86_32.cpp</in>
-              <in>jniFastGetField_x86_64.cpp</in>
-              <in>jniTypes_x86.hpp</in>
-              <in>jni_x86.h</in>
-              <in>jvmciCodeInstaller_x86.cpp</in>
-              <in>macroAssembler_x86.cpp</in>
-              <in>macroAssembler_x86.hpp</in>
-              <in>macroAssembler_x86.inline.hpp</in>
-              <in>macroAssembler_x86_cos.cpp</in>
-              <in>macroAssembler_x86_exp.cpp</in>
-              <in>macroAssembler_x86_log.cpp</in>
-              <in>macroAssembler_x86_log10.cpp</in>
-              <in>macroAssembler_x86_pow.cpp</in>
-              <in>macroAssembler_x86_sha.cpp</in>
-              <in>macroAssembler_x86_sin.cpp</in>
-              <in>macroAssembler_x86_tan.cpp</in>
-              <in>methodHandles_x86.cpp</in>
-              <in>methodHandles_x86.hpp</in>
-              <in>nativeInst_x86.cpp</in>
-              <in>nativeInst_x86.hpp</in>
-              <in>registerMap_x86.cpp</in>
-              <in>registerMap_x86.hpp</in>
-              <in>register_definitions_x86.cpp</in>
-              <in>register_x86.cpp</in>
-              <in>register_x86.hpp</in>
-              <in>relocInfo_x86.cpp</in>
-              <in>relocInfo_x86.hpp</in>
-              <in>runtime_x86_32.cpp</in>
-              <in>runtime_x86_64.cpp</in>
-              <in>sharedRuntime_x86.cpp</in>
-              <in>sharedRuntime_x86_32.cpp</in>
-              <in>sharedRuntime_x86_64.cpp</in>
-              <in>stubGenerator_x86_32.cpp</in>
-              <in>stubGenerator_x86_64.cpp</in>
-              <in>stubRoutines_x86.cpp</in>
-              <in>stubRoutines_x86.hpp</in>
-              <in>stubRoutines_x86_32.cpp</in>
-              <in>stubRoutines_x86_64.cpp</in>
-              <in>templateInterpreterGenerator_x86.cpp</in>
-              <in>templateInterpreterGenerator_x86_32.cpp</in>
-              <in>templateInterpreterGenerator_x86_64.cpp</in>
-              <in>templateTable_x86.cpp</in>
-              <in>templateTable_x86.hpp</in>
-              <in>vmStructs_x86.hpp</in>
-              <in>vm_version_x86.cpp</in>
-              <in>vm_version_x86.hpp</in>
-              <in>vmreg_x86.cpp</in>
-              <in>vmreg_x86.hpp</in>
-              <in>vmreg_x86.inline.hpp</in>
-              <in>vtableStubs_x86_32.cpp</in>
-              <in>vtableStubs_x86_64.cpp</in>
-              <in>x86.ad</in>
-              <in>x86_32.ad</in>
-              <in>x86_64.ad</in>
-            </df>
-            <df name="zero">
-              <in>abstractInterpreter_zero.cpp</in>
-              <in>assembler_zero.cpp</in>
-              <in>assembler_zero.hpp</in>
-              <in>assembler_zero.inline.hpp</in>
-              <in>bytecodeInterpreter_zero.cpp</in>
-              <in>bytecodeInterpreter_zero.hpp</in>
-              <in>bytecodeInterpreter_zero.inline.hpp</in>
-              <in>bytes_zero.hpp</in>
-              <in>codeBuffer_zero.hpp</in>
-              <in>compiledIC_zero.cpp</in>
-              <in>copy_zero.hpp</in>
-              <in>cppInterpreterGenerator_zero.cpp</in>
-              <in>cppInterpreter_zero.cpp</in>
-              <in>cppInterpreter_zero.hpp</in>
-              <in>depChecker_zero.cpp</in>
-              <in>depChecker_zero.hpp</in>
-              <in>disassembler_zero.cpp</in>
-              <in>disassembler_zero.hpp</in>
-              <in>entryFrame_zero.hpp</in>
-              <in>entry_zero.hpp</in>
-              <in>fakeStubFrame_zero.hpp</in>
-              <in>frame_zero.cpp</in>
-              <in>frame_zero.hpp</in>
-              <in>frame_zero.inline.hpp</in>
-              <in>globalDefinitions_zero.hpp</in>
-              <in>globals_zero.hpp</in>
-              <in>icBuffer_zero.cpp</in>
-              <in>icache_zero.cpp</in>
-              <in>icache_zero.hpp</in>
-              <in>interp_masm_zero.hpp</in>
-              <in>interpreterFrame_zero.hpp</in>
-              <in>interpreterRT_zero.cpp</in>
-              <in>interpreterRT_zero.hpp</in>
-              <in>javaFrameAnchor_zero.hpp</in>
-              <in>jniFastGetField_zero.cpp</in>
-              <in>jniTypes_zero.hpp</in>
-              <in>jni_zero.h</in>
-              <in>macroAssembler_zero.hpp</in>
-              <in>macroAssembler_zero.inline.hpp</in>
-              <in>methodHandles_zero.cpp</in>
-              <in>methodHandles_zero.hpp</in>
-              <in>nativeInst_zero.cpp</in>
-              <in>nativeInst_zero.hpp</in>
-              <in>registerMap_zero.hpp</in>
-              <in>register_zero.cpp</in>
-              <in>register_zero.hpp</in>
-              <in>relocInfo_zero.cpp</in>
-              <in>relocInfo_zero.hpp</in>
-              <in>sharedRuntime_zero.cpp</in>
-              <in>sharkFrame_zero.hpp</in>
-              <in>shark_globals_zero.hpp</in>
-              <in>stack_zero.cpp</in>
-              <in>stack_zero.hpp</in>
-              <in>stack_zero.inline.hpp</in>
-              <in>stubGenerator_zero.cpp</in>
-              <in>stubRoutines_zero.cpp</in>
-              <in>stubRoutines_zero.hpp</in>
-              <in>vmStructs_zero.hpp</in>
-              <in>vm_version_zero.cpp</in>
-              <in>vm_version_zero.hpp</in>
-              <in>vmreg_zero.cpp</in>
-              <in>vmreg_zero.hpp</in>
-              <in>vmreg_zero.inline.hpp</in>
-              <in>vtableStubs_zero.cpp</in>
-            </df>
-          </df>
-          <df name="os">
-            <df name="aix">
-              <in>attachListener_aix.cpp</in>
-              <in>c1_globals_aix.hpp</in>
-              <in>c2_globals_aix.hpp</in>
-              <in>decoder_aix.hpp</in>
-              <in>globals_aix.hpp</in>
-              <in>jvm_aix.cpp</in>
-              <in>jvm_aix.h</in>
-              <in>libo4.cpp</in>
-              <in>libo4.hpp</in>
-              <in>libodm_aix.cpp</in>
-              <in>libodm_aix.hpp</in>
-              <in>libperfstat_aix.cpp</in>
-              <in>libperfstat_aix.hpp</in>
-              <in>loadlib_aix.cpp</in>
-              <in>loadlib_aix.hpp</in>
-              <in>misc_aix.cpp</in>
-              <in>misc_aix.hpp</in>
-              <in>osThread_aix.cpp</in>
-              <in>osThread_aix.hpp</in>
-              <in>os_aix.cpp</in>
-              <in>os_aix.hpp</in>
-              <in>os_aix.inline.hpp</in>
-              <in>os_share_aix.hpp</in>
-              <in>perfMemory_aix.cpp</in>
-              <in>porting_aix.cpp</in>
-              <in>porting_aix.hpp</in>
-              <in>threadCritical_aix.cpp</in>
-              <in>vmStructs_aix.hpp</in>
-            </df>
-            <df name="bsd">
-              <in>attachListener_bsd.cpp</in>
-              <in>c1_globals_bsd.hpp</in>
-              <in>c2_globals_bsd.hpp</in>
-              <in>decoder_machO.cpp</in>
-              <in>decoder_machO.hpp</in>
-              <in>globals_bsd.hpp</in>
-              <in>jvm_bsd.cpp</in>
-              <in>jvm_bsd.h</in>
-              <in>osThread_bsd.cpp</in>
-              <in>osThread_bsd.hpp</in>
-              <in>os_bsd.cpp</in>
-              <in>os_bsd.hpp</in>
-              <in>os_bsd.inline.hpp</in>
-              <in>os_share_bsd.hpp</in>
-              <in>perfMemory_bsd.cpp</in>
-              <in>semaphore_bsd.hpp</in>
-              <in>threadCritical_bsd.cpp</in>
-              <in>vmStructs_bsd.hpp</in>
-            </df>
-            <df name="linux">
-              <in>attachListener_linux.cpp</in>
-              <in>c1_globals_linux.hpp</in>
-              <in>c2_globals_linux.hpp</in>
-              <in>decoder_linux.cpp</in>
-              <in>globals_linux.hpp</in>
-              <in>jvm_linux.cpp</in>
-              <in>jvm_linux.h</in>
-              <in>osThread_linux.cpp</in>
-              <in>osThread_linux.hpp</in>
-              <in>os_linux.cpp</in>
-              <in>os_linux.hpp</in>
-              <in>os_linux.inline.hpp</in>
-              <in>os_share_linux.hpp</in>
-              <in>perfMemory_linux.cpp</in>
-              <in>threadCritical_linux.cpp</in>
-              <in>vmStructs_linux.hpp</in>
-            </df>
-            <df name="posix">
-              <in>os_posix.cpp</in>
-              <in>os_posix.hpp</in>
-              <in>semaphore_posix.hpp</in>
-              <in>threadLocalStorage_posix.cpp</in>
-              <in>vmError_posix.cpp</in>
-            </df>
-            <df name="solaris">
-              <in>attachListener_solaris.cpp</in>
-              <in>c1_globals_solaris.hpp</in>
-              <in>c2_globals_solaris.hpp</in>
-              <in>decoder_solaris.cpp</in>
-              <in>globals_solaris.hpp</in>
-              <in>jvm_solaris.cpp</in>
-              <in>jvm_solaris.h</in>
-              <in>osThread_solaris.cpp</in>
-              <in>osThread_solaris.hpp</in>
-              <in>os_share_solaris.hpp</in>
-              <in>os_solaris.cpp</in>
-              <in>os_solaris.hpp</in>
-              <in>os_solaris.inline.hpp</in>
-              <in>perfMemory_solaris.cpp</in>
-              <in>threadCritical_solaris.cpp</in>
-              <in>vmStructs_solaris.hpp</in>
-            </df>
-            <df name="windows">
-              <in>attachListener_windows.cpp</in>
-              <in>c1_globals_windows.hpp</in>
-              <in>c2_globals_windows.hpp</in>
-              <in>decoder_windows.cpp</in>
-              <in>decoder_windows.hpp</in>
-              <in>globals_windows.hpp</in>
-              <in>jvm_windows.cpp</in>
-              <in>jvm_windows.h</in>
-              <in>osThread_windows.cpp</in>
-              <in>osThread_windows.hpp</in>
-              <in>os_share_windows.hpp</in>
-              <in>os_windows.cpp</in>
-              <in>os_windows.hpp</in>
-              <in>os_windows.inline.hpp</in>
-              <in>perfMemory_windows.cpp</in>
-              <in>semaphore_windows.hpp</in>
-              <in>sharedRuntimeRem.cpp</in>
-              <in>threadCritical_windows.cpp</in>
-              <in>threadLocalStorage_windows.cpp</in>
-              <in>vmError_windows.cpp</in>
-              <in>vmStructs_windows.hpp</in>
-              <in>windbghelp.cpp</in>
-              <in>windbghelp.hpp</in>
-            </df>
-          </df>
-          <df name="os_cpu">
-            <df name="aix_ppc">
-              <in>atomic_aix_ppc.hpp</in>
-              <in>bytes_aix_ppc.inline.hpp</in>
-              <in>globals_aix_ppc.hpp</in>
-              <in>orderAccess_aix_ppc.inline.hpp</in>
-              <in>os_aix_ppc.cpp</in>
-              <in>os_aix_ppc.hpp</in>
-              <in>prefetch_aix_ppc.inline.hpp</in>
-              <in>thread_aix_ppc.cpp</in>
-              <in>thread_aix_ppc.hpp</in>
-              <in>vmStructs_aix_ppc.hpp</in>
-            </df>
-            <df name="bsd_x86">
-              <in>assembler_bsd_x86.cpp</in>
-              <in>atomic_bsd_x86.hpp</in>
-              <in>bsd_x86_32.s</in>
-              <in>bsd_x86_64.s</in>
-              <in>bytes_bsd_x86.inline.hpp</in>
-              <in>copy_bsd_x86.inline.hpp</in>
-              <in>globals_bsd_x86.hpp</in>
-              <in>orderAccess_bsd_x86.inline.hpp</in>
-              <in>os_bsd_x86.cpp</in>
-              <in>os_bsd_x86.hpp</in>
-              <in>os_bsd_x86.inline.hpp</in>
-              <in>prefetch_bsd_x86.inline.hpp</in>
-              <in>thread_bsd_x86.cpp</in>
-              <in>thread_bsd_x86.hpp</in>
-              <in>vmStructs_bsd_x86.hpp</in>
-              <in>vm_version_bsd_x86.cpp</in>
-            </df>
-            <df name="bsd_zero">
-              <in>assembler_bsd_zero.cpp</in>
-              <in>atomic_bsd_zero.hpp</in>
-              <in>bytes_bsd_zero.inline.hpp</in>
-              <in>globals_bsd_zero.hpp</in>
-              <in>orderAccess_bsd_zero.inline.hpp</in>
-              <in>os_bsd_zero.cpp</in>
-              <in>os_bsd_zero.hpp</in>
-              <in>prefetch_bsd_zero.inline.hpp</in>
-              <in>thread_bsd_zero.cpp</in>
-              <in>thread_bsd_zero.hpp</in>
-              <in>vmStructs_bsd_zero.hpp</in>
-              <in>vm_version_bsd_zero.cpp</in>
-            </df>
-            <df name="linux_aarch64">
-              <in>assembler_linux_aarch64.cpp</in>
-              <in>atomic_linux_aarch64.hpp</in>
-              <in>bytes_linux_aarch64.inline.hpp</in>
-              <in>copy_linux_aarch64.inline.hpp</in>
-              <in>copy_linux_aarch64.s</in>
-              <in>globals_linux_aarch64.hpp</in>
-              <in>linux_aarch64.S</in>
-              <in>linux_aarch64.ad</in>
-              <in>orderAccess_linux_aarch64.inline.hpp</in>
-              <in>os_linux_aarch64.cpp</in>
-              <in>os_linux_aarch64.hpp</in>
-              <in>os_linux_aarch64.inline.hpp</in>
-              <in>prefetch_linux_aarch64.inline.hpp</in>
-              <in>threadLS_linux_aarch64.s</in>
-              <in>thread_linux_aarch64.cpp</in>
-              <in>thread_linux_aarch64.hpp</in>
-              <in>vmStructs_linux_aarch64.hpp</in>
-              <in>vm_version_linux_aarch64.cpp</in>
-            </df>
-            <df name="linux_arm">
-              <in>atomic_linux_arm.hpp</in>
-              <in>bytes_linux_arm.inline.hpp</in>
-              <in>copy_linux_arm.inline.hpp</in>
-              <in>globals_linux_arm.hpp</in>
-              <in>linux_arm_32.s</in>
-              <in>linux_arm_64.s</in>
-              <in>macroAssembler_linux_arm_32.cpp</in>
-              <in>orderAccess_linux_arm.inline.hpp</in>
-              <in>os_linux_arm.cpp</in>
-              <in>os_linux_arm.hpp</in>
-              <in>prefetch_linux_arm.inline.hpp</in>
-              <in>thread_linux_arm.cpp</in>
-              <in>thread_linux_arm.hpp</in>
-              <in>vmStructs_linux_arm.hpp</in>
-              <in>vm_version_linux_arm_32.cpp</in>
-            </df>
-            <df name="linux_ppc">
-              <in>atomic_linux_ppc.hpp</in>
-              <in>bytes_linux_ppc.inline.hpp</in>
-              <in>globals_linux_ppc.hpp</in>
-              <in>orderAccess_linux_ppc.inline.hpp</in>
-              <in>os_linux_ppc.cpp</in>
-              <in>os_linux_ppc.hpp</in>
-              <in>prefetch_linux_ppc.inline.hpp</in>
-              <in>thread_linux_ppc.cpp</in>
-              <in>thread_linux_ppc.hpp</in>
-              <in>vmStructs_linux_ppc.hpp</in>
-            </df>
-            <df name="linux_s390">
-              <in>atomic_linux_s390.hpp</in>
-              <in>bytes_linux_s390.inline.hpp</in>
-              <in>globals_linux_s390.hpp</in>
-              <in>orderAccess_linux_s390.inline.hpp</in>
-              <in>os_linux_s390.cpp</in>
-              <in>os_linux_s390.hpp</in>
-              <in>prefetch_linux_s390.inline.hpp</in>
-              <in>thread_linux_s390.cpp</in>
-              <in>thread_linux_s390.hpp</in>
-              <in>vmStructs_linux_s390.hpp</in>
-            </df>
-            <df name="linux_sparc">
-              <in>atomic_linux_sparc.hpp</in>
-              <in>globals_linux_sparc.hpp</in>
-              <in>linux_sparc.ad</in>
-              <in>linux_sparc.s</in>
-              <in>orderAccess_linux_sparc.inline.hpp</in>
-              <in>os_linux_sparc.cpp</in>
-              <in>os_linux_sparc.hpp</in>
-              <in>prefetch_linux_sparc.inline.hpp</in>
-              <in>thread_linux_sparc.cpp</in>
-              <in>thread_linux_sparc.hpp</in>
-              <in>vmStructs_linux_sparc.hpp</in>
-              <in>vm_version_linux_sparc.cpp</in>
-            </df>
-            <df name="linux_x86">
-              <in>assembler_linux_x86.cpp</in>
-              <in>atomic_linux_x86.hpp</in>
-              <in>bytes_linux_x86.inline.hpp</in>
-              <in>copy_linux_x86.inline.hpp</in>
-              <in>globals_linux_x86.hpp</in>
-              <in>linux_x86_32.s</in>
-              <in>linux_x86_64.s</in>
-              <in>orderAccess_linux_x86.inline.hpp</in>
-              <in>os_linux_x86.cpp</in>
-              <in>os_linux_x86.hpp</in>
-              <in>os_linux_x86.inline.hpp</in>
-              <in>prefetch_linux_x86.inline.hpp</in>
-              <in>thread_linux_x86.cpp</in>
-              <in>thread_linux_x86.hpp</in>
-              <in>vmStructs_linux_x86.hpp</in>
-              <in>vm_version_linux_x86.cpp</in>
-            </df>
-            <df name="linux_zero">
-              <in>assembler_linux_zero.cpp</in>
-              <in>atomic_linux_zero.hpp</in>
-              <in>bytes_linux_zero.inline.hpp</in>
-              <in>globals_linux_zero.hpp</in>
-              <in>orderAccess_linux_zero.inline.hpp</in>
-              <in>os_linux_zero.cpp</in>
-              <in>os_linux_zero.hpp</in>
-              <in>prefetch_linux_zero.inline.hpp</in>
-              <in>thread_linux_zero.cpp</in>
-              <in>thread_linux_zero.hpp</in>
-              <in>vmStructs_linux_zero.hpp</in>
-              <in>vm_version_linux_zero.cpp</in>
-            </df>
-            <df name="solaris_sparc">
-              <in>atomic_solaris_sparc.hpp</in>
-              <in>count_trailing_zeros_solaris_sparc.hpp</in>
-              <in>globals_solaris_sparc.hpp</in>
-              <in>orderAccess_solaris_sparc.inline.hpp</in>
-              <in>os_solaris_sparc.cpp</in>
-              <in>os_solaris_sparc.hpp</in>
-              <in>prefetch_solaris_sparc.inline.hpp</in>
-              <in>solaris_sparc.il</in>
-              <in>solaris_sparc.s</in>
-              <in>thread_solaris_sparc.cpp</in>
-              <in>thread_solaris_sparc.hpp</in>
-              <in>vmStructs_solaris_sparc.hpp</in>
-              <in>vm_version_solaris_sparc.cpp</in>
-            </df>
-            <df name="solaris_x86">
-              <in>assembler_solaris_x86.cpp</in>
-              <in>atomic_solaris_x86.hpp</in>
-              <in>bytes_solaris_x86.inline.hpp</in>
-              <in>copy_solaris_x86.inline.hpp</in>
-              <in>count_trailing_zeros_solaris_x86.hpp</in>
-              <in>globals_solaris_x86.hpp</in>
-              <in>orderAccess_solaris_x86.inline.hpp</in>
-              <in>os_solaris_x86.cpp</in>
-              <in>os_solaris_x86.hpp</in>
-              <in>os_solaris_x86.inline.hpp</in>
-              <in>prefetch_solaris_x86.inline.hpp</in>
-              <in>solaris_x86_64.il</in>
-              <in>solaris_x86_64.s</in>
-              <in>thread_solaris_x86.cpp</in>
-              <in>thread_solaris_x86.hpp</in>
-              <in>vmStructs_solaris_x86.hpp</in>
-              <in>vm_version_solaris_x86.cpp</in>
-            </df>
-            <df name="windows_x86">
-              <in>assembler_windows_x86.cpp</in>
-              <in>atomic_windows_x86.hpp</in>
-              <in>bytes_windows_x86.inline.hpp</in>
-              <in>copy_windows_x86.inline.hpp</in>
-              <in>globals_windows_x86.hpp</in>
-              <in>orderAccess_windows_x86.inline.hpp</in>
-              <in>os_windows_x86.cpp</in>
-              <in>os_windows_x86.hpp</in>
-              <in>os_windows_x86.inline.hpp</in>
-              <in>prefetch_windows_x86.inline.hpp</in>
-              <in>thread_windows_x86.cpp</in>
-              <in>thread_windows_x86.hpp</in>
-              <in>unwind_windows_x86.hpp</in>
-              <in>vmStructs_windows_x86.hpp</in>
-              <in>vm_version_windows_x86.cpp</in>
-            </df>
-          </df>
-          <df name="share">
-            <df name="adlc">
-              <df name="Test">
-                <in>i486.ad</in>
-              </df>
-              <in>adlc.hpp</in>
-              <in>adlparse.cpp</in>
-              <in>adlparse.hpp</in>
-              <in>archDesc.cpp</in>
-              <in>archDesc.hpp</in>
-              <in>arena.cpp</in>
-              <in>arena.hpp</in>
-              <in>dfa.cpp</in>
-              <in>dict2.cpp</in>
-              <in>dict2.hpp</in>
-              <in>filebuff.cpp</in>
-              <in>filebuff.hpp</in>
-              <in>forms.cpp</in>
-              <in>forms.hpp</in>
-              <in>formsopt.cpp</in>
-              <in>formsopt.hpp</in>
-              <in>formssel.cpp</in>
-              <in>formssel.hpp</in>
-              <in>main.cpp</in>
-              <in>output_c.cpp</in>
-              <in>output_h.cpp</in>
-            </df>
-            <df name="aot">
-              <in>aotCodeHeap.cpp</in>
-              <in>aotCodeHeap.hpp</in>
-              <in>aotCompiledMethod.cpp</in>
-              <in>aotCompiledMethod.hpp</in>
-              <in>aotLoader.cpp</in>
-              <in>aotLoader.hpp</in>
-              <in>aotLoader.inline.hpp</in>
-              <in>compiledIC_aot.cpp</in>
-              <in>compiledIC_aot.hpp</in>
-            </df>
-            <df name="asm">
-              <in>assembler.cpp</in>
-              <in>assembler.hpp</in>
-              <in>assembler.inline.hpp</in>
-              <in>codeBuffer.cpp</in>
-              <in>codeBuffer.hpp</in>
-              <in>macroAssembler.hpp</in>
-              <in>macroAssembler.inline.hpp</in>
-              <in>register.cpp</in>
-              <in>register.hpp</in>
-            </df>
-            <df name="c1">
-              <in>c1_CFGPrinter.cpp</in>
-              <in>c1_CFGPrinter.hpp</in>
-              <in>c1_Canonicalizer.cpp</in>
-              <in>c1_Canonicalizer.hpp</in>
-              <in>c1_CodeStubs.hpp</in>
-              <in>c1_Compilation.cpp</in>
-              <in>c1_Compilation.hpp</in>
-              <in>c1_Compiler.cpp</in>
-              <in>c1_Compiler.hpp</in>
-              <in>c1_Defs.cpp</in>
-              <in>c1_Defs.hpp</in>
-              <in>c1_FpuStackSim.hpp</in>
-              <in>c1_FrameMap.cpp</in>
-              <in>c1_FrameMap.hpp</in>
-              <in>c1_GraphBuilder.cpp</in>
-              <in>c1_GraphBuilder.hpp</in>
-              <in>c1_IR.cpp</in>
-              <in>c1_IR.hpp</in>
-              <in>c1_Instruction.cpp</in>
-              <in>c1_Instruction.hpp</in>
-              <in>c1_InstructionPrinter.cpp</in>
-              <in>c1_InstructionPrinter.hpp</in>
-              <in>c1_LIR.cpp</in>
-              <in>c1_LIR.hpp</in>
-              <in>c1_LIRAssembler.cpp</in>
-              <in>c1_LIRAssembler.hpp</in>
-              <in>c1_LIRGenerator.cpp</in>
-              <in>c1_LIRGenerator.hpp</in>
-              <in>c1_LinearScan.cpp</in>
-              <in>c1_LinearScan.hpp</in>
-              <in>c1_MacroAssembler.hpp</in>
-              <in>c1_Optimizer.cpp</in>
-              <in>c1_Optimizer.hpp</in>
-              <in>c1_RangeCheckElimination.cpp</in>
-              <in>c1_RangeCheckElimination.hpp</in>
-              <in>c1_Runtime1.cpp</in>
-              <in>c1_Runtime1.hpp</in>
-              <in>c1_ValueMap.cpp</in>
-              <in>c1_ValueMap.hpp</in>
-              <in>c1_ValueSet.cpp</in>
-              <in>c1_ValueSet.hpp</in>
-              <in>c1_ValueSet.inline.hpp</in>
-              <in>c1_ValueStack.cpp</in>
-              <in>c1_ValueStack.hpp</in>
-              <in>c1_ValueType.cpp</in>
-              <in>c1_ValueType.hpp</in>
-              <in>c1_globals.cpp</in>
-              <in>c1_globals.hpp</in>
-            </df>
-            <df name="ci">
-              <in>bcEscapeAnalyzer.cpp</in>
-              <in>bcEscapeAnalyzer.hpp</in>
-              <in>ciArray.cpp</in>
-              <in>ciArray.hpp</in>
-              <in>ciArrayKlass.cpp</in>
-              <in>ciArrayKlass.hpp</in>
-              <in>ciBaseObject.cpp</in>
-              <in>ciBaseObject.hpp</in>
-              <in>ciCallProfile.hpp</in>
-              <in>ciCallSite.cpp</in>
-              <in>ciCallSite.hpp</in>
-              <in>ciClassList.hpp</in>
-              <in>ciConstant.cpp</in>
-              <in>ciConstant.hpp</in>
-              <in>ciConstantPoolCache.cpp</in>
-              <in>ciConstantPoolCache.hpp</in>
-              <in>ciEnv.cpp</in>
-              <in>ciEnv.hpp</in>
-              <in>ciExceptionHandler.cpp</in>
-              <in>ciExceptionHandler.hpp</in>
-              <in>ciField.cpp</in>
-              <in>ciField.hpp</in>
-              <in>ciFlags.cpp</in>
-              <in>ciFlags.hpp</in>
-              <in>ciInstance.cpp</in>
-              <in>ciInstance.hpp</in>
-              <in>ciInstanceKlass.cpp</in>
-              <in>ciInstanceKlass.hpp</in>
-              <in>ciKlass.cpp</in>
-              <in>ciKlass.hpp</in>
-              <in>ciMemberName.cpp</in>
-              <in>ciMemberName.hpp</in>
-              <in>ciMetadata.cpp</in>
-              <in>ciMetadata.hpp</in>
-              <in>ciMethod.cpp</in>
-              <in>ciMethod.hpp</in>
-              <in>ciMethodBlocks.cpp</in>
-              <in>ciMethodBlocks.hpp</in>
-              <in>ciMethodData.cpp</in>
-              <in>ciMethodData.hpp</in>
-              <in>ciMethodHandle.cpp</in>
-              <in>ciMethodHandle.hpp</in>
-              <in>ciMethodType.hpp</in>
-              <in>ciNullObject.cpp</in>
-              <in>ciNullObject.hpp</in>
-              <in>ciObjArray.cpp</in>
-              <in>ciObjArray.hpp</in>
-              <in>ciObjArrayKlass.cpp</in>
-              <in>ciObjArrayKlass.hpp</in>
-              <in>ciObject.cpp</in>
-              <in>ciObject.hpp</in>
-              <in>ciObjectFactory.cpp</in>
-              <in>ciObjectFactory.hpp</in>
-              <in>ciReplay.cpp</in>
-              <in>ciReplay.hpp</in>
-              <in>ciSignature.cpp</in>
-              <in>ciSignature.hpp</in>
-              <in>ciStreams.cpp</in>
-              <in>ciStreams.hpp</in>
-              <in>ciSymbol.cpp</in>
-              <in>ciSymbol.hpp</in>
-              <in>ciType.cpp</in>
-              <in>ciType.hpp</in>
-              <in>ciTypeArray.cpp</in>
-              <in>ciTypeArray.hpp</in>
-              <in>ciTypeArrayKlass.cpp</in>
-              <in>ciTypeArrayKlass.hpp</in>
-              <in>ciTypeFlow.cpp</in>
-              <in>ciTypeFlow.hpp</in>
-              <in>ciUtilities.cpp</in>
-              <in>ciUtilities.hpp</in>
-              <in>compilerInterface.hpp</in>
-            </df>
-            <df name="classfile">
-              <in>altHashing.cpp</in>
-              <in>altHashing.hpp</in>
-              <in>bytecodeAssembler.cpp</in>
-              <in>bytecodeAssembler.hpp</in>
-              <in>classFileError.cpp</in>
-              <in>classFileParser.cpp</in>
-              <in>classFileParser.hpp</in>
-              <in>classFileStream.cpp</in>
-              <in>classFileStream.hpp</in>
-              <in>classListParser.cpp</in>
-              <in>classListParser.hpp</in>
-              <in>classLoader.cpp</in>
-              <in>classLoader.hpp</in>
-              <in>classLoaderData.cpp</in>
-              <in>classLoaderData.hpp</in>
-              <in>classLoaderData.inline.hpp</in>
-              <in>classLoaderExt.cpp</in>
-              <in>classLoaderExt.hpp</in>
-              <in>classLoaderStats.cpp</in>
-              <in>classLoaderStats.hpp</in>
-              <in>compactHashtable.cpp</in>
-              <in>compactHashtable.hpp</in>
-              <in>compactHashtable.inline.hpp</in>
-              <in>defaultMethods.cpp</in>
-              <in>defaultMethods.hpp</in>
-              <in>dictionary.cpp</in>
-              <in>dictionary.hpp</in>
-              <in>javaAssertions.cpp</in>
-              <in>javaAssertions.hpp</in>
-              <in>javaClasses.cpp</in>
-              <in>javaClasses.hpp</in>
-              <in>javaClasses.inline.hpp</in>
-              <in>jimage.hpp</in>
-              <in>klassFactory.cpp</in>
-              <in>klassFactory.hpp</in>
-              <in>loaderConstraints.cpp</in>
-              <in>loaderConstraints.hpp</in>
-              <in>metadataOnStackMark.cpp</in>
-              <in>metadataOnStackMark.hpp</in>
-              <in>moduleEntry.cpp</in>
-              <in>moduleEntry.hpp</in>
-              <in>modules.cpp</in>
-              <in>modules.hpp</in>
-              <in>packageEntry.cpp</in>
-              <in>packageEntry.hpp</in>
-              <in>placeholders.cpp</in>
-              <in>placeholders.hpp</in>
-              <in>protectionDomainCache.cpp</in>
-              <in>protectionDomainCache.hpp</in>
-              <in>resolutionErrors.cpp</in>
-              <in>resolutionErrors.hpp</in>
-              <in>sharedClassUtil.hpp</in>
-              <in>sharedPathsMiscInfo.cpp</in>
-              <in>sharedPathsMiscInfo.hpp</in>
-              <in>stackMapFrame.cpp</in>
-              <in>stackMapFrame.hpp</in>
-              <in>stackMapTable.cpp</in>
-              <in>stackMapTable.hpp</in>
-              <in>stackMapTableFormat.hpp</in>
-              <in>stringTable.cpp</in>
-              <in>stringTable.hpp</in>
-              <in>symbolTable.cpp</in>
-              <in>symbolTable.hpp</in>
-              <in>systemDictionary.cpp</in>
-              <in>systemDictionary.hpp</in>
-              <in>systemDictionaryShared.hpp</in>
-              <in>systemDictionary_ext.hpp</in>
-              <in>verificationType.cpp</in>
-              <in>verificationType.hpp</in>
-              <in>verifier.cpp</in>
-              <in>verifier.hpp</in>
-              <in>vmSymbols.cpp</in>
-              <in>vmSymbols.hpp</in>
-              <in>vmSymbols_ext.hpp</in>
-            </df>
-            <df name="code">
-              <in>codeBlob.cpp</in>
-              <in>codeBlob.hpp</in>
-              <in>codeCache.cpp</in>
-              <in>codeCache.hpp</in>
-              <in>compiledIC.cpp</in>
-              <in>compiledIC.hpp</in>
-              <in>compiledMethod.cpp</in>
-              <in>compiledMethod.hpp</in>
-              <in>compiledMethod.inline.hpp</in>
-              <in>compressedStream.cpp</in>
-              <in>compressedStream.hpp</in>
-              <in>debugInfo.cpp</in>
-              <in>debugInfo.hpp</in>
-              <in>debugInfoRec.cpp</in>
-              <in>debugInfoRec.hpp</in>
-              <in>dependencies.cpp</in>
-              <in>dependencies.hpp</in>
-              <in>dependencyContext.cpp</in>
-              <in>dependencyContext.hpp</in>
-              <in>exceptionHandlerTable.cpp</in>
-              <in>exceptionHandlerTable.hpp</in>
-              <in>icBuffer.cpp</in>
-              <in>icBuffer.hpp</in>
-              <in>jvmticmlr.h</in>
-              <in>location.cpp</in>
-              <in>location.hpp</in>
-              <in>nativeInst.hpp</in>
-              <in>nmethod.cpp</in>
-              <in>nmethod.hpp</in>
-              <in>oopRecorder.cpp</in>
-              <in>oopRecorder.hpp</in>
-              <in>pcDesc.cpp</in>
-              <in>pcDesc.hpp</in>
-              <in>relocInfo.cpp</in>
-              <in>relocInfo.hpp</in>
-              <in>relocInfo_ext.cpp</in>
-              <in>relocInfo_ext.hpp</in>
-              <in>scopeDesc.cpp</in>
-              <in>scopeDesc.hpp</in>
-              <in>stubs.cpp</in>
-              <in>stubs.hpp</in>
-              <in>vmreg.cpp</in>
-              <in>vmreg.hpp</in>
-              <in>vmreg.inline.hpp</in>
-              <in>vtableStubs.cpp</in>
-              <in>vtableStubs.hpp</in>
-            </df>
-            <df name="compiler">
-              <in>abstractCompiler.cpp</in>
-              <in>abstractCompiler.hpp</in>
-              <in>compileBroker.cpp</in>
-              <in>compileBroker.hpp</in>
-              <in>compileLog.cpp</in>
-              <in>compileLog.hpp</in>
-              <in>compileTask.cpp</in>
-              <in>compileTask.hpp</in>
-              <in>compilerDefinitions.cpp</in>
-              <in>compilerDefinitions.hpp</in>
-              <in>compilerDirectives.cpp</in>
-              <in>compilerDirectives.hpp</in>
-              <in>compilerOracle.cpp</in>
-              <in>compilerOracle.hpp</in>
-              <in>directivesParser.cpp</in>
-              <in>directivesParser.hpp</in>
-              <in>disassembler.cpp</in>
-              <in>disassembler.hpp</in>
-              <in>methodLiveness.cpp</in>
-              <in>methodLiveness.hpp</in>
-              <in>methodMatcher.cpp</in>
-              <in>methodMatcher.hpp</in>
-              <in>oopMap.cpp</in>
-              <in>oopMap.hpp</in>
-            </df>
-            <df name="gc">
-              <df name="cms">
-                <in>adaptiveFreeList.cpp</in>
-                <in>adaptiveFreeList.hpp</in>
-                <in>allocationStats.cpp</in>
-                <in>allocationStats.hpp</in>
-                <in>cmsCollectorPolicy.cpp</in>
-                <in>cmsCollectorPolicy.hpp</in>
-                <in>cmsLockVerifier.cpp</in>
-                <in>cmsLockVerifier.hpp</in>
-                <in>cmsOopClosures.cpp</in>
-                <in>cmsOopClosures.hpp</in>
-                <in>cmsOopClosures.inline.hpp</in>
-                <in>compactibleFreeListSpace.cpp</in>
-                <in>compactibleFreeListSpace.hpp</in>
-                <in>concurrentMarkSweepGeneration.cpp</in>
-                <in>concurrentMarkSweepGeneration.hpp</in>
-                <in>concurrentMarkSweepGeneration.inline.hpp</in>
-                <in>concurrentMarkSweepThread.cpp</in>
-                <in>concurrentMarkSweepThread.hpp</in>
-                <in>freeChunk.cpp</in>
-                <in>freeChunk.hpp</in>
-                <in>gSpaceCounters.cpp</in>
-                <in>gSpaceCounters.hpp</in>
-                <in>parCardTableModRefBS.cpp</in>
-                <in>parNewGeneration.cpp</in>
-                <in>parNewGeneration.hpp</in>
-                <in>parNewGeneration.inline.hpp</in>
-                <in>parOopClosures.cpp</in>
-                <in>parOopClosures.hpp</in>
-                <in>parOopClosures.inline.hpp</in>
-                <in>promotionInfo.cpp</in>
-                <in>promotionInfo.hpp</in>
-                <in>vmCMSOperations.cpp</in>
-                <in>vmCMSOperations.hpp</in>
-                <in>vmStructs_cms.hpp</in>
-                <in>vmStructs_parNew.hpp</in>
-                <in>yieldingWorkgroup.cpp</in>
-                <in>yieldingWorkgroup.hpp</in>
-              </df>
-              <df name="g1">
-                <in>bufferingOopClosure.hpp</in>
-                <in>collectionSetChooser.cpp</in>
-                <in>collectionSetChooser.hpp</in>
-                <in>concurrentG1Refine.cpp</in>
-                <in>concurrentG1Refine.hpp</in>
-                <in>concurrentG1RefineThread.cpp</in>
-                <in>concurrentG1RefineThread.hpp</in>
-                <in>concurrentMarkThread.cpp</in>
-                <in>concurrentMarkThread.hpp</in>
-                <in>concurrentMarkThread.inline.hpp</in>
-                <in>dirtyCardQueue.cpp</in>
-                <in>dirtyCardQueue.hpp</in>
-                <in>evacuationInfo.hpp</in>
-                <in>g1AllocRegion.cpp</in>
-                <in>g1AllocRegion.hpp</in>
-                <in>g1AllocRegion.inline.hpp</in>
-                <in>g1AllocationContext.hpp</in>
-                <in>g1Allocator.cpp</in>
-                <in>g1Allocator.hpp</in>
-                <in>g1Allocator.inline.hpp</in>
-                <in>g1Allocator_ext.cpp</in>
-                <in>g1Analytics.cpp</in>
-                <in>g1Analytics.hpp</in>
-                <in>g1BiasedArray.cpp</in>
-                <in>g1BiasedArray.hpp</in>
-                <in>g1BlockOffsetTable.cpp</in>
-                <in>g1BlockOffsetTable.hpp</in>
-                <in>g1BlockOffsetTable.inline.hpp</in>
-                <in>g1CardCounts.cpp</in>
-                <in>g1CardCounts.hpp</in>
-                <in>g1CardLiveData.cpp</in>
-                <in>g1CardLiveData.hpp</in>
-                <in>g1CardLiveData.inline.hpp</in>
-                <in>g1CodeBlobClosure.cpp</in>
-                <in>g1CodeBlobClosure.hpp</in>
-                <in>g1CodeCacheRemSet.cpp</in>
-                <in>g1CodeCacheRemSet.hpp</in>
-                <in>g1CodeRootSetTable.hpp</in>
-                <in>g1CollectedHeap.cpp</in>
-                <in>g1CollectedHeap.hpp</in>
-                <in>g1CollectedHeap.inline.hpp</in>
-                <in>g1CollectedHeap_ext.cpp</in>
-                <in>g1CollectionSet.cpp</in>
-                <in>g1CollectionSet.hpp</in>
-                <in>g1CollectorPolicy.cpp</in>
-                <in>g1CollectorPolicy.hpp</in>
-                <in>g1CollectorState.hpp</in>
-                <in>g1ConcurrentMark.cpp</in>
-                <in>g1ConcurrentMark.hpp</in>
-                <in>g1ConcurrentMark.inline.hpp</in>
-                <in>g1ConcurrentMarkBitMap.cpp</in>
-                <in>g1ConcurrentMarkBitMap.hpp</in>
-                <in>g1ConcurrentMarkBitMap.inline.hpp</in>
-                <in>g1ConcurrentMarkObjArrayProcessor.cpp</in>
-                <in>g1ConcurrentMarkObjArrayProcessor.hpp</in>
-                <in>g1ConcurrentMarkObjArrayProcessor.inline.hpp</in>
-                <in>g1DefaultPolicy.cpp</in>
-                <in>g1DefaultPolicy.hpp</in>
-                <in>g1EdenRegions.hpp</in>
-                <in>g1EvacFailure.cpp</in>
-                <in>g1EvacFailure.hpp</in>
-                <in>g1EvacStats.cpp</in>
-                <in>g1EvacStats.hpp</in>
-                <in>g1EvacStats.inline.hpp</in>
-                <in>g1FromCardCache.cpp</in>
-                <in>g1FromCardCache.hpp</in>
-                <in>g1FullGCScope.cpp</in>
-                <in>g1FullGCScope.hpp</in>
-                <in>g1GCPhaseTimes.cpp</in>
-                <in>g1GCPhaseTimes.hpp</in>
-                <in>g1HRPrinter.hpp</in>
-                <in>g1HeapRegionTraceType.hpp</in>
-                <in>g1HeapSizingPolicy.cpp</in>
-                <in>g1HeapSizingPolicy.hpp</in>
-                <in>g1HeapSizingPolicy_ext.cpp</in>
-                <in>g1HeapTransition.cpp</in>
-                <in>g1HeapTransition.hpp</in>
-                <in>g1HeapVerifier.cpp</in>
-                <in>g1HeapVerifier.hpp</in>
-                <in>g1HotCardCache.cpp</in>
-                <in>g1HotCardCache.hpp</in>
-                <in>g1IHOPControl.cpp</in>
-                <in>g1IHOPControl.hpp</in>
-                <in>g1InCSetState.hpp</in>
-                <in>g1InitialMarkToMixedTimeTracker.hpp</in>
-                <in>g1MMUTracker.cpp</in>
-                <in>g1MMUTracker.hpp</in>
-                <in>g1MarkSweep.cpp</in>
-                <in>g1MarkSweep.hpp</in>
-                <in>g1MarkSweep_ext.cpp</in>
-                <in>g1MonitoringSupport.cpp</in>
-                <in>g1MonitoringSupport.hpp</in>
-                <in>g1OopClosures.cpp</in>
-                <in>g1OopClosures.hpp</in>
-                <in>g1OopClosures.inline.hpp</in>
-                <in>g1PageBasedVirtualSpace.cpp</in>
-                <in>g1PageBasedVirtualSpace.hpp</in>
-                <in>g1ParScanThreadState.cpp</in>
-                <in>g1ParScanThreadState.hpp</in>
-                <in>g1ParScanThreadState.inline.hpp</in>
-                <in>g1ParScanThreadState_ext.cpp</in>
-                <in>g1Policy.hpp</in>
-                <in>g1Predictions.hpp</in>
-                <in>g1RegionToSpaceMapper.cpp</in>
-                <in>g1RegionToSpaceMapper.hpp</in>
-                <in>g1RemSet.cpp</in>
-                <in>g1RemSet.hpp</in>
-                <in>g1RemSet.inline.hpp</in>
-                <in>g1RemSetSummary.cpp</in>
-                <in>g1RemSetSummary.hpp</in>
-                <in>g1RootClosures.cpp</in>
-                <in>g1RootClosures.hpp</in>
-                <in>g1RootClosures_ext.cpp</in>
-                <in>g1RootProcessor.cpp</in>
-                <in>g1RootProcessor.hpp</in>
-                <in>g1SATBCardTableModRefBS.cpp</in>
-                <in>g1SATBCardTableModRefBS.hpp</in>
-                <in>g1SATBCardTableModRefBS.inline.hpp</in>
-                <in>g1SerialFullCollector.cpp</in>
-                <in>g1SerialFullCollector.hpp</in>
-                <in>g1SharedClosures.hpp</in>
-                <in>g1StringDedup.cpp</in>
-                <in>g1StringDedup.hpp</in>
-                <in>g1StringDedupQueue.cpp</in>
-                <in>g1StringDedupQueue.hpp</in>
-                <in>g1StringDedupStat.cpp</in>
-                <in>g1StringDedupStat.hpp</in>
-                <in>g1StringDedupTable.cpp</in>
-                <in>g1StringDedupTable.hpp</in>
-                <in>g1StringDedupThread.cpp</in>
-                <in>g1StringDedupThread.hpp</in>
-                <in>g1SurvivorRegions.cpp</in>
-                <in>g1SurvivorRegions.hpp</in>
-                <in>g1YCTypes.hpp</in>
-                <in>g1YoungGenSizer.cpp</in>
-                <in>g1YoungGenSizer.hpp</in>
-                <in>g1YoungRemSetSamplingThread.cpp</in>
-                <in>g1YoungRemSetSamplingThread.hpp</in>
-                <in>g1_globals.cpp</in>
-                <in>g1_globals.hpp</in>
-                <in>g1_specialized_oop_closures.hpp</in>
-                <in>hSpaceCounters.cpp</in>
-                <in>hSpaceCounters.hpp</in>
-                <in>heapRegion.cpp</in>
-                <in>heapRegion.hpp</in>
-                <in>heapRegion.inline.hpp</in>
-                <in>heapRegionBounds.hpp</in>
-                <in>heapRegionBounds.inline.hpp</in>
-                <in>heapRegionManager.cpp</in>
-                <in>heapRegionManager.hpp</in>
-                <in>heapRegionManager.inline.hpp</in>
-                <in>heapRegionRemSet.cpp</in>
-                <in>heapRegionRemSet.hpp</in>
-                <in>heapRegionSet.cpp</in>
-                <in>heapRegionSet.hpp</in>
-                <in>heapRegionSet.inline.hpp</in>
-                <in>heapRegionTracer.cpp</in>
-                <in>heapRegionTracer.hpp</in>
-                <in>heapRegionType.cpp</in>
-                <in>heapRegionType.hpp</in>
-                <in>ptrQueue.cpp</in>
-                <in>ptrQueue.hpp</in>
-                <in>satbMarkQueue.cpp</in>
-                <in>satbMarkQueue.hpp</in>
-                <in>sparsePRT.cpp</in>
-                <in>sparsePRT.hpp</in>
-                <in>survRateGroup.cpp</in>
-                <in>survRateGroup.hpp</in>
-                <in>suspendibleThreadSet.cpp</in>
-                <in>suspendibleThreadSet.hpp</in>
-                <in>vmStructs_g1.hpp</in>
-                <in>vm_operations_g1.cpp</in>
-                <in>vm_operations_g1.hpp</in>
-              </df>
-              <df name="parallel">
-                <in>adjoiningGenerations.cpp</in>
-                <in>adjoiningGenerations.hpp</in>
-                <in>adjoiningVirtualSpaces.cpp</in>
-                <in>adjoiningVirtualSpaces.hpp</in>
-                <in>asPSOldGen.cpp</in>
-                <in>asPSOldGen.hpp</in>
-                <in>asPSYoungGen.cpp</in>
-                <in>asPSYoungGen.hpp</in>
-                <in>cardTableExtension.cpp</in>
-                <in>cardTableExtension.hpp</in>
-                <in>gcAdaptivePolicyCounters.cpp</in>
-                <in>gcAdaptivePolicyCounters.hpp</in>
-                <in>gcTaskManager.cpp</in>
-                <in>gcTaskManager.hpp</in>
-                <in>gcTaskThread.cpp</in>
-                <in>gcTaskThread.hpp</in>
-                <in>generationSizer.cpp</in>
-                <in>generationSizer.hpp</in>
-                <in>immutableSpace.cpp</in>
-                <in>immutableSpace.hpp</in>
-                <in>mutableNUMASpace.cpp</in>
-                <in>mutableNUMASpace.hpp</in>
-                <in>mutableSpace.cpp</in>
-                <in>mutableSpace.hpp</in>
-                <in>objectStartArray.cpp</in>
-                <in>objectStartArray.hpp</in>
-                <in>objectStartArray.inline.hpp</in>
-                <in>parMarkBitMap.cpp</in>
-                <in>parMarkBitMap.hpp</in>
-                <in>parMarkBitMap.inline.hpp</in>
-                <in>parallelScavengeHeap.cpp</in>
-                <in>parallelScavengeHeap.hpp</in>
-                <in>parallelScavengeHeap.inline.hpp</in>
-                <in>pcTasks.cpp</in>
-                <in>pcTasks.hpp</in>
-                <in>psAdaptiveSizePolicy.cpp</in>
-                <in>psAdaptiveSizePolicy.hpp</in>
-                <in>psCompactionManager.cpp</in>
-                <in>psCompactionManager.hpp</in>
-                <in>psCompactionManager.inline.hpp</in>
-                <in>psGCAdaptivePolicyCounters.cpp</in>
-                <in>psGCAdaptivePolicyCounters.hpp</in>
-                <in>psGenerationCounters.cpp</in>
-                <in>psGenerationCounters.hpp</in>
-                <in>psMarkSweep.cpp</in>
-                <in>psMarkSweep.hpp</in>
-                <in>psMarkSweepDecorator.cpp</in>
-                <in>psMarkSweepDecorator.hpp</in>
-                <in>psOldGen.cpp</in>
-                <in>psOldGen.hpp</in>
-                <in>psParallelCompact.cpp</in>
-                <in>psParallelCompact.hpp</in>
-                <in>psParallelCompact.inline.hpp</in>
-                <in>psPromotionLAB.cpp</in>
-                <in>psPromotionLAB.hpp</in>
-                <in>psPromotionLAB.inline.hpp</in>
-                <in>psPromotionManager.cpp</in>
-                <in>psPromotionManager.hpp</in>
-                <in>psPromotionManager.inline.hpp</in>
-                <in>psScavenge.cpp</in>
-                <in>psScavenge.hpp</in>
-                <in>psScavenge.inline.hpp</in>
-                <in>psTasks.cpp</in>
-                <in>psTasks.hpp</in>
-                <in>psVirtualspace.cpp</in>
-                <in>psVirtualspace.hpp</in>
-                <in>psYoungGen.cpp</in>
-                <in>psYoungGen.hpp</in>
-                <in>spaceCounters.cpp</in>
-                <in>spaceCounters.hpp</in>
-                <in>vmPSOperations.cpp</in>
-                <in>vmPSOperations.hpp</in>
-                <in>vmStructs_parallelgc.hpp</in>
-              </df>
-              <df name="serial">
-                <in>cSpaceCounters.cpp</in>
-                <in>cSpaceCounters.hpp</in>
-                <in>defNewGeneration.cpp</in>
-                <in>defNewGeneration.hpp</in>
-                <in>defNewGeneration.inline.hpp</in>
-                <in>genMarkSweep.cpp</in>
-                <in>genMarkSweep.hpp</in>
-                <in>markSweep.cpp</in>
-                <in>markSweep.hpp</in>
-                <in>markSweep.inline.hpp</in>
-                <in>tenuredGeneration.cpp</in>
-                <in>tenuredGeneration.hpp</in>
-                <in>tenuredGeneration.inline.hpp</in>
-              </df>
-              <df name="shared">
-                <in>adaptiveSizePolicy.cpp</in>
-                <in>adaptiveSizePolicy.hpp</in>
-                <in>ageTable.cpp</in>
-                <in>ageTable.hpp</in>
-                <in>ageTable.inline.hpp</in>
-                <in>ageTableTracer.cpp</in>
-                <in>ageTableTracer.hpp</in>
-                <in>allocTracer.cpp</in>
-                <in>allocTracer.hpp</in>
-                <in>barrierSet.cpp</in>
-                <in>barrierSet.hpp</in>
-                <in>barrierSet.inline.hpp</in>
-                <in>blockOffsetTable.cpp</in>
-                <in>blockOffsetTable.hpp</in>
-                <in>blockOffsetTable.inline.hpp</in>
-                <in>cardGeneration.cpp</in>
-                <in>cardGeneration.hpp</in>
-                <in>cardGeneration.inline.hpp</in>
-                <in>cardTableModRefBS.cpp</in>
-                <in>cardTableModRefBS.hpp</in>
-                <in>cardTableModRefBS.inline.hpp</in>
-                <in>cardTableModRefBSForCTRS.cpp</in>
-                <in>cardTableModRefBSForCTRS.hpp</in>
-                <in>cardTableRS.cpp</in>
-                <in>cardTableRS.hpp</in>
-                <in>collectedHeap.cpp</in>
-                <in>collectedHeap.hpp</in>
-                <in>collectedHeap.inline.hpp</in>
-                <in>collectorCounters.cpp</in>
-                <in>collectorCounters.hpp</in>
-                <in>collectorPolicy.cpp</in>
-                <in>collectorPolicy.hpp</in>
-                <in>concurrentGCPhaseManager.cpp</in>
-                <in>concurrentGCPhaseManager.hpp</in>
-                <in>concurrentGCThread.cpp</in>
-                <in>concurrentGCThread.hpp</in>
-                <in>copyFailedInfo.hpp</in>
-                <in>gcCause.cpp</in>
-                <in>gcCause.hpp</in>
-                <in>gcHeapSummary.hpp</in>
-                <in>gcId.cpp</in>
-                <in>gcId.hpp</in>
-                <in>gcLocker.cpp</in>
-                <in>gcLocker.hpp</in>
-                <in>gcLocker.inline.hpp</in>
-                <in>gcName.hpp</in>
-                <in>gcPolicyCounters.cpp</in>
-                <in>gcPolicyCounters.hpp</in>
-                <in>gcStats.cpp</in>
-                <in>gcStats.hpp</in>
-                <in>gcTimer.cpp</in>
-                <in>gcTimer.hpp</in>
-                <in>gcTrace.cpp</in>
-                <in>gcTrace.hpp</in>
-                <in>gcTraceSend.cpp</in>
-                <in>gcTraceTime.cpp</in>
-                <in>gcTraceTime.hpp</in>
-                <in>gcTraceTime.inline.hpp</in>
-                <in>gcUtil.cpp</in>
-                <in>gcUtil.hpp</in>
-                <in>gcWhen.hpp</in>
-                <in>genCollectedHeap.cpp</in>
-                <in>genCollectedHeap.hpp</in>
-                <in>genOopClosures.cpp</in>
-                <in>genOopClosures.hpp</in>
-                <in>genOopClosures.inline.hpp</in>
-                <in>generation.cpp</in>
-                <in>generation.hpp</in>
-                <in>generationCounters.cpp</in>
-                <in>generationCounters.hpp</in>
-                <in>generationSpec.cpp</in>
-                <in>generationSpec.hpp</in>
-                <in>isGCActiveMark.hpp</in>
-                <in>memset_with_concurrent_readers.hpp</in>
-                <in>modRefBarrierSet.hpp</in>
-                <in>objectCountEventSender.cpp</in>
-                <in>objectCountEventSender.hpp</in>
-                <in>plab.cpp</in>
-                <in>plab.hpp</in>
-                <in>plab.inline.hpp</in>
-                <in>preservedMarks.cpp</in>
-                <in>preservedMarks.hpp</in>
-                <in>preservedMarks.inline.hpp</in>
-                <in>referencePolicy.cpp</in>
-                <in>referencePolicy.hpp</in>
-                <in>referenceProcessor.cpp</in>
-                <in>referenceProcessor.hpp</in>
-                <in>referenceProcessor.inline.hpp</in>
-                <in>referenceProcessorPhaseTimes.cpp</in>
-                <in>referenceProcessorPhaseTimes.hpp</in>
-                <in>referenceProcessorStats.hpp</in>
-                <in>space.cpp</in>
-                <in>space.hpp</in>
-                <in>space.inline.hpp</in>
-                <in>spaceDecorator.cpp</in>
-                <in>spaceDecorator.hpp</in>
-                <in>specialized_oop_closures.hpp</in>
-                <in>strongRootsScope.cpp</in>
-                <in>strongRootsScope.hpp</in>
-                <in>taskqueue.cpp</in>
-                <in>taskqueue.hpp</in>
-                <in>taskqueue.inline.hpp</in>
-                <in>threadLocalAllocBuffer.cpp</in>
-                <in>threadLocalAllocBuffer.hpp</in>
-                <in>threadLocalAllocBuffer.inline.hpp</in>
-                <in>vmGCOperations.cpp</in>
-                <in>vmGCOperations.hpp</in>
-                <in>workerDataArray.cpp</in>
-                <in>workerDataArray.hpp</in>
-                <in>workerDataArray.inline.hpp</in>
-                <in>workerManager.hpp</in>
-                <in>workgroup.cpp</in>
-                <in>workgroup.hpp</in>
-              </df>
-            </df>
-            <df name="interpreter">
-              <in>abstractInterpreter.cpp</in>
-              <in>abstractInterpreter.hpp</in>
-              <in>bytecode.cpp</in>
-              <in>bytecode.hpp</in>
-              <in>bytecodeHistogram.cpp</in>
-              <in>bytecodeHistogram.hpp</in>
-              <in>bytecodeInterpreter.cpp</in>
-              <in>bytecodeInterpreter.hpp</in>
-              <in>bytecodeInterpreter.inline.hpp</in>
-              <in>bytecodeInterpreterProfiling.hpp</in>
-              <in>bytecodeStream.cpp</in>
-              <in>bytecodeStream.hpp</in>
-              <in>bytecodeTracer.cpp</in>
-              <in>bytecodeTracer.hpp</in>
-              <in>bytecodes.cpp</in>
-              <in>bytecodes.hpp</in>
-              <in>cppInterpreter.cpp</in>
-              <in>cppInterpreter.hpp</in>
-              <in>cppInterpreterGenerator.cpp</in>
-              <in>cppInterpreterGenerator.hpp</in>
-              <in>interp_masm.hpp</in>
-              <in>interpreter.cpp</in>
-              <in>interpreter.hpp</in>
-              <in>interpreterRuntime.cpp</in>
-              <in>interpreterRuntime.hpp</in>
-              <in>invocationCounter.cpp</in>
-              <in>invocationCounter.hpp</in>
-              <in>linkResolver.cpp</in>
-              <in>linkResolver.hpp</in>
-              <in>oopMapCache.cpp</in>
-              <in>oopMapCache.hpp</in>
-              <in>rewriter.cpp</in>
-              <in>rewriter.hpp</in>
-              <in>templateInterpreter.cpp</in>
-              <in>templateInterpreter.hpp</in>
-              <in>templateInterpreterGenerator.cpp</in>
-              <in>templateInterpreterGenerator.hpp</in>
-              <in>templateTable.cpp</in>
-              <in>templateTable.hpp</in>
-            </df>
-            <df name="jvmci">
-              <in>compilerRuntime.cpp</in>
-              <in>compilerRuntime.hpp</in>
-              <in>jvmciCodeInstaller.cpp</in>
-              <in>jvmciCodeInstaller.hpp</in>
-              <in>jvmciCompiler.cpp</in>
-              <in>jvmciCompiler.hpp</in>
-              <in>jvmciCompilerToVM.cpp</in>
-              <in>jvmciCompilerToVM.hpp</in>
-              <in>jvmciEnv.cpp</in>
-              <in>jvmciEnv.hpp</in>
-              <in>jvmciJavaClasses.cpp</in>
-              <in>jvmciJavaClasses.hpp</in>
-              <in>jvmciRuntime.cpp</in>
-              <in>jvmciRuntime.hpp</in>
-              <in>jvmci_globals.cpp</in>
-              <in>jvmci_globals.hpp</in>
-              <in>systemDictionary_jvmci.hpp</in>
-              <in>vmStructs_compiler_runtime.hpp</in>
-              <in>vmStructs_jvmci.cpp</in>
-              <in>vmStructs_jvmci.hpp</in>
-              <in>vmSymbols_jvmci.hpp</in>
-            </df>
-            <df name="libadt">
-              <in>dict.cpp</in>
-              <in>dict.hpp</in>
-              <in>set.cpp</in>
-              <in>set.hpp</in>
-              <in>vectset.cpp</in>
-              <in>vectset.hpp</in>
-            </df>
-            <df name="logging">
-              <in>log.hpp</in>
-              <in>logConfiguration.cpp</in>
-              <in>logConfiguration.hpp</in>
-              <in>logDecorations.cpp</in>
-              <in>logDecorations.hpp</in>
-              <in>logDecorators.cpp</in>
-              <in>logDecorators.hpp</in>
-              <in>logDiagnosticCommand.cpp</in>
-              <in>logDiagnosticCommand.hpp</in>
-              <in>logFileOutput.cpp</in>
-              <in>logFileOutput.hpp</in>
-              <in>logFileStreamOutput.cpp</in>
-              <in>logFileStreamOutput.hpp</in>
-              <in>logHandle.hpp</in>
-              <in>logLevel.cpp</in>
-              <in>logLevel.hpp</in>
-              <in>logMessage.hpp</in>
-              <in>logMessageBuffer.cpp</in>
-              <in>logMessageBuffer.hpp</in>
-              <in>logOutput.cpp</in>
-              <in>logOutput.hpp</in>
-              <in>logOutputList.cpp</in>
-              <in>logOutputList.hpp</in>
-              <in>logPrefix.hpp</in>
-              <in>logStream.cpp</in>
-              <in>logStream.hpp</in>
-              <in>logTag.cpp</in>
-              <in>logTag.hpp</in>
-              <in>logTagLevelExpression.cpp</in>
-              <in>logTagLevelExpression.hpp</in>
-              <in>logTagSet.cpp</in>
-              <in>logTagSet.hpp</in>
-              <in>logTagSetDescriptions.cpp</in>
-              <in>logTagSetDescriptions.hpp</in>
-              <in>logTag_ext.hpp</in>
-            </df>
-            <df name="memory">
-              <in>allocation.cpp</in>
-              <in>allocation.hpp</in>
-              <in>allocation.inline.hpp</in>
-              <in>arena.cpp</in>
-              <in>arena.hpp</in>
-              <in>binaryTreeDictionary.cpp</in>
-              <in>binaryTreeDictionary.hpp</in>
-              <in>filemap.cpp</in>
-              <in>filemap.hpp</in>
-              <in>freeList.cpp</in>
-              <in>freeList.hpp</in>
-              <in>guardedMemory.cpp</in>
-              <in>guardedMemory.hpp</in>
-              <in>heap.cpp</in>
-              <in>heap.hpp</in>
-              <in>heapInspection.cpp</in>
-              <in>heapInspection.hpp</in>
-              <in>iterator.cpp</in>
-              <in>iterator.hpp</in>
-              <in>iterator.inline.hpp</in>
-              <in>memRegion.cpp</in>
-              <in>memRegion.hpp</in>
-              <in>metachunk.cpp</in>
-              <in>metachunk.hpp</in>
-              <in>metadataFactory.hpp</in>
-              <in>metaspace.cpp</in>
-              <in>metaspace.hpp</in>
-              <in>metaspaceChunkFreeListSummary.hpp</in>
-              <in>metaspaceClosure.cpp</in>
-              <in>metaspaceClosure.hpp</in>
-              <in>metaspaceCounters.cpp</in>
-              <in>metaspaceCounters.hpp</in>
-              <in>metaspaceGCThresholdUpdater.hpp</in>
-              <in>metaspaceShared.cpp</in>
-              <in>metaspaceShared.hpp</in>
-              <in>metaspaceTracer.cpp</in>
-              <in>metaspaceTracer.hpp</in>
-              <in>oopFactory.cpp</in>
-              <in>oopFactory.hpp</in>
-              <in>operator_new.cpp</in>
-              <in>padded.hpp</in>
-              <in>padded.inline.hpp</in>
-              <in>referenceType.hpp</in>
-              <in>resourceArea.cpp</in>
-              <in>resourceArea.hpp</in>
-              <in>universe.cpp</in>
-              <in>universe.hpp</in>
-              <in>universe.inline.hpp</in>
-              <in>universe_ext.cpp</in>
-              <in>virtualspace.cpp</in>
-              <in>virtualspace.hpp</in>
-            </df>
-            <df name="metaprogramming">
-              <in>conditional.hpp</in>
-              <in>decay.hpp</in>
-              <in>enableIf.hpp</in>
-              <in>integralConstant.hpp</in>
-              <in>isConst.hpp</in>
-              <in>isFloatingPoint.hpp</in>
-              <in>isIntegral.hpp</in>
-              <in>isPointer.hpp</in>
-              <in>isRegisteredEnum.hpp</in>
-              <in>isSame.hpp</in>
-              <in>isSigned.hpp</in>
-              <in>isVolatile.hpp</in>
-              <in>primitiveConversions.hpp</in>
-              <in>removeCV.hpp</in>
-              <in>removePointer.hpp</in>
-              <in>removeReference.hpp</in>
-            </df>
-            <df name="oops">
-              <in>annotations.cpp</in>
-              <in>annotations.hpp</in>
-              <in>array.hpp</in>
-              <in>arrayKlass.cpp</in>
-              <in>arrayKlass.hpp</in>
-              <in>arrayKlass.inline.hpp</in>
-              <in>arrayOop.hpp</in>
-              <in>compiledICHolder.cpp</in>
-              <in>compiledICHolder.hpp</in>
-              <in>constMethod.cpp</in>
-              <in>constMethod.hpp</in>
-              <in>constantPool.cpp</in>
-              <in>constantPool.hpp</in>
-              <in>cpCache.cpp</in>
-              <in>cpCache.hpp</in>
-              <in>fieldInfo.hpp</in>
-              <in>fieldStreams.hpp</in>
-              <in>generateOopMap.cpp</in>
-              <in>generateOopMap.hpp</in>
-              <in>instanceClassLoaderKlass.hpp</in>
-              <in>instanceClassLoaderKlass.inline.hpp</in>
-              <in>instanceKlass.cpp</in>
-              <in>instanceKlass.hpp</in>
-              <in>instanceKlass.inline.hpp</in>
-              <in>instanceMirrorKlass.cpp</in>
-              <in>instanceMirrorKlass.hpp</in>
-              <in>instanceMirrorKlass.inline.hpp</in>
-              <in>instanceOop.cpp</in>
-              <in>instanceOop.hpp</in>
-              <in>instanceRefKlass.cpp</in>
-              <in>instanceRefKlass.hpp</in>
-              <in>instanceRefKlass.inline.hpp</in>
-              <in>klass.cpp</in>
-              <in>klass.hpp</in>
-              <in>klass.inline.hpp</in>
-              <in>klassVtable.cpp</in>
-              <in>klassVtable.hpp</in>
-              <in>markOop.cpp</in>
-              <in>markOop.hpp</in>
-              <in>markOop.inline.hpp</in>
-              <in>metadata.cpp</in>
-              <in>metadata.hpp</in>
-              <in>method.cpp</in>
-              <in>method.hpp</in>
-              <in>methodCounters.cpp</in>
-              <in>methodCounters.hpp</in>
-              <in>methodData.cpp</in>
-              <in>methodData.hpp</in>
-              <in>objArrayKlass.cpp</in>
-              <in>objArrayKlass.hpp</in>
-              <in>objArrayKlass.inline.hpp</in>
-              <in>objArrayOop.cpp</in>
-              <in>objArrayOop.hpp</in>
-              <in>objArrayOop.inline.hpp</in>
-              <in>oop.cpp</in>
-              <in>oop.hpp</in>
-              <in>oop.inline.hpp</in>
-              <in>oopHandle.hpp</in>
-              <in>oopsHierarchy.cpp</in>
-              <in>oopsHierarchy.hpp</in>
-              <in>symbol.cpp</in>
-              <in>symbol.hpp</in>
-              <in>typeArrayKlass.cpp</in>
-              <in>typeArrayKlass.hpp</in>
-              <in>typeArrayKlass.inline.hpp</in>
-              <in>typeArrayOop.hpp</in>
-              <in>typeArrayOop.inline.hpp</in>
-              <in>verifyOopClosure.hpp</in>
-            </df>
-            <df name="opto">
-              <in>ad.hpp</in>
-              <in>addnode.cpp</in>
-              <in>addnode.hpp</in>
-              <in>adlcVMDeps.hpp</in>
-              <in>arraycopynode.cpp</in>
-              <in>arraycopynode.hpp</in>
-              <in>block.cpp</in>
-              <in>block.hpp</in>
-              <in>buildOopMap.cpp</in>
-              <in>bytecodeInfo.cpp</in>
-              <in>c2_globals.cpp</in>
-              <in>c2_globals.hpp</in>
-              <in>c2compiler.cpp</in>
-              <in>c2compiler.hpp</in>
-              <in>callGenerator.cpp</in>
-              <in>callGenerator.hpp</in>
-              <in>callnode.cpp</in>
-              <in>callnode.hpp</in>
-              <in>castnode.cpp</in>
-              <in>castnode.hpp</in>
-              <in>cfgnode.cpp</in>
-              <in>cfgnode.hpp</in>
-              <in>chaitin.cpp</in>
-              <in>chaitin.hpp</in>
-              <in>classes.cpp</in>
-              <in>classes.hpp</in>
-              <in>coalesce.cpp</in>
-              <in>coalesce.hpp</in>
-              <in>compile.cpp</in>
-              <in>compile.hpp</in>
-              <in>connode.cpp</in>
-              <in>connode.hpp</in>
-              <in>convertnode.cpp</in>
-              <in>convertnode.hpp</in>
-              <in>countbitsnode.cpp</in>
-              <in>countbitsnode.hpp</in>
-              <in>divnode.cpp</in>
-              <in>divnode.hpp</in>
-              <in>doCall.cpp</in>
-              <in>domgraph.cpp</in>
-              <in>escape.cpp</in>
-              <in>escape.hpp</in>
-              <in>gcm.cpp</in>
-              <in>generateOptoStub.cpp</in>
-              <in>graphKit.cpp</in>
-              <in>graphKit.hpp</in>
-              <in>idealGraphPrinter.cpp</in>
-              <in>idealGraphPrinter.hpp</in>
-              <in>idealKit.cpp</in>
-              <in>idealKit.hpp</in>
-              <in>ifg.cpp</in>
-              <in>ifnode.cpp</in>
-              <in>indexSet.cpp</in>
-              <in>indexSet.hpp</in>
-              <in>intrinsicnode.cpp</in>
-              <in>intrinsicnode.hpp</in>
-              <in>lcm.cpp</in>
-              <in>library_call.cpp</in>
-              <in>live.cpp</in>
-              <in>live.hpp</in>
-              <in>locknode.cpp</in>
-              <in>locknode.hpp</in>
-              <in>loopPredicate.cpp</in>
-              <in>loopTransform.cpp</in>
-              <in>loopUnswitch.cpp</in>
-              <in>loopnode.cpp</in>
-              <in>loopnode.hpp</in>
-              <in>loopopts.cpp</in>
-              <in>machnode.cpp</in>
-              <in>machnode.hpp</in>
-              <in>macro.cpp</in>
-              <in>macro.hpp</in>
-              <in>macroArrayCopy.cpp</in>
-              <in>matcher.cpp</in>
-              <in>matcher.hpp</in>
-              <in>mathexactnode.cpp</in>
-              <in>mathexactnode.hpp</in>
-              <in>memnode.cpp</in>
-              <in>memnode.hpp</in>
-              <in>movenode.cpp</in>
-              <in>movenode.hpp</in>
-              <in>mulnode.cpp</in>
-              <in>mulnode.hpp</in>
-              <in>multnode.cpp</in>
-              <in>multnode.hpp</in>
-              <in>narrowptrnode.cpp</in>
-              <in>narrowptrnode.hpp</in>
-              <in>node.cpp</in>
-              <in>node.hpp</in>
-              <in>opaquenode.cpp</in>
-              <in>opaquenode.hpp</in>
-              <in>opcodes.cpp</in>
-              <in>opcodes.hpp</in>
-              <in>optoreg.hpp</in>
-              <in>output.cpp</in>
-              <in>output.hpp</in>
-              <in>parse.hpp</in>
-              <in>parse1.cpp</in>
-              <in>parse2.cpp</in>
-              <in>parse3.cpp</in>
-              <in>parseHelper.cpp</in>
-              <in>phase.cpp</in>
-              <in>phase.hpp</in>
-              <in>phaseX.cpp</in>
-              <in>phaseX.hpp</in>
-              <in>phasetype.hpp</in>
-              <in>postaloc.cpp</in>
-              <in>reg_split.cpp</in>
-              <in>regalloc.cpp</in>
-              <in>regalloc.hpp</in>
-              <in>regmask.cpp</in>
-              <in>regmask.hpp</in>
-              <in>replacednodes.cpp</in>
-              <in>replacednodes.hpp</in>
-              <in>rootnode.cpp</in>
-              <in>rootnode.hpp</in>
-              <in>runtime.cpp</in>
-              <in>runtime.hpp</in>
-              <in>split_if.cpp</in>
-              <in>stringopts.cpp</in>
-              <in>stringopts.hpp</in>
-              <in>subnode.cpp</in>
-              <in>subnode.hpp</in>
-              <in>superword.cpp</in>
-              <in>superword.hpp</in>
-              <in>type.cpp</in>
-              <in>type.hpp</in>
-              <in>vectornode.cpp</in>
-              <in>vectornode.hpp</in>
-            </df>
-            <df name="precompiled">
-              <in>precompiled.hpp</in>
-            </df>
-            <df name="prims">
-              <df name="wbtestmethods">
-                <in>parserTests.cpp</in>
-                <in>parserTests.hpp</in>
-              </df>
-              <in>evmCompat.cpp</in>
-              <in>forte.cpp</in>
-              <in>forte.hpp</in>
-              <in>jni.cpp</in>
-              <in>jni.h</in>
-              <in>jniCheck.cpp</in>
-              <in>jniCheck.hpp</in>
-              <in>jniExport.hpp</in>
-              <in>jniFastGetField.cpp</in>
-              <in>jniFastGetField.hpp</in>
-              <in>jni_md.h</in>
-              <in>jvm.cpp</in>
-              <in>jvm.h</in>
-              <in>jvm_misc.hpp</in>
-              <in>jvmtiAgentThread.hpp</in>
-              <in>jvmtiClassFileReconstituter.cpp</in>
-              <in>jvmtiClassFileReconstituter.hpp</in>
-              <in>jvmtiCodeBlobEvents.cpp</in>
-              <in>jvmtiCodeBlobEvents.hpp</in>
-              <in>jvmtiEnter.inline.hpp</in>
-              <in>jvmtiEnv.cpp</in>
-              <in>jvmtiEnvBase.cpp</in>
-              <in>jvmtiEnvBase.hpp</in>
-              <in>jvmtiEnvThreadState.cpp</in>
-              <in>jvmtiEnvThreadState.hpp</in>
-              <in>jvmtiEventController.cpp</in>
-              <in>jvmtiEventController.hpp</in>
-              <in>jvmtiEventController.inline.hpp</in>
-              <in>jvmtiExport.cpp</in>
-              <in>jvmtiExport.hpp</in>
-              <in>jvmtiExtensions.cpp</in>
-              <in>jvmtiExtensions.hpp</in>
-              <in>jvmtiGetLoadedClasses.cpp</in>
-              <in>jvmtiGetLoadedClasses.hpp</in>
-              <in>jvmtiImpl.cpp</in>
-              <in>jvmtiImpl.hpp</in>
-              <in>jvmtiManageCapabilities.cpp</in>
-              <in>jvmtiManageCapabilities.hpp</in>
-              <in>jvmtiRawMonitor.cpp</in>
-              <in>jvmtiRawMonitor.hpp</in>
-              <in>jvmtiRedefineClasses.cpp</in>
-              <in>jvmtiRedefineClasses.hpp</in>
-              <in>jvmtiTagMap.cpp</in>
-              <in>jvmtiTagMap.hpp</in>
-              <in>jvmtiThreadState.cpp</in>
-              <in>jvmtiThreadState.hpp</in>
-              <in>jvmtiThreadState.inline.hpp</in>
-              <in>jvmtiTrace.cpp</in>
-              <in>jvmtiTrace.hpp</in>
-              <in>jvmtiUtil.cpp</in>
-              <in>jvmtiUtil.hpp</in>
-              <in>methodComparator.cpp</in>
-              <in>methodComparator.hpp</in>
-              <in>methodHandles.cpp</in>
-              <in>methodHandles.hpp</in>
-              <in>nativeLookup.cpp</in>
-              <in>nativeLookup.hpp</in>
-              <in>perf.cpp</in>
-              <in>privilegedStack.cpp</in>
-              <in>privilegedStack.hpp</in>
-              <in>resolvedMethodTable.cpp</in>
-              <in>resolvedMethodTable.hpp</in>
-              <in>stackwalk.cpp</in>
-              <in>stackwalk.hpp</in>
-              <in>unsafe.cpp</in>
-              <in>unsafe.hpp</in>
-              <in>whitebox.cpp</in>
-              <in>whitebox.hpp</in>
-              <in>whitebox_ext.cpp</in>
-            </df>
-            <df name="runtime">
-              <in>advancedThresholdPolicy.cpp</in>
-              <in>advancedThresholdPolicy.hpp</in>
-              <in>arguments.cpp</in>
-              <in>arguments.hpp</in>
-              <in>arguments_ext.cpp</in>
-              <in>atomic.hpp</in>
-              <in>basicLock.cpp</in>
-              <in>basicLock.hpp</in>
-              <in>biasedLocking.cpp</in>
-              <in>biasedLocking.hpp</in>
-              <in>commandLineFlagConstraintList.cpp</in>
-              <in>commandLineFlagConstraintList.hpp</in>
-              <in>commandLineFlagConstraintsCompiler.cpp</in>
-              <in>commandLineFlagConstraintsCompiler.hpp</in>
-              <in>commandLineFlagConstraintsGC.cpp</in>
-              <in>commandLineFlagConstraintsGC.hpp</in>
-              <in>commandLineFlagConstraintsRuntime.cpp</in>
-              <in>commandLineFlagConstraintsRuntime.hpp</in>
-              <in>commandLineFlagRangeList.cpp</in>
-              <in>commandLineFlagRangeList.hpp</in>
-              <in>commandLineFlagWriteableList.cpp</in>
-              <in>commandLineFlagWriteableList.hpp</in>
-              <in>compilationPolicy.cpp</in>
-              <in>compilationPolicy.hpp</in>
-              <in>deoptimization.cpp</in>
-              <in>deoptimization.hpp</in>
-              <in>extendedPC.hpp</in>
-              <in>fieldDescriptor.cpp</in>
-              <in>fieldDescriptor.hpp</in>
-              <in>fieldType.cpp</in>
-              <in>fieldType.hpp</in>
-              <in>frame.cpp</in>
-              <in>frame.hpp</in>
-              <in>frame.inline.hpp</in>
-              <in>globals.cpp</in>
-              <in>globals.hpp</in>
-              <in>globals_ext.hpp</in>
-              <in>globals_extension.hpp</in>
-              <in>handles.cpp</in>
-              <in>handles.hpp</in>
-              <in>handles.inline.hpp</in>
-              <in>icache.cpp</in>
-              <in>icache.hpp</in>
-              <in>init.cpp</in>
-              <in>init.hpp</in>
-              <in>interfaceSupport.cpp</in>
-              <in>interfaceSupport.hpp</in>
-              <in>java.cpp</in>
-              <in>java.hpp</in>
-              <in>javaCalls.cpp</in>
-              <in>javaCalls.hpp</in>
-              <in>javaFrameAnchor.hpp</in>
-              <in>jfieldIDWorkaround.hpp</in>
-              <in>jniHandles.cpp</in>
-              <in>jniHandles.hpp</in>
-              <in>jniPeriodicChecker.cpp</in>
-              <in>jniPeriodicChecker.hpp</in>
-              <in>memprofiler.cpp</in>
-              <in>memprofiler.hpp</in>
-              <in>monitorChunk.cpp</in>
-              <in>monitorChunk.hpp</in>
-              <in>mutex.cpp</in>
-              <in>mutex.hpp</in>
-              <in>mutexLocker.cpp</in>
-              <in>mutexLocker.hpp</in>
-              <in>objectMonitor.cpp</in>
-              <in>objectMonitor.hpp</in>
-              <in>objectMonitor.inline.hpp</in>
-              <in>orderAccess.cpp</in>
-              <in>orderAccess.hpp</in>
-              <in>orderAccess.inline.hpp</in>
-              <in>os.cpp</in>
-              <in>os.hpp</in>
-              <in>os.inline.hpp</in>
-              <in>osThread.cpp</in>
-              <in>osThread.hpp</in>
-              <in>os_ext.hpp</in>
-              <in>park.cpp</in>
-              <in>park.hpp</in>
-              <in>perfData.cpp</in>
-              <in>perfData.hpp</in>
-              <in>perfMemory.cpp</in>
-              <in>perfMemory.hpp</in>
-              <in>prefetch.hpp</in>
-              <in>prefetch.inline.hpp</in>
-              <in>reflection.cpp</in>
-              <in>reflection.hpp</in>
-              <in>reflectionUtils.cpp</in>
-              <in>reflectionUtils.hpp</in>
-              <in>registerMap.hpp</in>
-              <in>relocator.cpp</in>
-              <in>relocator.hpp</in>
-              <in>rframe.cpp</in>
-              <in>rframe.hpp</in>
-              <in>rtmLocking.cpp</in>
-              <in>rtmLocking.hpp</in>
-              <in>safepoint.cpp</in>
-              <in>safepoint.hpp</in>
-              <in>semaphore.hpp</in>
-              <in>serviceThread.cpp</in>
-              <in>serviceThread.hpp</in>
-              <in>sharedRuntime.cpp</in>
-              <in>sharedRuntime.hpp</in>
-              <in>sharedRuntimeMath.hpp</in>
-              <in>sharedRuntimeTrans.cpp</in>
-              <in>sharedRuntimeTrig.cpp</in>
-              <in>signature.cpp</in>
-              <in>signature.hpp</in>
-              <in>simpleThresholdPolicy.cpp</in>
-              <in>simpleThresholdPolicy.hpp</in>
-              <in>simpleThresholdPolicy.inline.hpp</in>
-              <in>stackValue.cpp</in>
-              <in>stackValue.hpp</in>
-              <in>stackValueCollection.cpp</in>
-              <in>stackValueCollection.hpp</in>
-              <in>statSampler.cpp</in>
-              <in>statSampler.hpp</in>
-              <in>stubCodeGenerator.cpp</in>
-              <in>stubCodeGenerator.hpp</in>
-              <in>stubRoutines.cpp</in>
-              <in>stubRoutines.hpp</in>
-              <in>sweeper.cpp</in>
-              <in>sweeper.hpp</in>
-              <in>synchronizer.cpp</in>
-              <in>synchronizer.hpp</in>
-              <in>task.cpp</in>
-              <in>task.hpp</in>
-              <in>thread.cpp</in>
-              <in>thread.hpp</in>
-              <in>thread.inline.hpp</in>
-              <in>threadCritical.hpp</in>
-              <in>threadLocalStorage.hpp</in>
-              <in>thread_ext.cpp</in>
-              <in>thread_ext.hpp</in>
-              <in>timer.cpp</in>
-              <in>timer.hpp</in>
-              <in>timerTrace.cpp</in>
-              <in>timerTrace.hpp</in>
-              <in>unhandledOops.cpp</in>
-              <in>unhandledOops.hpp</in>
-              <in>vframe.cpp</in>
-              <in>vframe.hpp</in>
-              <in>vframeArray.cpp</in>
-              <in>vframeArray.hpp</in>
-              <in>vframe_hp.cpp</in>
-              <in>vframe_hp.hpp</in>
-              <in>vmStructs.cpp</in>
-              <in>vmStructs.hpp</in>
-              <in>vmStructs_ext.hpp</in>
-              <in>vmStructs_trace.hpp</in>
-              <in>vmThread.cpp</in>
-              <in>vmThread.hpp</in>
-              <in>vm_operations.cpp</in>
-              <in>vm_operations.hpp</in>
-              <in>vm_version.cpp</in>
-              <in>vm_version.hpp</in>
-            </df>
-            <df name="services">
-              <in>allocationContextService.hpp</in>
-              <in>allocationSite.hpp</in>
-              <in>attachListener.cpp</in>
-              <in>attachListener.hpp</in>
-              <in>classLoadingService.cpp</in>
-              <in>classLoadingService.hpp</in>
-              <in>diagnosticArgument.cpp</in>
-              <in>diagnosticArgument.hpp</in>
-              <in>diagnosticCommand.cpp</in>
-              <in>diagnosticCommand.hpp</in>
-              <in>diagnosticFramework.cpp</in>
-              <in>diagnosticFramework.hpp</in>
-              <in>dtraceAttacher.cpp</in>
-              <in>dtraceAttacher.hpp</in>
-              <in>g1MemoryPool.cpp</in>
-              <in>g1MemoryPool.hpp</in>
-              <in>gcNotifier.cpp</in>
-              <in>gcNotifier.hpp</in>
-              <in>heapDumper.cpp</in>
-              <in>heapDumper.hpp</in>
-              <in>jmm.h</in>
-              <in>lowMemoryDetector.cpp</in>
-              <in>lowMemoryDetector.hpp</in>
-              <in>mallocSiteTable.cpp</in>
-              <in>mallocSiteTable.hpp</in>
-              <in>mallocTracker.cpp</in>
-              <in>mallocTracker.hpp</in>
-              <in>mallocTracker.inline.hpp</in>
-              <in>management.cpp</in>
-              <in>management.hpp</in>
-              <in>memBaseline.cpp</in>
-              <in>memBaseline.hpp</in>
-              <in>memReporter.cpp</in>
-              <in>memReporter.hpp</in>
-              <in>memTracker.cpp</in>
-              <in>memTracker.hpp</in>
-              <in>memoryManager.cpp</in>
-              <in>memoryManager.hpp</in>
-              <in>memoryPool.cpp</in>
-              <in>memoryPool.hpp</in>
-              <in>memoryService.cpp</in>
-              <in>memoryService.hpp</in>
-              <in>memoryUsage.hpp</in>
-              <in>nmtCommon.cpp</in>
-              <in>nmtCommon.hpp</in>
-              <in>nmtDCmd.cpp</in>
-              <in>nmtDCmd.hpp</in>
-              <in>psMemoryPool.cpp</in>
-              <in>psMemoryPool.hpp</in>
-              <in>runtimeService.cpp</in>
-              <in>runtimeService.hpp</in>
-              <in>serviceUtil.hpp</in>
-              <in>threadService.cpp</in>
-              <in>threadService.hpp</in>
-              <in>virtualMemoryTracker.cpp</in>
-              <in>virtualMemoryTracker.hpp</in>
-              <in>writeableFlags.cpp</in>
-              <in>writeableFlags.hpp</in>
-            </df>
-            <df name="shark">
-              <in>llvmHeaders.hpp</in>
-              <in>llvmValue.hpp</in>
-              <in>sharkBlock.cpp</in>
-              <in>sharkBlock.hpp</in>
-              <in>sharkBuilder.cpp</in>
-              <in>sharkBuilder.hpp</in>
-              <in>sharkCacheDecache.cpp</in>
-              <in>sharkCacheDecache.hpp</in>
-              <in>sharkCodeBuffer.hpp</in>
-              <in>sharkCompiler.cpp</in>
-              <in>sharkCompiler.hpp</in>
-              <in>sharkConstant.cpp</in>
-              <in>sharkConstant.hpp</in>
-              <in>sharkContext.cpp</in>
-              <in>sharkContext.hpp</in>
-              <in>sharkEntry.hpp</in>
-              <in>sharkFunction.cpp</in>
-              <in>sharkFunction.hpp</in>
-              <in>sharkInliner.cpp</in>
-              <in>sharkInliner.hpp</in>
-              <in>sharkIntrinsics.cpp</in>
-              <in>sharkIntrinsics.hpp</in>
-              <in>sharkInvariants.cpp</in>
-              <in>sharkInvariants.hpp</in>
-              <in>sharkMemoryManager.cpp</in>
-              <in>sharkMemoryManager.hpp</in>
-              <in>sharkNativeWrapper.cpp</in>
-              <in>sharkNativeWrapper.hpp</in>
-              <in>sharkRuntime.cpp</in>
-              <in>sharkRuntime.hpp</in>
-              <in>sharkStack.cpp</in>
-              <in>sharkStack.hpp</in>
-              <in>sharkState.cpp</in>
-              <in>sharkState.hpp</in>
-              <in>sharkStateScanner.cpp</in>
-              <in>sharkStateScanner.hpp</in>
-              <in>sharkTopLevelBlock.cpp</in>
-              <in>sharkTopLevelBlock.hpp</in>
-              <in>sharkType.hpp</in>
-              <in>sharkValue.cpp</in>
-              <in>sharkValue.hpp</in>
-              <in>shark_globals.cpp</in>
-              <in>shark_globals.hpp</in>
-            </df>
-            <df name="trace">
-              <in>noTraceBackend.hpp</in>
-              <in>traceBackend.cpp</in>
-              <in>traceBackend.hpp</in>
-              <in>traceDataTypes.hpp</in>
-              <in>traceEvent.hpp</in>
-              <in>traceMacros.hpp</in>
-              <in>traceStream.cpp</in>
-              <in>traceStream.hpp</in>
-              <in>traceTime.hpp</in>
-              <in>tracing.hpp</in>
-              <in>xinclude.mod</in>
-            </df>
-            <df name="utilities">
-              <in>accessFlags.cpp</in>
-              <in>accessFlags.hpp</in>
-              <in>align.hpp</in>
-              <in>bitMap.cpp</in>
-              <in>bitMap.hpp</in>
-              <in>bitMap.inline.hpp</in>
-              <in>breakpoint.hpp</in>
-              <in>bytes.hpp</in>
-              <in>chunkedList.hpp</in>
-              <in>compilerWarnings.hpp</in>
-              <in>constantTag.cpp</in>
-              <in>constantTag.hpp</in>
-              <in>copy.cpp</in>
-              <in>copy.hpp</in>
-              <in>count_trailing_zeros.hpp</in>
-              <in>debug.cpp</in>
-              <in>debug.hpp</in>
-              <in>decoder.cpp</in>
-              <in>decoder.hpp</in>
-              <in>decoder_elf.cpp</in>
-              <in>decoder_elf.hpp</in>
-              <in>defaultStream.hpp</in>
-              <in>dtrace.hpp</in>
-              <in>dtrace_disabled.hpp</in>
-              <in>elfFile.cpp</in>
-              <in>elfFile.hpp</in>
-              <in>elfFuncDescTable.cpp</in>
-              <in>elfFuncDescTable.hpp</in>
-              <in>elfStringTable.cpp</in>
-              <in>elfStringTable.hpp</in>
-              <in>elfSymbolTable.cpp</in>
-              <in>elfSymbolTable.hpp</in>
-              <in>events.cpp</in>
-              <in>events.hpp</in>
-              <in>exceptions.cpp</in>
-              <in>exceptions.hpp</in>
-              <in>fakeRttiSupport.hpp</in>
-              <in>formatBuffer.cpp</in>
-              <in>formatBuffer.hpp</in>
-              <in>globalDefinitions.cpp</in>
-              <in>globalDefinitions.hpp</in>
-              <in>globalDefinitions_gcc.hpp</in>
-              <in>globalDefinitions_solstudio.hpp</in>
-              <in>globalDefinitions_visCPP.hpp</in>
-              <in>globalDefinitions_xlc.hpp</in>
-              <in>growableArray.cpp</in>
-              <in>growableArray.hpp</in>
-              <in>hashtable.cpp</in>
-              <in>hashtable.hpp</in>
-              <in>hashtable.inline.hpp</in>
-              <in>histogram.cpp</in>
-              <in>histogram.hpp</in>
-              <in>intHisto.cpp</in>
-              <in>intHisto.hpp</in>
-              <in>internalVMTests.cpp</in>
-              <in>internalVMTests.hpp</in>
-              <in>json.cpp</in>
-              <in>json.hpp</in>
-              <in>linkedlist.hpp</in>
-              <in>macros.hpp</in>
-              <in>nativeCallStack.cpp</in>
-              <in>nativeCallStack.hpp</in>
-              <in>numberSeq.cpp</in>
-              <in>numberSeq.hpp</in>
-              <in>ostream.cpp</in>
-              <in>ostream.hpp</in>
-              <in>pair.hpp</in>
-              <in>preserveException.cpp</in>
-              <in>preserveException.hpp</in>
-              <in>quickSort.hpp</in>
-              <in>resourceHash.hpp</in>
-              <in>sizes.cpp</in>
-              <in>sizes.hpp</in>
-              <in>stack.hpp</in>
-              <in>stack.inline.hpp</in>
-              <in>stringUtils.cpp</in>
-              <in>stringUtils.hpp</in>
-              <in>ticks.cpp</in>
-              <in>ticks.hpp</in>
-              <in>utf8.cpp</in>
-              <in>utf8.hpp</in>
-              <in>vmError.cpp</in>
-              <in>vmError.hpp</in>
-              <in>xmlstream.cpp</in>
-              <in>xmlstream.hpp</in>
-            </df>
-            <in>Xusage.txt</in>
-          </df>
-        </df>
-        <df name="java.base">
-          <df name="aix">
-            <df name="native">
-              <df name="libjava">
-                <in>ProcessHandleImpl_aix.c</in>
-              </df>
-              <df name="libjli">
-                <in>java_md_aix.c</in>
-                <in>java_md_aix.h</in>
-              </df>
-              <df name="libjsig">
-                <in>jsig.c</in>
-              </df>
-              <df name="libnet">
-                <in>aix_close.c</in>
-              </df>
-              <df name="libnio">
-                <df name="ch">
-                  <in>AixPollPort.c</in>
-                </df>
-                <df name="fs">
-                  <in>AixNativeDispatcher.c</in>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="linux">
-            <df name="native">
-              <df name="libjava">
-                <in>ProcessHandleImpl_linux.c</in>
-              </df>
-              <df name="libjsig">
-                <in>jsig.c</in>
-              </df>
-              <df name="libnet">
-                <in>linux_close.c</in>
-              </df>
-              <df name="libnio">
-                <df name="ch">
-                  <in>EPoll.c</in>
-                  <in>EPollArrayWrapper.c</in>
-                  <in>EPollPort.c</in>
-                </df>
-                <df name="fs">
-                  <in>LinuxNativeDispatcher.c</in>
-                  <in>LinuxWatchService.c</in>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="macosx">
-            <df name="native">
-              <df name="include">
-                <in>jni_md.h</in>
-                <in>jvm_md.h</in>
-              </df>
-              <df name="libjava">
-                <in>HostLocaleProviderAdapter_md.c</in>
-                <in>ProcessHandleImpl_macosx.c</in>
-                <in>java_props_macosx.c</in>
-                <in>java_props_macosx.h</in>
-              </df>
-              <df name="libjli">
-                <in>java_md_macosx.c</in>
-                <in>java_md_macosx.h</in>
-              </df>
-              <df name="libjsig">
-                <in>jsig.c</in>
-              </df>
-              <df name="libnet">
-                <in>DefaultProxySelector.c</in>
-                <in>bsd_close.c</in>
-              </df>
-              <df name="libnio">
-                <df name="ch">
-                  <in>KQueue.c</in>
-                  <in>KQueueArrayWrapper.c</in>
-                  <in>KQueuePort.c</in>
-                </df>
-                <df name="fs">
-                  <in>BsdNativeDispatcher.c</in>
-                  <in>MacOSXNativeDispatcher.c</in>
-                  <in>UTIFileTypeDetector.c</in>
-                </df>
-              </df>
-              <df name="libosxsecurity">
-                <in>KeystoreImpl.m</in>
-              </df>
-            </df>
-          </df>
-          <df name="share">
-            <df name="classes">
-              <df name="jdk">
-                <df name="internal">
-                  <df name="org">
-                    <df name="objectweb">
-                      <df name="asm">
-                        <in>version.txt</in>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="conf">
-              <df name="security">
-                <df name="policy">
-                  <in>README.txt</in>
-                </df>
-              </df>
-            </df>
-            <df name="native">
-              <df name="include">
-                <in>classfile_constants.h</in>
-                <in>jni.h</in>
-                <in>jvm.h</in>
-                <in>jvmticmlr.h</in>
-              </df>
-              <df name="launcher">
-                <in>defines.h</in>
-                <in>main.c</in>
-              </df>
-              <df name="libfdlibm">
-                <in>e_acos.c</in>
-                <in>e_asin.c</in>
-                <in>e_atan2.c</in>
-                <in>e_atanh.c</in>
-                <in>e_cosh.c</in>
-                <in>e_exp.c</in>
-                <in>e_fmod.c</in>
-                <in>e_log.c</in>
-                <in>e_log10.c</in>
-                <in>e_rem_pio2.c</in>
-                <in>e_remainder.c</in>
-                <in>e_scalb.c</in>
-                <in>e_sinh.c</in>
-                <in>e_sqrt.c</in>
-                <in>fdlibm.h</in>
-                <in>jfdlibm.h</in>
-                <in>k_cos.c</in>
-                <in>k_rem_pio2.c</in>
-                <in>k_sin.c</in>
-                <in>k_standard.c</in>
-                <in>k_tan.c</in>
-                <in>s_atan.c</in>
-                <in>s_ceil.c</in>
-                <in>s_copysign.c</in>
-                <in>s_cos.c</in>
-                <in>s_expm1.c</in>
-                <in>s_fabs.c</in>
-                <in>s_finite.c</in>
-                <in>s_floor.c</in>
-                <in>s_frexp.c</in>
-                <in>s_ilogb.c</in>
-                <in>s_isnan.c</in>
-                <in>s_ldexp.c</in>
-                <in>s_lib_version.c</in>
-                <in>s_log1p.c</in>
-                <in>s_logb.c</in>
-                <in>s_matherr.c</in>
-                <in>s_modf.c</in>
-                <in>s_nextafter.c</in>
-                <in>s_rint.c</in>
-                <in>s_scalbn.c</in>
-                <in>s_signgam.c</in>
-                <in>s_significand.c</in>
-                <in>s_sin.c</in>
-                <in>s_tan.c</in>
-                <in>s_tanh.c</in>
-                <in>w_acos.c</in>
-                <in>w_asin.c</in>
-                <in>w_atan2.c</in>
-                <in>w_atanh.c</in>
-                <in>w_cosh.c</in>
-                <in>w_exp.c</in>
-                <in>w_fmod.c</in>
-                <in>w_log.c</in>
-                <in>w_log10.c</in>
-                <in>w_remainder.c</in>
-                <in>w_scalb.c</in>
-                <in>w_sinh.c</in>
-                <in>w_sqrt.c</in>
-              </df>
-              <df name="libjava">
-                <in>AccessController.c</in>
-                <in>Array.c</in>
-                <in>AtomicLong.c</in>
-                <in>BootLoader.c</in>
-                <in>Class.c</in>
-                <in>ClassLoader.c</in>
-                <in>ConstantPool.c</in>
-                <in>Double.c</in>
-                <in>Executable.c</in>
-                <in>Field.c</in>
-                <in>FileInputStream.c</in>
-                <in>Float.c</in>
-                <in>Module.c</in>
-                <in>NativeAccessors.c</in>
-                <in>Object.c</in>
-                <in>ObjectInputStream.c</in>
-                <in>ObjectOutputStream.c</in>
-                <in>ObjectStreamClass.c</in>
-                <in>RandomAccessFile.c</in>
-                <in>Reference.c</in>
-                <in>Reflection.c</in>
-                <in>Runtime.c</in>
-                <in>SecurityManager.c</in>
-                <in>Shutdown.c</in>
-                <in>Signal.c</in>
-                <in>StackStreamFactory.c</in>
-                <in>StackTraceElement.c</in>
-                <in>StrictMath.c</in>
-                <in>String.c</in>
-                <in>StringCoding.c</in>
-                <in>System.c</in>
-                <in>Thread.c</in>
-                <in>Throwable.c</in>
-                <in>TimeZone.c</in>
-                <in>VM.c</in>
-                <in>VMSupport.c</in>
-                <in>check_version.c</in>
-                <in>gdefs.h</in>
-                <in>io_util.c</in>
-                <in>io_util.h</in>
-                <in>java_props.h</in>
-                <in>jdk_util.c</in>
-                <in>jdk_util.h</in>
-                <in>jio.c</in>
-                <in>jlong.h</in>
-                <in>jni_util.c</in>
-                <in>jni_util.h</in>
-                <in>sizecalc.h</in>
-                <in>verify_stub.c</in>
-              </df>
-              <df name="libjimage">
-                <in>NativeImageBuffer.cpp</in>
-                <in>endian.cpp</in>
-                <in>endian.hpp</in>
-                <in>imageDecompressor.cpp</in>
-                <in>imageDecompressor.hpp</in>
-                <in>imageFile.cpp</in>
-                <in>imageFile.hpp</in>
-                <in>inttypes.hpp</in>
-                <in>jimage.cpp</in>
-                <in>jimage.hpp</in>
-                <in>osSupport.hpp</in>
-              </df>
-              <df name="libjli">
-                <in>args.c</in>
-                <in>emessages.h</in>
-                <in>java.c</in>
-                <in>java.h</in>
-                <in>jli_util.c</in>
-                <in>jli_util.h</in>
-                <in>manifest_info.h</in>
-                <in>parse_manifest.c</in>
-                <in>splashscreen.h</in>
-                <in>splashscreen_stubs.c</in>
-                <in>wildcard.c</in>
-                <in>wildcard.h</in>
-              </df>
-              <df name="libnet">
-                <in>DatagramPacket.c</in>
-                <in>Inet4Address.c</in>
-                <in>Inet6Address.c</in>
-                <in>InetAddress.c</in>
-                <in>net_util.c</in>
-                <in>net_util.h</in>
-                <in>proxy_util.c</in>
-                <in>proxy_util.h</in>
-              </df>
-              <df name="libnio">
-                <df name="ch">
-                  <in>nio.h</in>
-                </df>
-                <in>nio_util.c</in>
-              </df>
-              <df name="libverify">
-                <in>check_code.c</in>
-                <in>check_format.c</in>
-                <in>opcodes.in_out</in>
-              </df>
-              <df name="libzip">
-                <df name="zlib">
-                  <in>compress.c</in>
-                  <in>crc32.h</in>
-                  <in>deflate.c</in>
-                  <in>deflate.h</in>
-                  <in>gzclose.c</in>
-                  <in>gzguts.h</in>
-                  <in>gzlib.c</in>
-                  <in>gzread.c</in>
-                  <in>gzwrite.c</in>
-                  <in>infback.c</in>
-                  <in>inffast.c</in>
-                  <in>inffast.h</in>
-                  <in>inffixed.h</in>
-                  <in>inflate.c</in>
-                  <in>inflate.h</in>
-                  <in>inftrees.c</in>
-                  <in>inftrees.h</in>
-                  <in>trees.c</in>
-                  <in>trees.h</in>
-                  <in>uncompr.c</in>
-                  <in>zadler32.c</in>
-                  <in>zconf.h</in>
-                  <in>zcrc32.c</in>
-                  <in>zlib.h</in>
-                  <in>zutil.c</in>
-                  <in>zutil.h</in>
-                </df>
-                <in>Adler32.c</in>
-                <in>CRC32.c</in>
-                <in>Deflater.c</in>
-                <in>Inflater.c</in>
-                <in>zip_util.c</in>
-                <in>zip_util.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="solaris">
-            <df name="native">
-              <df name="libjava">
-                <in>ProcessHandleImpl_solaris.c</in>
-              </df>
-              <df name="libjsig">
-                <in>jsig.c</in>
-              </df>
-              <df name="libjvm_db">
-                <in>libjvm_db.c</in>
-                <in>libjvm_db.h</in>
-              </df>
-              <df name="libjvm_dtrace">
-                <in>jvm_dtrace.c</in>
-                <in>jvm_dtrace.h</in>
-              </df>
-              <df name="libnet">
-                <in>solaris_close.c</in>
-              </df>
-              <df name="libnio">
-                <df name="ch">
-                  <in>DevPollArrayWrapper.c</in>
-                  <in>SolarisEventPort.c</in>
-                </df>
-                <df name="fs">
-                  <in>SolarisNativeDispatcher.c</in>
-                  <in>SolarisWatchService.c</in>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="include">
-                <in>jni_md.h</in>
-                <in>jvm_md.h</in>
-              </df>
-              <df name="jspawnhelper">
-                <in>jspawnhelper.c</in>
-              </df>
-              <df name="launcher">
-                <in>jexec.c</in>
-              </df>
-              <df name="libjava">
-                <in>Console_md.c</in>
-                <in>FileDescriptor_md.c</in>
-                <in>FileOutputStream_md.c</in>
-                <in>ProcessEnvironment_md.c</in>
-                <in>ProcessHandleImpl_unix.c</in>
-                <in>ProcessHandleImpl_unix.h</in>
-                <in>ProcessImpl_md.c</in>
-                <in>TimeZone_md.c</in>
-                <in>TimeZone_md.h</in>
-                <in>UnixFileSystem_md.c</in>
-                <in>VM_md.c</in>
-                <in>canonicalize_md.c</in>
-                <in>childproc.c</in>
-                <in>childproc.h</in>
-                <in>gdefs_md.h</in>
-                <in>io_util_md.c</in>
-                <in>io_util_md.h</in>
-                <in>java_props_md.c</in>
-                <in>jdk_util_md.c</in>
-                <in>jdk_util_md.h</in>
-                <in>jlong_md.h</in>
-                <in>jni_util_md.c</in>
-                <in>locale_str.h</in>
-              </df>
-              <df name="libjimage">
-                <in>osSupport_unix.cpp</in>
-              </df>
-              <df name="libjli">
-                <in>java_md.h</in>
-                <in>java_md_common.c</in>
-                <in>java_md_solinux.c</in>
-                <in>java_md_solinux.h</in>
-              </df>
-              <df name="libnet">
-                <in>DefaultProxySelector.c</in>
-                <in>Inet4AddressImpl.c</in>
-                <in>Inet6AddressImpl.c</in>
-                <in>InetAddressImplFactory.c</in>
-                <in>NetworkInterface.c</in>
-                <in>PlainDatagramSocketImpl.c</in>
-                <in>PlainSocketImpl.c</in>
-                <in>ResolverConfigurationImpl.c</in>
-                <in>SdpSupport.c</in>
-                <in>SocketImpl.c</in>
-                <in>SocketInputStream.c</in>
-                <in>SocketOutputStream.c</in>
-                <in>net_util_md.c</in>
-                <in>net_util_md.h</in>
-                <in>portconfig.c</in>
-              </df>
-              <df name="libnio">
-                <df name="ch">
-                  <in>DatagramChannelImpl.c</in>
-                  <in>DatagramDispatcher.c</in>
-                  <in>FileChannelImpl.c</in>
-                  <in>FileDispatcherImpl.c</in>
-                  <in>FileKey.c</in>
-                  <in>IOUtil.c</in>
-                  <in>InheritedChannel.c</in>
-                  <in>NativeThread.c</in>
-                  <in>Net.c</in>
-                  <in>PollArrayWrapper.c</in>
-                  <in>ServerSocketChannelImpl.c</in>
-                  <in>SocketChannelImpl.c</in>
-                  <in>SocketDispatcher.c</in>
-                  <in>UnixAsynchronousServerSocketChannelImpl.c</in>
-                  <in>UnixAsynchronousSocketChannelImpl.c</in>
-                  <in>nio_util.h</in>
-                </df>
-                <df name="fs">
-                  <in>UnixCopyFile.c</in>
-                  <in>UnixNativeDispatcher.c</in>
-                </df>
-                <in>MappedByteBuffer.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="include">
-                <in>jni_md.h</in>
-                <in>jvm_md.h</in>
-              </df>
-              <df name="libjava">
-                <in>Console_md.c</in>
-                <in>FileDescriptor_md.c</in>
-                <in>FileOutputStream_md.c</in>
-                <in>HostLocaleProviderAdapter_md.c</in>
-                <in>ProcessEnvironment_md.c</in>
-                <in>ProcessHandleImpl_win.c</in>
-                <in>ProcessImpl_md.c</in>
-                <in>TimeZone_md.c</in>
-                <in>TimeZone_md.h</in>
-                <in>VM_md.c</in>
-                <in>Win32ErrorMode.c</in>
-                <in>WinCAPISeedGenerator.c</in>
-                <in>WinNTFileSystem_md.c</in>
-                <in>canonicalize_md.c</in>
-                <in>dirent_md.c</in>
-                <in>dirent_md.h</in>
-                <in>gdefs_md.h</in>
-                <in>io_util_md.c</in>
-                <in>io_util_md.h</in>
-                <in>java_main_md.h</in>
-                <in>java_props_md.c</in>
-                <in>jdk_util_md.c</in>
-                <in>jdk_util_md.h</in>
-                <in>jlong_md.h</in>
-                <in>jni_util_md.c</in>
-                <in>locale_str.h</in>
-              </df>
-              <df name="libjimage">
-                <in>osSupport_windows.cpp</in>
-              </df>
-              <df name="libjli">
-                <in>cmdtoargs.c</in>
-                <in>java_md.c</in>
-                <in>java_md.h</in>
-              </df>
-              <df name="libnet">
-                <in>DefaultProxySelector.c</in>
-                <in>DualStackPlainDatagramSocketImpl.c</in>
-                <in>DualStackPlainSocketImpl.c</in>
-                <in>Inet4AddressImpl.c</in>
-                <in>Inet6AddressImpl.c</in>
-                <in>InetAddressImplFactory.c</in>
-                <in>NTLMAuthSequence.c</in>
-                <in>NetworkInterface.c</in>
-                <in>NetworkInterface.h</in>
-                <in>NetworkInterface_winXP.c</in>
-                <in>ResolverConfigurationImpl.c</in>
-                <in>SocketImpl.c</in>
-                <in>SocketInputStream.c</in>
-                <in>SocketOutputStream.c</in>
-                <in>TwoStacksPlainDatagramSocketImpl.c</in>
-                <in>TwoStacksPlainSocketImpl.c</in>
-                <in>net_util_md.c</in>
-                <in>net_util_md.h</in>
-                <in>portconfig.c</in>
-              </df>
-              <df name="libnio">
-                <df name="ch">
-                  <in>DatagramChannelImpl.c</in>
-                  <in>DatagramDispatcher.c</in>
-                  <in>FileChannelImpl.c</in>
-                  <in>FileDispatcherImpl.c</in>
-                  <in>FileKey.c</in>
-                  <in>IOUtil.c</in>
-                  <in>Iocp.c</in>
-                  <in>Net.c</in>
-                  <in>ServerSocketChannelImpl.c</in>
-                  <in>SocketChannelImpl.c</in>
-                  <in>SocketDispatcher.c</in>
-                  <in>WindowsAsynchronousFileChannelImpl.c</in>
-                  <in>WindowsAsynchronousServerSocketChannelImpl.c</in>
-                  <in>WindowsAsynchronousSocketChannelImpl.c</in>
-                  <in>WindowsSelectorImpl.c</in>
-                  <in>nio_util.h</in>
-                </df>
-                <df name="fs">
-                  <in>RegistryFileTypeDetector.c</in>
-                  <in>WindowsNativeDispatcher.c</in>
-                </df>
-                <in>MappedByteBuffer.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.corba">
-          <df name="share">
-            <df name="classes">
-              <df name="com">
-                <df name="sun">
-                  <df name="corba">
-                    <df name="se">
-                      <df name="impl">
-                        <df name="corba">
-                          <in>orb_config_design.txt</in>
-                        </df>
-                        <df name="oa">
-                          <df name="poa">
-                            <in>minor_code_example.txt</in>
-                            <in>standard_minor_codes.txt</in>
-                          </df>
-                        </df>
-                        <df name="orb">
-                          <in>parsing_combinators.txt</in>
-                        </df>
-                      </df>
-                      <df name="spi">
-                        <df name="legacy">
-                          <df name="connection">
-                            <in>README.txt</in>
-                          </df>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.desktop">
-          <df name="aix">
-            <df name="native">
-              <df name="libawt">
-                <in>porting_aix.c</in>
-                <in>porting_aix.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="macosx">
-            <df name="native">
-              <df name="include">
-                <in>jawt_md.h</in>
-              </df>
-              <df name="libawt_lwawt">
-                <df name="awt">
-                  <in>AWTEvent.h</in>
-                  <in>AWTEvent.m</in>
-                  <in>AWTSurfaceLayers.h</in>
-                  <in>AWTSurfaceLayers.m</in>
-                  <in>AWTView.h</in>
-                  <in>AWTView.m</in>
-                  <in>AWTWindow.h</in>
-                  <in>AWTWindow.m</in>
-                  <in>ApplicationDelegate.h</in>
-                  <in>ApplicationDelegate.m</in>
-                  <in>CClipboard.m</in>
-                  <in>CCursorManager.m</in>
-                  <in>CDataTransferer.h</in>
-                  <in>CDataTransferer.m</in>
-                  <in>CDesktopPeer.m</in>
-                  <in>CDragSource.h</in>
-                  <in>CDragSource.m</in>
-                  <in>CDragSourceContextPeer.m</in>
-                  <in>CDropTarget.h</in>
-                  <in>CDropTarget.m</in>
-                  <in>CDropTargetContextPeer.m</in>
-                  <in>CFRetainedResource.m</in>
-                  <in>CFileDialog.h</in>
-                  <in>CFileDialog.m</in>
-                  <in>CGraphicsConfig.m</in>
-                  <in>CGraphicsDevice.m</in>
-                  <in>CGraphicsEnv.m</in>
-                  <in>CImage.m</in>
-                  <in>CInputMethod.m</in>
-                  <in>CMenu.h</in>
-                  <in>CMenu.m</in>
-                  <in>CMenuBar.h</in>
-                  <in>CMenuBar.m</in>
-                  <in>CMenuComponent.h</in>
-                  <in>CMenuComponent.m</in>
-                  <in>CMenuItem.h</in>
-                  <in>CMenuItem.m</in>
-                  <in>CPopupMenu.h</in>
-                  <in>CPopupMenu.m</in>
-                  <in>CPrinterJob.m</in>
-                  <in>CRobot.m</in>
-                  <in>CRobotKeyCode.h</in>
-                  <in>CRobotKeyCode.m</in>
-                  <in>CSystemColors.h</in>
-                  <in>CSystemColors.m</in>
-                  <in>CTextPipe.m</in>
-                  <in>CTrayIcon.h</in>
-                  <in>CTrayIcon.m</in>
-                  <in>CWrapper.m</in>
-                  <in>DnDUtilities.h</in>
-                  <in>DnDUtilities.m</in>
-                  <in>GeomUtilities.h</in>
-                  <in>GeomUtilities.m</in>
-                  <in>ImageSurfaceData.h</in>
-                  <in>ImageSurfaceData.m</in>
-                  <in>InitIDs.h</in>
-                  <in>InitIDs.m</in>
-                  <in>JavaAccessibilityAction.h</in>
-                  <in>JavaAccessibilityAction.m</in>
-                  <in>JavaAccessibilityUtilities.h</in>
-                  <in>JavaAccessibilityUtilities.m</in>
-                  <in>JavaComponentAccessibility.h</in>
-                  <in>JavaComponentAccessibility.m</in>
-                  <in>JavaTextAccessibility.h</in>
-                  <in>JavaTextAccessibility.m</in>
-                  <in>LWCToolkit.h</in>
-                  <in>LWCToolkit.m</in>
-                  <in>OSVersion.h</in>
-                  <in>OSVersion.m</in>
-                  <in>PrintModel.h</in>
-                  <in>PrintModel.m</in>
-                  <in>PrinterSurfaceData.h</in>
-                  <in>PrinterSurfaceData.m</in>
-                  <in>PrinterView.h</in>
-                  <in>PrinterView.m</in>
-                  <in>QuartzRenderer.m</in>
-                  <in>QuartzSurfaceData.h</in>
-                  <in>QuartzSurfaceData.m</in>
-                  <in>awt_DrawingSurface.m</in>
-                </df>
-                <df name="font">
-                  <in>AWTFont.h</in>
-                  <in>AWTFont.m</in>
-                  <in>AWTStrike.h</in>
-                  <in>AWTStrike.m</in>
-                  <in>CCharToGlyphMapper.m</in>
-                  <in>CGGlyphImages.h</in>
-                  <in>CGGlyphImages.m</in>
-                  <in>CGGlyphOutlines.h</in>
-                  <in>CGGlyphOutlines.m</in>
-                  <in>CoreTextSupport.h</in>
-                  <in>CoreTextSupport.m</in>
-                </df>
-                <df name="java2d">
-                  <df name="opengl">
-                    <df name="J2D_GL">
-                      <in>cglext.h</in>
-                    </df>
-                    <in>CGLGraphicsConfig.h</in>
-                    <in>CGLGraphicsConfig.m</in>
-                    <in>CGLLayer.h</in>
-                    <in>CGLLayer.m</in>
-                    <in>CGLSurfaceData.h</in>
-                    <in>CGLSurfaceData.m</in>
-                    <in>OGLFuncs_md.h</in>
-                  </df>
-                </df>
-              </df>
-              <df name="libjawt">
-                <in>jawt.m</in>
-              </df>
-              <df name="libjsound">
-                <in>PLATFORM_API_MacOSX_MidiIn.c</in>
-                <in>PLATFORM_API_MacOSX_MidiOut.c</in>
-                <in>PLATFORM_API_MacOSX_MidiUtils.c</in>
-                <in>PLATFORM_API_MacOSX_MidiUtils.h</in>
-                <in>PLATFORM_API_MacOSX_PCM.cpp</in>
-                <in>PLATFORM_API_MacOSX_Ports.cpp</in>
-                <in>PLATFORM_API_MacOSX_Utils.cpp</in>
-                <in>PLATFORM_API_MacOSX_Utils.h</in>
-              </df>
-              <df name="libosx">
-                <in>CFileManager.m</in>
-              </df>
-              <df name="libosxapp">
-                <in>AWT_debug.h</in>
-                <in>AWT_debug.m</in>
-                <in>NSApplicationAWT.h</in>
-                <in>NSApplicationAWT.m</in>
-                <in>PropertiesUtilities.h</in>
-                <in>PropertiesUtilities.m</in>
-                <in>QueuingApplicationDelegate.h</in>
-                <in>QueuingApplicationDelegate.m</in>
-                <in>ThreadUtilities.h</in>
-                <in>ThreadUtilities.m</in>
-              </df>
-              <df name="libosxui">
-                <in>AquaFileView.m</in>
-                <in>AquaLookAndFeel.m</in>
-                <in>AquaNativeResources.m</in>
-                <in>JRSUIConstantSync.h</in>
-                <in>JRSUIConstantSync.m</in>
-                <in>JRSUIController.m</in>
-                <in>JRSUIFocus.m</in>
-                <in>ScreenMenu.h</in>
-                <in>ScreenMenu.m</in>
-              </df>
-              <df name="libsplashscreen">
-                <in>splashscreen_config.h</in>
-                <in>splashscreen_sys.m</in>
-              </df>
-            </df>
-          </df>
-          <df name="share">
-            <df name="classes">
-              <df name="javax">
-                <df name="swing">
-                  <df name="text">
-                    <df name="rtf">
-                      <df name="charsets">
-                        <in>NeXT.txt</in>
-                        <in>ansi.txt</in>
-                        <in>cpg437.txt</in>
-                        <in>cpg850.txt</in>
-                        <in>mac.txt</in>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="native">
-              <df name="common">
-                <df name="awt">
-                  <df name="debug">
-                    <in>debug_assert.c</in>
-                    <in>debug_assert.h</in>
-                    <in>debug_mem.c</in>
-                    <in>debug_mem.h</in>
-                    <in>debug_trace.c</in>
-                    <in>debug_trace.h</in>
-                    <in>debug_util.c</in>
-                    <in>debug_util.h</in>
-                  </df>
-                  <df name="medialib">
-                    <in>mlib_ImageCopy_Bit.c</in>
-                    <in>mlib_ImageCreate.c</in>
-                    <in>mlib_sys.c</in>
-                  </df>
-                  <df name="utility">
-                    <in>rect.c</in>
-                  </df>
-                </df>
-                <df name="font">
-                  <in>AccelGlyphCache.c</in>
-                  <in>AccelGlyphCache.h</in>
-                  <in>fontscalerdefs.h</in>
-                  <in>sunfontids.h</in>
-                </df>
-                <df name="java2d">
-                  <df name="opengl">
-                    <df name="J2D_GL">
-                      <in>gl.h</in>
-                      <in>glext.h</in>
-                    </df>
-                    <in>OGLBlitLoops.c</in>
-                    <in>OGLBlitLoops.h</in>
-                    <in>OGLBufImgOps.c</in>
-                    <in>OGLBufImgOps.h</in>
-                    <in>OGLContext.c</in>
-                    <in>OGLContext.h</in>
-                    <in>OGLFuncMacros.h</in>
-                    <in>OGLFuncs.c</in>
-                    <in>OGLFuncs.h</in>
-                    <in>OGLMaskBlit.c</in>
-                    <in>OGLMaskBlit.h</in>
-                    <in>OGLMaskFill.c</in>
-                    <in>OGLMaskFill.h</in>
-                    <in>OGLPaints.c</in>
-                    <in>OGLPaints.h</in>
-                    <in>OGLRenderQueue.c</in>
-                    <in>OGLRenderQueue.h</in>
-                    <in>OGLRenderer.c</in>
-                    <in>OGLRenderer.h</in>
-                    <in>OGLSurfaceData.c</in>
-                    <in>OGLSurfaceData.h</in>
-                    <in>OGLTextRenderer.c</in>
-                    <in>OGLTextRenderer.h</in>
-                    <in>OGLVertexCache.c</in>
-                    <in>OGLVertexCache.h</in>
-                  </df>
-                </df>
-              </df>
-              <df name="include">
-                <in>jawt.h</in>
-              </df>
-              <df name="libawt">
-                <df name="awt">
-                  <df name="image">
-                    <df name="cvutils">
-                      <in>img_alpha.h</in>
-                      <in>img_anycm.h</in>
-                      <in>img_colors.c</in>
-                      <in>img_colors.h</in>
-                      <in>img_dcm.h</in>
-                      <in>img_dcm8.h</in>
-                      <in>img_dir8dither.h</in>
-                      <in>img_dirdither.h</in>
-                      <in>img_fscolor.h</in>
-                      <in>img_fsdither.h</in>
-                      <in>img_fsgray.h</in>
-                      <in>img_fsutil.h</in>
-                      <in>img_globals.c</in>
-                      <in>img_globals.h</in>
-                      <in>img_icm.h</in>
-                      <in>img_input32.h</in>
-                      <in>img_input8.h</in>
-                      <in>img_input8_32.h</in>
-                      <in>img_nodither.h</in>
-                      <in>img_noscale.h</in>
-                      <in>img_opaque.h</in>
-                      <in>img_ordclrsgn.h</in>
-                      <in>img_ordclruns.h</in>
-                      <in>img_orddither.h</in>
-                      <in>img_ordgray.h</in>
-                      <in>img_output16.h</in>
-                      <in>img_output16_32.h</in>
-                      <in>img_output24.h</in>
-                      <in>img_output32.h</in>
-                      <in>img_output8.h</in>
-                      <in>img_output8_16_24.h</in>
-                      <in>img_output8_16_32.h</in>
-                      <in>img_output8_32.h</in>
-                      <in>img_replscale.h</in>
-                      <in>img_scaleloop.h</in>
-                      <in>img_util.h</in>
-                    </df>
-                    <df name="gif">
-                      <in>gifdecoder.c</in>
-                    </df>
-                    <in>BufImgSurfaceData.c</in>
-                    <in>BufImgSurfaceData.h</in>
-                    <in>DataBufferNative.c</in>
-                    <in>awt_ImageRep.c</in>
-                    <in>awt_parseImage.c</in>
-                    <in>awt_parseImage.h</in>
-                    <in>dither.c</in>
-                    <in>dither.h</in>
-                    <in>imageInitIDs.c</in>
-                    <in>imageInitIDs.h</in>
-                  </df>
-                  <df name="medialib">
-                    <in>awt_ImagingLib.c</in>
-                    <in>awt_ImagingLib.h</in>
-                  </df>
-                </df>
-                <df name="java2d">
-                  <df name="loops">
-                    <in>AlphaMacros.c</in>
-                    <in>AlphaMacros.h</in>
-                    <in>AlphaMath.c</in>
-                    <in>AlphaMath.h</in>
-                    <in>Any3Byte.c</in>
-                    <in>Any3Byte.h</in>
-                    <in>Any4Byte.c</in>
-                    <in>Any4Byte.h</in>
-                    <in>AnyByte.c</in>
-                    <in>AnyByte.h</in>
-                    <in>AnyByteBinary.h</in>
-                    <in>AnyInt.c</in>
-                    <in>AnyInt.h</in>
-                    <in>AnyShort.c</in>
-                    <in>AnyShort.h</in>
-                    <in>Blit.c</in>
-                    <in>BlitBg.c</in>
-                    <in>ByteBinary1Bit.c</in>
-                    <in>ByteBinary1Bit.h</in>
-                    <in>ByteBinary2Bit.c</in>
-                    <in>ByteBinary2Bit.h</in>
-                    <in>ByteBinary4Bit.c</in>
-                    <in>ByteBinary4Bit.h</in>
-                    <in>ByteGray.c</in>
-                    <in>ByteGray.h</in>
-                    <in>ByteIndexed.c</in>
-                    <in>ByteIndexed.h</in>
-                    <in>DrawLine.c</in>
-                    <in>DrawParallelogram.c</in>
-                    <in>DrawPath.c</in>
-                    <in>DrawPath.h</in>
-                    <in>DrawPolygons.c</in>
-                    <in>DrawRect.c</in>
-                    <in>FillParallelogram.c</in>
-                    <in>FillPath.c</in>
-                    <in>FillRect.c</in>
-                    <in>FillSpans.c</in>
-                    <in>FourByteAbgr.c</in>
-                    <in>FourByteAbgr.h</in>
-                    <in>FourByteAbgrPre.c</in>
-                    <in>FourByteAbgrPre.h</in>
-                    <in>GlyphImageRef.h</in>
-                    <in>GraphicsPrimitiveMgr.c</in>
-                    <in>GraphicsPrimitiveMgr.h</in>
-                    <in>ImageData.h</in>
-                    <in>Index12Gray.c</in>
-                    <in>Index12Gray.h</in>
-                    <in>Index8Gray.c</in>
-                    <in>Index8Gray.h</in>
-                    <in>IntArgb.c</in>
-                    <in>IntArgb.h</in>
-                    <in>IntArgbBm.c</in>
-                    <in>IntArgbBm.h</in>
-                    <in>IntArgbPre.c</in>
-                    <in>IntArgbPre.h</in>
-                    <in>IntBgr.c</in>
-                    <in>IntBgr.h</in>
-                    <in>IntDcm.h</in>
-                    <in>IntRgb.c</in>
-                    <in>IntRgb.h</in>
-                    <in>IntRgbx.c</in>
-                    <in>IntRgbx.h</in>
-                    <in>LineUtils.h</in>
-                    <in>LoopMacros.h</in>
-                    <in>MapAccelFunc.c</in>
-                    <in>MaskBlit.c</in>
-                    <in>MaskFill.c</in>
-                    <in>ParallelogramUtils.h</in>
-                    <in>ProcessPath.c</in>
-                    <in>ProcessPath.h</in>
-                    <in>ScaledBlit.c</in>
-                    <in>ThreeByteBgr.c</in>
-                    <in>ThreeByteBgr.h</in>
-                    <in>TransformHelper.c</in>
-                    <in>Ushort4444Argb.c</in>
-                    <in>Ushort4444Argb.h</in>
-                    <in>Ushort555Rgb.c</in>
-                    <in>Ushort555Rgb.h</in>
-                    <in>Ushort555Rgbx.c</in>
-                    <in>Ushort555Rgbx.h</in>
-                    <in>Ushort565Rgb.c</in>
-                    <in>Ushort565Rgb.h</in>
-                    <in>UshortGray.c</in>
-                    <in>UshortGray.h</in>
-                    <in>UshortIndexed.c</in>
-                    <in>UshortIndexed.h</in>
-                  </df>
-                  <df name="pipe">
-                    <in>BufferedMaskBlit.c</in>
-                    <in>BufferedRenderPipe.c</in>
-                    <in>PathConsumer2D.h</in>
-                    <in>Region.c</in>
-                    <in>Region.h</in>
-                    <in>ShapeSpanIterator.c</in>
-                    <in>SpanClipRenderer.c</in>
-                    <in>SpanIterator.h</in>
-                  </df>
-                  <in>Disposer.c</in>
-                  <in>Disposer.h</in>
-                  <in>SurfaceData.c</in>
-                  <in>SurfaceData.h</in>
-                  <in>Trace.c</in>
-                  <in>Trace.h</in>
-                </df>
-              </df>
-              <df name="libfontmanager">
-                <df name="harfbuzz">
-                  <df name="hb-ucdn">
-                    <in>ucdn.c</in>
-                    <in>ucdn.h</in>
-                    <in>unicodedata_db.h</in>
-                  </df>
-                  <in>hb-atomic-private.hh</in>
-                  <in>hb-blob.cc</in>
-                  <in>hb-blob.h</in>
-                  <in>hb-buffer-deserialize-json.hh</in>
-                  <in>hb-buffer-deserialize-text.hh</in>
-                  <in>hb-buffer-private.hh</in>
-                  <in>hb-buffer-serialize.cc</in>
-                  <in>hb-buffer.cc</in>
-                  <in>hb-buffer.h</in>
-                  <in>hb-cache-private.hh</in>
-                  <in>hb-common.cc</in>
-                  <in>hb-common.h</in>
-                  <in>hb-coretext.cc</in>
-                  <in>hb-coretext.h</in>
-                  <in>hb-deprecated.h</in>
-                  <in>hb-face-private.hh</in>
-                  <in>hb-face.cc</in>
-                  <in>hb-face.h</in>
-                  <in>hb-fallback-shape.cc</in>
-                  <in>hb-font-private.hh</in>
-                  <in>hb-font.cc</in>
-                  <in>hb-font.h</in>
-                  <in>hb-ft.cc</in>
-                  <in>hb-ft.h</in>
-                  <in>hb-mutex-private.hh</in>
-                  <in>hb-object-private.hh</in>
-                  <in>hb-open-file-private.hh</in>
-                  <in>hb-open-type-private.hh</in>
-                  <in>hb-ot-cbdt-table.hh</in>
-                  <in>hb-ot-cmap-table.hh</in>
-                  <in>hb-ot-font.cc</in>
-                  <in>hb-ot-font.h</in>
-                  <in>hb-ot-glyf-table.hh</in>
-                  <in>hb-ot-head-table.hh</in>
-                  <in>hb-ot-hhea-table.hh</in>
-                  <in>hb-ot-hmtx-table.hh</in>
-                  <in>hb-ot-layout-common-private.hh</in>
-                  <in>hb-ot-layout-gdef-table.hh</in>
-                  <in>hb-ot-layout-gpos-table.hh</in>
-                  <in>hb-ot-layout-gsub-table.hh</in>
-                  <in>hb-ot-layout-gsubgpos-private.hh</in>
-                  <in>hb-ot-layout-jstf-table.hh</in>
-                  <in>hb-ot-layout-private.hh</in>
-                  <in>hb-ot-layout.cc</in>
-                  <in>hb-ot-layout.h</in>
-                  <in>hb-ot-map-private.hh</in>
-                  <in>hb-ot-map.cc</in>
-                  <in>hb-ot-math.h</in>
-                  <in>hb-ot-maxp-table.hh</in>
-                  <in>hb-ot-name-table.hh</in>
-                  <in>hb-ot-os2-table.hh</in>
-                  <in>hb-ot-shape-complex-arabic-fallback.hh</in>
-                  <in>hb-ot-shape-complex-arabic-private.hh</in>
-                  <in>hb-ot-shape-complex-arabic-table.hh</in>
-                  <in>hb-ot-shape-complex-arabic-win1256.hh</in>
-                  <in>hb-ot-shape-complex-arabic.cc</in>
-                  <in>hb-ot-shape-complex-default.cc</in>
-                  <in>hb-ot-shape-complex-hangul.cc</in>
-                  <in>hb-ot-shape-complex-hebrew.cc</in>
-                  <in>hb-ot-shape-complex-indic-machine.hh</in>
-                  <in>hb-ot-shape-complex-indic-private.hh</in>
-                  <in>hb-ot-shape-complex-indic-table.cc</in>
-                  <in>hb-ot-shape-complex-indic.cc</in>
-                  <in>hb-ot-shape-complex-myanmar-machine.hh</in>
-                  <in>hb-ot-shape-complex-myanmar.cc</in>
-                  <in>hb-ot-shape-complex-private.hh</in>
-                  <in>hb-ot-shape-complex-thai.cc</in>
-                  <in>hb-ot-shape-complex-tibetan.cc</in>
-                  <in>hb-ot-shape-complex-use-machine.hh</in>
-                  <in>hb-ot-shape-complex-use-private.hh</in>
-                  <in>hb-ot-shape-complex-use-table.cc</in>
-                  <in>hb-ot-shape-complex-use.cc</in>
-                  <in>hb-ot-shape-fallback-private.hh</in>
-                  <in>hb-ot-shape-fallback.cc</in>
-                  <in>hb-ot-shape-normalize-private.hh</in>
-                  <in>hb-ot-shape-normalize.cc</in>
-                  <in>hb-ot-shape-private.hh</in>
-                  <in>hb-ot-shape.cc</in>
-                  <in>hb-ot-shape.h</in>
-                  <in>hb-ot-tag.cc</in>
-                  <in>hb-ot-tag.h</in>
-                  <in>hb-ot.h</in>
-                  <in>hb-private.hh</in>
-                  <in>hb-set-private.hh</in>
-                  <in>hb-set.cc</in>
-                  <in>hb-set.h</in>
-                  <in>hb-shape-plan-private.hh</in>
-                  <in>hb-shape-plan.cc</in>
-                  <in>hb-shape-plan.h</in>
-                  <in>hb-shape.cc</in>
-                  <in>hb-shape.h</in>
-                  <in>hb-shaper-impl-private.hh</in>
-                  <in>hb-shaper-list.hh</in>
-                  <in>hb-shaper-private.hh</in>
-                  <in>hb-shaper.cc</in>
-                  <in>hb-ucdn.cc</in>
-                  <in>hb-unicode-private.hh</in>
-                  <in>hb-unicode.cc</in>
-                  <in>hb-unicode.h</in>
-                  <in>hb-utf-private.hh</in>
-                  <in>hb-version.h</in>
-                  <in>hb-warning.cc</in>
-                  <in>hb.h</in>
-                </df>
-                <df name="layout">
-                  <in>AlternateSubstSubtables.cpp</in>
-                  <in>AlternateSubstSubtables.h</in>
-                  <in>AnchorTables.cpp</in>
-                  <in>AnchorTables.h</in>
-                  <in>ArabicLayoutEngine.cpp</in>
-                  <in>ArabicLayoutEngine.h</in>
-                  <in>ArabicShaping.cpp</in>
-                  <in>ArabicShaping.h</in>
-                  <in>AttachmentPosnSubtables.h</in>
-                  <in>CanonData.cpp</in>
-                  <in>CanonShaping.cpp</in>
-                  <in>CanonShaping.h</in>
-                  <in>CharSubstitutionFilter.h</in>
-                  <in>ClassDefinitionTables.cpp</in>
-                  <in>ClassDefinitionTables.h</in>
-                  <in>ContextualGlyphInsertion.h</in>
-                  <in>ContextualGlyphInsertionProc2.cpp</in>
-                  <in>ContextualGlyphInsertionProc2.h</in>
-                  <in>ContextualGlyphSubstProc.cpp</in>
-                  <in>ContextualGlyphSubstProc.h</in>
-                  <in>ContextualGlyphSubstProc2.cpp</in>
-                  <in>ContextualGlyphSubstProc2.h</in>
-                  <in>ContextualGlyphSubstitution.h</in>
-                  <in>ContextualSubstSubtables.cpp</in>
-                  <in>ContextualSubstSubtables.h</in>
-                  <in>CoverageTables.cpp</in>
-                  <in>CoverageTables.h</in>
-                  <in>CursiveAttachmentSubtables.cpp</in>
-                  <in>CursiveAttachmentSubtables.h</in>
-                  <in>DefaultCharMapper.h</in>
-                  <in>DeviceTables.cpp</in>
-                  <in>DeviceTables.h</in>
-                  <in>ExtensionSubtables.cpp</in>
-                  <in>ExtensionSubtables.h</in>
-                  <in>Features.cpp</in>
-                  <in>GDEFMarkFilter.cpp</in>
-                  <in>GDEFMarkFilter.h</in>
-                  <in>GXLayoutEngine.cpp</in>
-                  <in>GXLayoutEngine.h</in>
-                  <in>GXLayoutEngine2.cpp</in>
-                  <in>GXLayoutEngine2.h</in>
-                  <in>GlyphDefinitionTables.cpp</in>
-                  <in>GlyphDefinitionTables.h</in>
-                  <in>GlyphIterator.cpp</in>
-                  <in>GlyphIterator.h</in>
-                  <in>GlyphLookupTables.cpp</in>
-                  <in>GlyphLookupTables.h</in>
-                  <in>GlyphPositionAdjustments.cpp</in>
-                  <in>GlyphPositionAdjustments.h</in>
-                  <in>GlyphPositioningTables.cpp</in>
-                  <in>GlyphPositioningTables.h</in>
-                  <in>GlyphPosnLookupProc.cpp</in>
-                  <in>GlyphPosnLookupProc.h</in>
-                  <in>GlyphSubstLookupProc.cpp</in>
-                  <in>GlyphSubstLookupProc.h</in>
-                  <in>GlyphSubstitutionTables.cpp</in>
-                  <in>GlyphSubstitutionTables.h</in>
-                  <in>HanLayoutEngine.cpp</in>
-                  <in>HanLayoutEngine.h</in>
-                  <in>HangulLayoutEngine.cpp</in>
-                  <in>HangulLayoutEngine.h</in>
-                  <in>ICUFeatures.h</in>
-                  <in>IndicClassTables.cpp</in>
-                  <in>IndicLayoutEngine.cpp</in>
-                  <in>IndicLayoutEngine.h</in>
-                  <in>IndicRearrangement.h</in>
-                  <in>IndicRearrangementProcessor.cpp</in>
-                  <in>IndicRearrangementProcessor.h</in>
-                  <in>IndicRearrangementProcessor2.cpp</in>
-                  <in>IndicRearrangementProcessor2.h</in>
-                  <in>IndicReordering.cpp</in>
-                  <in>IndicReordering.h</in>
-                  <in>KernTable.cpp</in>
-                  <in>KernTable.h</in>
-                  <in>KhmerLayoutEngine.cpp</in>
-                  <in>KhmerLayoutEngine.h</in>
-                  <in>KhmerReordering.cpp</in>
-                  <in>KhmerReordering.h</in>
-                  <in>LEFontInstance.cpp</in>
-                  <in>LEFontInstance.h</in>
-                  <in>LEGlyphFilter.h</in>
-                  <in>LEGlyphStorage.cpp</in>
-                  <in>LEGlyphStorage.h</in>
-                  <in>LEInsertionList.cpp</in>
-                  <in>LEInsertionList.h</in>
-                  <in>LELanguages.h</in>
-                  <in>LEScripts.h</in>
-                  <in>LEStandalone.h</in>
-                  <in>LESwaps.h</in>
-                  <in>LETableReference.h</in>
-                  <in>LETypes.h</in>
-                  <in>LayoutEngine.cpp</in>
-                  <in>LayoutEngine.h</in>
-                  <in>LayoutTables.h</in>
-                  <in>LigatureSubstProc.cpp</in>
-                  <in>LigatureSubstProc.h</in>
-                  <in>LigatureSubstProc2.cpp</in>
-                  <in>LigatureSubstProc2.h</in>
-                  <in>LigatureSubstSubtables.cpp</in>
-                  <in>LigatureSubstSubtables.h</in>
-                  <in>LigatureSubstitution.h</in>
-                  <in>LookupProcessor.cpp</in>
-                  <in>LookupProcessor.h</in>
-                  <in>LookupTables.cpp</in>
-                  <in>LookupTables.h</in>
-                  <in>Lookups.cpp</in>
-                  <in>Lookups.h</in>
-                  <in>MPreFixups.cpp</in>
-                  <in>MPreFixups.h</in>
-                  <in>MarkArrays.cpp</in>
-                  <in>MarkArrays.h</in>
-                  <in>MarkToBasePosnSubtables.cpp</in>
-                  <in>MarkToBasePosnSubtables.h</in>
-                  <in>MarkToLigaturePosnSubtables.cpp</in>
-                  <in>MarkToLigaturePosnSubtables.h</in>
-                  <in>MarkToMarkPosnSubtables.cpp</in>
-                  <in>MarkToMarkPosnSubtables.h</in>
-                  <in>MirroredCharData.cpp</in>
-                  <in>MorphStateTables.h</in>
-                  <in>MorphTables.cpp</in>
-                  <in>MorphTables.h</in>
-                  <in>MorphTables2.cpp</in>
-                  <in>MultipleSubstSubtables.cpp</in>
-                  <in>MultipleSubstSubtables.h</in>
-                  <in>NonContextualGlyphSubst.h</in>
-                  <in>NonContextualGlyphSubstProc.cpp</in>
-                  <in>NonContextualGlyphSubstProc.h</in>
-                  <in>NonContextualGlyphSubstProc2.cpp</in>
-                  <in>NonContextualGlyphSubstProc2.h</in>
-                  <in>OpenTypeLayoutEngine.cpp</in>
-                  <in>OpenTypeLayoutEngine.h</in>
-                  <in>OpenTypeTables.h</in>
-                  <in>OpenTypeUtilities.cpp</in>
-                  <in>OpenTypeUtilities.h</in>
-                  <in>PairPositioningSubtables.cpp</in>
-                  <in>PairPositioningSubtables.h</in>
-                  <in>ScriptAndLanguage.cpp</in>
-                  <in>ScriptAndLanguage.h</in>
-                  <in>ScriptAndLanguageTags.cpp</in>
-                  <in>ScriptAndLanguageTags.h</in>
-                  <in>SegmentArrayProcessor.cpp</in>
-                  <in>SegmentArrayProcessor.h</in>
-                  <in>SegmentArrayProcessor2.cpp</in>
-                  <in>SegmentArrayProcessor2.h</in>
-                  <in>SegmentSingleProcessor.cpp</in>
-                  <in>SegmentSingleProcessor.h</in>
-                  <in>SegmentSingleProcessor2.cpp</in>
-                  <in>SegmentSingleProcessor2.h</in>
-                  <in>ShapingTypeData.cpp</in>
-                  <in>SimpleArrayProcessor.cpp</in>
-                  <in>SimpleArrayProcessor.h</in>
-                  <in>SimpleArrayProcessor2.cpp</in>
-                  <in>SimpleArrayProcessor2.h</in>
-                  <in>SinglePositioningSubtables.cpp</in>
-                  <in>SinglePositioningSubtables.h</in>
-                  <in>SingleSubstitutionSubtables.cpp</in>
-                  <in>SingleSubstitutionSubtables.h</in>
-                  <in>SingleTableProcessor.cpp</in>
-                  <in>SingleTableProcessor.h</in>
-                  <in>SingleTableProcessor2.cpp</in>
-                  <in>SingleTableProcessor2.h</in>
-                  <in>StateTableProcessor.cpp</in>
-                  <in>StateTableProcessor.h</in>
-                  <in>StateTableProcessor2.cpp</in>
-                  <in>StateTableProcessor2.h</in>
-                  <in>StateTables.h</in>
-                  <in>SubstitutionLookups.cpp</in>
-                  <in>SubstitutionLookups.h</in>
-                  <in>SubtableProcessor.cpp</in>
-                  <in>SubtableProcessor.h</in>
-                  <in>SubtableProcessor2.cpp</in>
-                  <in>SubtableProcessor2.h</in>
-                  <in>SunLayoutEngine.cpp</in>
-                  <in>ThaiLayoutEngine.cpp</in>
-                  <in>ThaiLayoutEngine.h</in>
-                  <in>ThaiShaping.cpp</in>
-                  <in>ThaiShaping.h</in>
-                  <in>ThaiStateTables.cpp</in>
-                  <in>TibetanLayoutEngine.cpp</in>
-                  <in>TibetanLayoutEngine.h</in>
-                  <in>TibetanReordering.cpp</in>
-                  <in>TibetanReordering.h</in>
-                  <in>TrimmedArrayProcessor.cpp</in>
-                  <in>TrimmedArrayProcessor.h</in>
-                  <in>TrimmedArrayProcessor2.cpp</in>
-                  <in>TrimmedArrayProcessor2.h</in>
-                  <in>ValueRecords.cpp</in>
-                  <in>ValueRecords.h</in>
-                </df>
-                <in>DrawGlyphList.c</in>
-                <in>FontInstanceAdapter.cpp</in>
-                <in>FontInstanceAdapter.h</in>
-                <in>HBShaper.c</in>
-                <in>fontscaler.h</in>
-                <in>freetypeScaler.c</in>
-                <in>glyphblitting.h</in>
-                <in>hb-jdk-font.cc</in>
-                <in>hb-jdk.h</in>
-                <in>scriptMapping.c</in>
-                <in>scriptMapping.h</in>
-                <in>sunFont.c</in>
-              </df>
-              <df name="libjavajpeg">
-                <in>imageioJPEG.c</in>
-                <in>jcapimin.c</in>
-                <in>jcapistd.c</in>
-                <in>jccoefct.c</in>
-                <in>jccolor.c</in>
-                <in>jcdctmgr.c</in>
-                <in>jchuff.c</in>
-                <in>jchuff.h</in>
-                <in>jcinit.c</in>
-                <in>jcmainct.c</in>
-                <in>jcmarker.c</in>
-                <in>jcmaster.c</in>
-                <in>jcomapi.c</in>
-                <in>jconfig.h</in>
-                <in>jcparam.c</in>
-                <in>jcphuff.c</in>
-                <in>jcprepct.c</in>
-                <in>jcsample.c</in>
-                <in>jctrans.c</in>
-                <in>jdapimin.c</in>
-                <in>jdapistd.c</in>
-                <in>jdcoefct.c</in>
-                <in>jdcolor.c</in>
-                <in>jdct.h</in>
-                <in>jddctmgr.c</in>
-                <in>jdhuff.c</in>
-                <in>jdhuff.h</in>
-                <in>jdinput.c</in>
-                <in>jdmainct.c</in>
-                <in>jdmarker.c</in>
-                <in>jdmaster.c</in>
-                <in>jdmerge.c</in>
-                <in>jdphuff.c</in>
-                <in>jdpostct.c</in>
-                <in>jdsample.c</in>
-                <in>jdtrans.c</in>
-                <in>jerror.c</in>
-                <in>jerror.h</in>
-                <in>jfdctflt.c</in>
-                <in>jfdctfst.c</in>
-                <in>jfdctint.c</in>
-                <in>jidctflt.c</in>
-                <in>jidctfst.c</in>
-                <in>jidctint.c</in>
-                <in>jidctred.c</in>
-                <in>jinclude.h</in>
-                <in>jmemmgr.c</in>
-                <in>jmemnobs.c</in>
-                <in>jmemsys.h</in>
-                <in>jmorecfg.h</in>
-                <in>jpegdecoder.c</in>
-                <in>jpegint.h</in>
-                <in>jpeglib.h</in>
-                <in>jquant1.c</in>
-                <in>jquant2.c</in>
-                <in>jutils.c</in>
-                <in>jversion.h</in>
-              </df>
-              <df name="libjsound">
-                <in>Configure.h</in>
-                <in>DirectAudio.h</in>
-                <in>DirectAudioDevice.c</in>
-                <in>DirectAudioDeviceProvider.c</in>
-                <in>MidiInDevice.c</in>
-                <in>MidiInDeviceProvider.c</in>
-                <in>MidiOutDevice.c</in>
-                <in>MidiOutDeviceProvider.c</in>
-                <in>Platform.c</in>
-                <in>PlatformMidi.c</in>
-                <in>PlatformMidi.h</in>
-                <in>PortMixer.c</in>
-                <in>PortMixerProvider.c</in>
-                <in>Ports.h</in>
-                <in>SoundDefs.h</in>
-                <in>Utilities.c</in>
-                <in>Utilities.h</in>
-              </df>
-              <df name="liblcms">
-                <in>LCMS.c</in>
-                <in>cmsalpha.c</in>
-                <in>cmscam02.c</in>
-                <in>cmscgats.c</in>
-                <in>cmscnvrt.c</in>
-                <in>cmserr.c</in>
-                <in>cmsgamma.c</in>
-                <in>cmsgmt.c</in>
-                <in>cmshalf.c</in>
-                <in>cmsintrp.c</in>
-                <in>cmsio0.c</in>
-                <in>cmsio1.c</in>
-                <in>cmslut.c</in>
-                <in>cmsmd5.c</in>
-                <in>cmsmtrx.c</in>
-                <in>cmsnamed.c</in>
-                <in>cmsopt.c</in>
-                <in>cmspack.c</in>
-                <in>cmspcs.c</in>
-                <in>cmsplugin.c</in>
-                <in>cmsps2.c</in>
-                <in>cmssamp.c</in>
-                <in>cmssm.c</in>
-                <in>cmstypes.c</in>
-                <in>cmsvirt.c</in>
-                <in>cmswtpnt.c</in>
-                <in>cmsxform.c</in>
-                <in>lcms2.h</in>
-                <in>lcms2_internal.h</in>
-                <in>lcms2_plugin.h</in>
-              </df>
-              <df name="libmlib_image">
-                <in>j2d_names.h</in>
-                <in>mlib.h</in>
-                <in>mlib_ImageAffine.c</in>
-                <in>mlib_ImageAffine.h</in>
-                <in>mlib_ImageAffineEdge.c</in>
-                <in>mlib_ImageAffine_BC_D64.c</in>
-                <in>mlib_ImageAffine_BC_F32.c</in>
-                <in>mlib_ImageAffine_BC_S32.c</in>
-                <in>mlib_ImageAffine_BL_D64.c</in>
-                <in>mlib_ImageAffine_BL_F32.c</in>
-                <in>mlib_ImageAffine_BL_S32.c</in>
-                <in>mlib_ImageAffine_NN.c</in>
-                <in>mlib_ImageAffine_NN_Bit.c</in>
-                <in>mlib_ImageCheck.h</in>
-                <in>mlib_ImageClipping.c</in>
-                <in>mlib_ImageClipping.h</in>
-                <in>mlib_ImageConv.h</in>
-                <in>mlib_ImageConvClearEdge_Bit.c</in>
-                <in>mlib_ImageConvClearEdge_Fp.c</in>
-                <in>mlib_ImageConvCopyEdge_Bit.c</in>
-                <in>mlib_ImageConvEdge.h</in>
-                <in>mlib_ImageConvKernelConvert.c</in>
-                <in>mlib_ImageConvMxN.c</in>
-                <in>mlib_ImageConvMxN_Fp.c</in>
-                <in>mlib_ImageConvMxN_ext.c</in>
-                <in>mlib_ImageConv_16ext.c</in>
-                <in>mlib_ImageConv_16nw.c</in>
-                <in>mlib_ImageConv_32nw.c</in>
-                <in>mlib_ImageConv_8ext.c</in>
-                <in>mlib_ImageConv_8nw.c</in>
-                <in>mlib_ImageConv_D64nw.c</in>
-                <in>mlib_ImageConv_F32nw.c</in>
-                <in>mlib_ImageConv_u16ext.c</in>
-                <in>mlib_ImageConv_u16nw.c</in>
-                <in>mlib_ImageCopy.h</in>
-                <in>mlib_ImageCreate.h</in>
-                <in>mlib_ImageDivTables.c</in>
-                <in>mlib_ImageDivTables.h</in>
-                <in>mlib_ImageFilters.c</in>
-                <in>mlib_ImageFilters.h</in>
-                <in>mlib_ImageLookUp.h</in>
-                <in>mlib_ImageLookUp_64.c</in>
-                <in>mlib_ImageLookUp_Bit.c</in>
-                <in>mlib_ImageRowTable.h</in>
-                <in>mlib_ImageScanPoly.c</in>
-                <in>mlib_ImageUtils.c</in>
-                <in>mlib_SysMath.h</in>
-                <in>mlib_c_ImageAffine_BC.c</in>
-                <in>mlib_c_ImageAffine_BC_S16.c</in>
-                <in>mlib_c_ImageAffine_BC_U16.c</in>
-                <in>mlib_c_ImageAffine_BL.c</in>
-                <in>mlib_c_ImageAffine_BL_S16.c</in>
-                <in>mlib_c_ImageAffine_BL_U16.c</in>
-                <in>mlib_c_ImageAffine_NN.c</in>
-                <in>mlib_c_ImageConv.h</in>
-                <in>mlib_c_ImageConvClearEdge.c</in>
-                <in>mlib_c_ImageConvCopyEdge.c</in>
-                <in>mlib_c_ImageConvVersion.c</in>
-                <in>mlib_c_ImageConv_f.c</in>
-                <in>mlib_c_ImageCopy.c</in>
-                <in>mlib_c_ImageLookUp.c</in>
-                <in>mlib_c_ImageLookUp.h</in>
-                <in>mlib_c_ImageLookUp_f.c</in>
-                <in>mlib_image.h</in>
-                <in>mlib_image_get.h</in>
-                <in>mlib_image_proto.h</in>
-                <in>mlib_image_types.h</in>
-                <in>mlib_status.h</in>
-                <in>mlib_sys.h</in>
-                <in>mlib_sys_proto.h</in>
-                <in>mlib_types.h</in>
-                <in>safe_alloc.h</in>
-                <in>safe_math.h</in>
-              </df>
-              <df name="libsplashscreen">
-                <df name="giflib">
-                  <in>dgif_lib.c</in>
-                  <in>gif_err.c</in>
-                  <in>gif_hash.h</in>
-                  <in>gif_lib.h</in>
-                  <in>gif_lib_private.h</in>
-                  <in>gifalloc.c</in>
-                  <in>openbsd-reallocarray.c</in>
-                </df>
-                <df name="libpng">
-                  <in>png.c</in>
-                  <in>png.h</in>
-                  <in>pngconf.h</in>
-                  <in>pngdebug.h</in>
-                  <in>pngerror.c</in>
-                  <in>pngget.c</in>
-                  <in>pnginfo.h</in>
-                  <in>pnglibconf.h</in>
-                  <in>pngmem.c</in>
-                  <in>pngpread.c</in>
-                  <in>pngpriv.h</in>
-                  <in>pngread.c</in>
-                  <in>pngrio.c</in>
-                  <in>pngrtran.c</in>
-                  <in>pngrutil.c</in>
-                  <in>pngset.c</in>
-                  <in>pngstruct.h</in>
-                  <in>pngtrans.c</in>
-                </df>
-                <in>java_awt_SplashScreen.c</in>
-                <in>splashscreen_gfx.h</in>
-                <in>splashscreen_gfx_impl.c</in>
-                <in>splashscreen_gfx_impl.h</in>
-                <in>splashscreen_gif.c</in>
-                <in>splashscreen_impl.c</in>
-                <in>splashscreen_impl.h</in>
-                <in>splashscreen_jpeg.c</in>
-                <in>splashscreen_png.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="classes">
-              <df name="sun">
-                <df name="awt">
-                  <df name="X11">
-                    <df name="doc-files">
-                      <in>Modality.txt</in>
-                    </df>
-                    <in>keysym2ucs.h</in>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="native">
-              <df name="common">
-                <df name="awt">
-                  <df name="medialib">
-                    <in>mlib_v_ImageCopy_f.c</in>
-                    <in>mlib_v_ImageCopy_f.h</in>
-                    <in>vis_proto.h</in>
-                  </df>
-                  <df name="systemscale">
-                    <in>systemScale.c</in>
-                    <in>systemScale.h</in>
-                  </df>
-                  <df name="utility">
-                    <in>rect.h</in>
-                  </df>
-                  <in>CUPSfuncs.c</in>
-                  <in>X11Color.c</in>
-                  <in>awt.h</in>
-                  <in>awt_Component.h</in>
-                  <in>awt_DrawingSurface.h</in>
-                  <in>awt_Font.c</in>
-                  <in>awt_Font.h</in>
-                  <in>awt_GraphicsEnv.h</in>
-                  <in>awt_Mlib.h</in>
-                  <in>awt_p.h</in>
-                  <in>awt_util.h</in>
-                  <in>color.h</in>
-                  <in>colordata.h</in>
-                  <in>fontconfig.h</in>
-                  <in>fontpath.c</in>
-                  <in>img_util_md.h</in>
-                </df>
-                <df name="font">
-                  <in>X11FontScaler.h</in>
-                </df>
-                <df name="java2d">
-                  <df name="opengl">
-                    <df name="J2D_GL">
-                      <in>glx.h</in>
-                      <in>glxext.h</in>
-                    </df>
-                    <in>GLXGraphicsConfig.c</in>
-                    <in>GLXGraphicsConfig.h</in>
-                    <in>GLXSurfaceData.c</in>
-                    <in>GLXSurfaceData.h</in>
-                    <in>OGLFuncs_md.h</in>
-                  </df>
-                  <df name="x11">
-                    <in>X11FontScaler_md.c</in>
-                    <in>X11PMBlitLoops.c</in>
-                    <in>X11Renderer.c</in>
-                    <in>X11SurfaceData.c</in>
-                    <in>X11SurfaceData.h</in>
-                    <in>X11TextRenderer_md.c</in>
-                  </df>
-                </df>
-              </df>
-              <df name="include">
-                <in>jawt_md.h</in>
-              </df>
-              <df name="libawt">
-                <df name="awt">
-                  <in>awt_LoadLibrary.c</in>
-                  <in>awt_Mlib.c</in>
-                  <in>initIDs.c</in>
-                </df>
-                <df name="java2d">
-                  <df name="loops">
-                    <in>java2d_Mlib.c</in>
-                    <in>java2d_Mlib.h</in>
-                    <in>mlib_ImageCopy.h</in>
-                    <in>mlib_ImageLogic_proto.h</in>
-                    <in>mlib_ImageZoom.h</in>
-                    <in>mlib_ImageZoom_NN.c</in>
-                    <in>mlib_v_ImageClear.c</in>
-                    <in>mlib_v_ImageClear_f.c</in>
-                    <in>mlib_v_ImageClear_f.h</in>
-                    <in>mlib_v_ImageConstLogic.h</in>
-                    <in>mlib_v_ImageConstXor.c</in>
-                    <in>mlib_v_ImageLogic.h</in>
-                    <in>mlib_v_ImageLogic_proto.h</in>
-                    <in>mlib_v_ImageXor.c</in>
-                    <in>mlib_v_ImageZoom_NN_f.c</in>
-                    <in>vis_AlphaMacros.c</in>
-                    <in>vis_AlphaMacros.h</in>
-                    <in>vis_AlphaMaskBlit.c</in>
-                    <in>vis_AlphaMaskFill.c</in>
-                    <in>vis_ByteGray.c</in>
-                    <in>vis_ByteGray_FromRgb.c</in>
-                    <in>vis_ByteGray_Mask.c</in>
-                    <in>vis_ByteIndexed.c</in>
-                    <in>vis_DrawLine.c</in>
-                    <in>vis_FourByteAbgr.c</in>
-                    <in>vis_FourByteAbgrPre.c</in>
-                    <in>vis_FuncArray.c</in>
-                    <in>vis_GlyphList.c</in>
-                    <in>vis_GlyphListXor.c</in>
-                    <in>vis_IntArgb.c</in>
-                    <in>vis_IntArgbBm.c</in>
-                    <in>vis_IntArgbPre.c</in>
-                    <in>vis_IntArgbPre_Mask.c</in>
-                    <in>vis_IntBgr.c</in>
-                    <in>vis_IntRgb.c</in>
-                    <in>vis_IntRgbx.c</in>
-                    <in>vis_Interp.c</in>
-                    <in>vis_SrcMaskFill.c</in>
-                    <in>vis_SrcOverMaskBlit.c</in>
-                    <in>vis_SrcOverMaskFill.c</in>
-                    <in>vis_ThreeByteBgr.c</in>
-                    <in>vis_UshortGray.c</in>
-                    <in>vis_UshortGray_FromRgb.c</in>
-                    <in>vis_XorBlit.c</in>
-                  </df>
-                  <in>j2d_md.h</in>
-                </df>
-              </df>
-              <df name="libawt_headless">
-                <df name="awt">
-                  <in>HeadlessToolkit.c</in>
-                </df>
-              </df>
-              <df name="libawt_xawt">
-                <df name="awt">
-                  <in>HPkeysym.h</in>
-                  <in>Xrandr.h</in>
-                  <in>awt_AWTEvent.c</in>
-                  <in>awt_AWTEvent.h</in>
-                  <in>awt_DrawingSurface.c</in>
-                  <in>awt_Event.c</in>
-                  <in>awt_Event.h</in>
-                  <in>awt_GraphicsEnv.c</in>
-                  <in>awt_InputMethod.c</in>
-                  <in>awt_Insets.c</in>
-                  <in>awt_Insets.h</in>
-                  <in>awt_MenuComponent.h</in>
-                  <in>awt_Robot.c</in>
-                  <in>awt_UNIXToolkit.c</in>
-                  <in>awt_util.c</in>
-                  <in>canvas.h</in>
-                  <in>gtk2_interface.c</in>
-                  <in>gtk2_interface.h</in>
-                  <in>gtk3_interface.c</in>
-                  <in>gtk3_interface.h</in>
-                  <in>gtk_interface.c</in>
-                  <in>gtk_interface.h</in>
-                  <in>list.c</in>
-                  <in>list.h</in>
-                  <in>multiVis.c</in>
-                  <in>multiVis.h</in>
-                  <in>multi_font.c</in>
-                  <in>multi_font.h</in>
-                  <in>randr.h</in>
-                  <in>robot_common.c</in>
-                  <in>robot_common.h</in>
-                  <in>sun_awt_X11_GtkFileDialogPeer.c</in>
-                  <in>swing_GTKEngine.c</in>
-                  <in>swing_GTKStyle.c</in>
-                  <in>wsutils.h</in>
-                </df>
-                <df name="java2d">
-                  <df name="x11">
-                    <in>XRBackendNative.c</in>
-                    <in>XRSurfaceData.c</in>
-                  </df>
-                </df>
-                <df name="xawt">
-                  <in>XToolkit.c</in>
-                  <in>XWindow.c</in>
-                  <in>XlibWrapper.c</in>
-                  <in>awt_Desktop.c</in>
-                  <in>awt_Taskbar.c</in>
-                  <in>awt_Taskbar.h</in>
-                  <in>gnome_interface.c</in>
-                  <in>gnome_interface.h</in>
-                </df>
-              </df>
-              <df name="libfontmanager">
-                <in>X11FontScaler.c</in>
-                <in>X11TextRenderer.c</in>
-              </df>
-              <df name="libjawt">
-                <in>jawt.c</in>
-              </df>
-              <df name="libjsound">
-                <in>PLATFORM_API_BsdOS_ALSA_CommonUtils.c</in>
-                <in>PLATFORM_API_BsdOS_ALSA_CommonUtils.h</in>
-                <in>PLATFORM_API_BsdOS_ALSA_MidiIn.c</in>
-                <in>PLATFORM_API_BsdOS_ALSA_MidiOut.c</in>
-                <in>PLATFORM_API_BsdOS_ALSA_MidiUtils.c</in>
-                <in>PLATFORM_API_BsdOS_ALSA_MidiUtils.h</in>
-                <in>PLATFORM_API_BsdOS_ALSA_PCM.c</in>
-                <in>PLATFORM_API_BsdOS_ALSA_PCMUtils.c</in>
-                <in>PLATFORM_API_BsdOS_ALSA_PCMUtils.h</in>
-                <in>PLATFORM_API_BsdOS_ALSA_Ports.c</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_CommonUtils.c</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_CommonUtils.h</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_MidiIn.c</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_MidiOut.c</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_MidiUtils.c</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_MidiUtils.h</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_PCM.c</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_PCMUtils.c</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_PCMUtils.h</in>
-                <in>PLATFORM_API_LinuxOS_ALSA_Ports.c</in>
-                <in>PLATFORM_API_SolarisOS_PCM.c</in>
-                <in>PLATFORM_API_SolarisOS_Ports.c</in>
-                <in>PLATFORM_API_SolarisOS_Utils.c</in>
-                <in>PLATFORM_API_SolarisOS_Utils.h</in>
-              </df>
-              <df name="libmlib_image">
-                <in>mlib_ImageConvCopyEdge_Fp.c</in>
-                <in>mlib_v_ImageAffine_BC.c</in>
-                <in>mlib_v_ImageAffine_BC_S16.c</in>
-                <in>mlib_v_ImageAffine_BC_U16.c</in>
-                <in>mlib_v_ImageAffine_BL.c</in>
-                <in>mlib_v_ImageAffine_BL_S16.c</in>
-                <in>mlib_v_ImageAffine_BL_S16.h</in>
-                <in>mlib_v_ImageAffine_BL_U16.c</in>
-                <in>mlib_v_ImageAffine_NN.c</in>
-                <in>mlib_v_ImageChannelExtract.h</in>
-                <in>mlib_v_ImageChannelExtract_1.c</in>
-                <in>mlib_v_ImageChannelExtract_43.c</in>
-                <in>mlib_v_ImageChannelInsert.h</in>
-                <in>mlib_v_ImageChannelInsert_1.c</in>
-                <in>mlib_v_ImageConv.h</in>
-                <in>mlib_v_ImageConvClearEdge.c</in>
-                <in>mlib_v_ImageConvCopyEdge.c</in>
-                <in>mlib_v_ImageConvMxN_8.c</in>
-                <in>mlib_v_ImageConvMxN_8ext.c</in>
-                <in>mlib_v_ImageConvVersion.c</in>
-                <in>mlib_v_ImageConv_8nw.c</in>
-                <in>mlib_v_ImageFilters.c</in>
-                <in>mlib_v_ImageFilters.h</in>
-                <in>mlib_v_ImageLookUp.c</in>
-                <in>mlib_v_ImageLookUpFunc.h</in>
-                <in>mlib_v_ImageLookUpS16S16Func.c</in>
-                <in>mlib_v_ImageLookUpS16S32Func.c</in>
-                <in>mlib_v_ImageLookUpS16U16Func.c</in>
-                <in>mlib_v_ImageLookUpS16U8Func.c</in>
-                <in>mlib_v_ImageLookUpS32S16Func.c</in>
-                <in>mlib_v_ImageLookUpS32S32Func.c</in>
-                <in>mlib_v_ImageLookUpS32U16Func.c</in>
-                <in>mlib_v_ImageLookUpS32U8Func.c</in>
-                <in>mlib_v_ImageLookUpSIS16S16Func.c</in>
-                <in>mlib_v_ImageLookUpSIS16S32Func.c</in>
-                <in>mlib_v_ImageLookUpSIS16U16Func.c</in>
-                <in>mlib_v_ImageLookUpSIS16U8Func.c</in>
-                <in>mlib_v_ImageLookUpSIS32S16Func.c</in>
-                <in>mlib_v_ImageLookUpSIS32S32Func.c</in>
-                <in>mlib_v_ImageLookUpSIS32U16Func.c</in>
-                <in>mlib_v_ImageLookUpSIS32U8Func.c</in>
-                <in>mlib_v_ImageLookUpSIU16S16Func.c</in>
-                <in>mlib_v_ImageLookUpSIU16S32Func.c</in>
-                <in>mlib_v_ImageLookUpSIU16U16Func.c</in>
-                <in>mlib_v_ImageLookUpSIU16U8Func.c</in>
-                <in>mlib_v_ImageLookUpSIU8S16Func.c</in>
-                <in>mlib_v_ImageLookUpSIU8S32Func.c</in>
-                <in>mlib_v_ImageLookUpSIU8U16Func.c</in>
-                <in>mlib_v_ImageLookUpSIU8U8Func.c</in>
-                <in>mlib_v_ImageLookUpU16S16Func.c</in>
-                <in>mlib_v_ImageLookUpU16S32Func.c</in>
-                <in>mlib_v_ImageLookUpU16U16Func.c</in>
-                <in>mlib_v_ImageLookUpU16U8Func.c</in>
-                <in>mlib_v_ImageLookUpU8S16Func.c</in>
-                <in>mlib_v_ImageLookUpU8S32Func.c</in>
-                <in>mlib_v_ImageLookUpU8U16Func.c</in>
-                <in>mlib_v_ImageLookUpU8U8Func.c</in>
-                <in>vis_32.il</in>
-                <in>vis_64.il</in>
-              </df>
-              <df name="libsplashscreen">
-                <in>splashscreen_config.h</in>
-                <in>splashscreen_sys.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="common">
-                <df name="awt">
-                  <df name="systemscale">
-                    <in>systemScale.cpp</in>
-                    <in>systemScale.h</in>
-                  </df>
-                  <df name="utility">
-                    <in>rect.h</in>
-                  </df>
-                </df>
-                <in>awt_makecube.cpp</in>
-              </df>
-              <df name="include">
-                <in>jawt_md.h</in>
-              </df>
-              <df name="libawt">
-                <df name="java2d">
-                  <df name="d3d">
-                    <in>D3DBadHardware.h</in>
-                    <in>D3DBlitLoops.cpp</in>
-                    <in>D3DBlitLoops.h</in>
-                    <in>D3DBufImgOps.cpp</in>
-                    <in>D3DBufImgOps.h</in>
-                    <in>D3DContext.cpp</in>
-                    <in>D3DContext.h</in>
-                    <in>D3DGlyphCache.cpp</in>
-                    <in>D3DGlyphCache.h</in>
-                    <in>D3DGraphicsDevice.cpp</in>
-                    <in>D3DGraphicsDevice.h</in>
-                    <in>D3DMaskBlit.cpp</in>
-                    <in>D3DMaskBlit.h</in>
-                    <in>D3DMaskCache.cpp</in>
-                    <in>D3DMaskCache.h</in>
-                    <in>D3DMaskFill.cpp</in>
-                    <in>D3DMaskFill.h</in>
-                    <in>D3DPaints.cpp</in>
-                    <in>D3DPaints.h</in>
-                    <in>D3DPipeline.h</in>
-                    <in>D3DPipelineManager.cpp</in>
-                    <in>D3DPipelineManager.h</in>
-                    <in>D3DRenderQueue.cpp</in>
-                    <in>D3DRenderQueue.h</in>
-                    <in>D3DRenderer.cpp</in>
-                    <in>D3DRenderer.h</in>
-                    <in>D3DResourceManager.cpp</in>
-                    <in>D3DResourceManager.h</in>
-                    <in>D3DShaderGen.c</in>
-                    <in>D3DShaders.h</in>
-                    <in>D3DSurfaceData.cpp</in>
-                    <in>D3DSurfaceData.h</in>
-                    <in>D3DTextRenderer.cpp</in>
-                    <in>D3DTextRenderer.h</in>
-                    <in>D3DVertexCacher.cpp</in>
-                    <in>D3DVertexCacher.h</in>
-                    <in>ShaderList.c</in>
-                    <in>ShaderList.h</in>
-                  </df>
-                  <df name="opengl">
-                    <df name="J2D_GL">
-                      <in>wglext.h</in>
-                    </df>
-                    <in>OGLFuncs_md.h</in>
-                    <in>WGLGraphicsConfig.c</in>
-                    <in>WGLGraphicsConfig.h</in>
-                    <in>WGLSurfaceData.c</in>
-                    <in>WGLSurfaceData.h</in>
-                  </df>
-                  <df name="windows">
-                    <in>GDIBlitLoops.cpp</in>
-                    <in>GDIRenderer.cpp</in>
-                    <in>GDIWindowSurfaceData.cpp</in>
-                    <in>GDIWindowSurfaceData.h</in>
-                    <in>WindowsFlags.cpp</in>
-                    <in>WindowsFlags.h</in>
-                  </df>
-                  <in>j2d_md.h</in>
-                </df>
-                <df name="windows">
-                  <in>CmdIDList.cpp</in>
-                  <in>CmdIDList.h</in>
-                  <in>ComCtl32Util.cpp</in>
-                  <in>ComCtl32Util.h</in>
-                  <in>Devices.cpp</in>
-                  <in>Devices.h</in>
-                  <in>DllUtil.cpp</in>
-                  <in>DllUtil.h</in>
-                  <in>GDIHashtable.cpp</in>
-                  <in>GDIHashtable.h</in>
-                  <in>Hashtable.cpp</in>
-                  <in>Hashtable.h</in>
-                  <in>MouseInfo.cpp</in>
-                  <in>ObjectList.cpp</in>
-                  <in>ObjectList.h</in>
-                  <in>ShellFolder2.cpp</in>
-                  <in>ThemeReader.cpp</in>
-                  <in>WPrinterJob.cpp</in>
-                  <in>alloc.h</in>
-                  <in>awt.h</in>
-                  <in>awt_AWTEvent.cpp</in>
-                  <in>awt_AWTEvent.h</in>
-                  <in>awt_BitmapUtil.cpp</in>
-                  <in>awt_BitmapUtil.h</in>
-                  <in>awt_Brush.cpp</in>
-                  <in>awt_Brush.h</in>
-                  <in>awt_Button.cpp</in>
-                  <in>awt_Button.h</in>
-                  <in>awt_Canvas.cpp</in>
-                  <in>awt_Canvas.h</in>
-                  <in>awt_Checkbox.cpp</in>
-                  <in>awt_Checkbox.h</in>
-                  <in>awt_Choice.cpp</in>
-                  <in>awt_Choice.h</in>
-                  <in>awt_Clipboard.cpp</in>
-                  <in>awt_Clipboard.h</in>
-                  <in>awt_Color.cpp</in>
-                  <in>awt_Color.h</in>
-                  <in>awt_Component.cpp</in>
-                  <in>awt_Component.h</in>
-                  <in>awt_Container.cpp</in>
-                  <in>awt_Container.h</in>
-                  <in>awt_Cursor.cpp</in>
-                  <in>awt_Cursor.h</in>
-                  <in>awt_CustomPaletteDef.h</in>
-                  <in>awt_DCHolder.cpp</in>
-                  <in>awt_DCHolder.h</in>
-                  <in>awt_DataTransferer.cpp</in>
-                  <in>awt_DataTransferer.h</in>
-                  <in>awt_Debug.cpp</in>
-                  <in>awt_Debug.h</in>
-                  <in>awt_Desktop.cpp</in>
-                  <in>awt_DesktopProperties.cpp</in>
-                  <in>awt_DesktopProperties.h</in>
-                  <in>awt_Dialog.cpp</in>
-                  <in>awt_Dialog.h</in>
-                  <in>awt_Dimension.cpp</in>
-                  <in>awt_Dimension.h</in>
-                  <in>awt_DnDDS.cpp</in>
-                  <in>awt_DnDDS.h</in>
-                  <in>awt_DnDDT.cpp</in>
-                  <in>awt_DnDDT.h</in>
-                  <in>awt_DrawingSurface.cpp</in>
-                  <in>awt_DrawingSurface.h</in>
-                  <in>awt_Event.cpp</in>
-                  <in>awt_Event.h</in>
-                  <in>awt_FileDialog.cpp</in>
-                  <in>awt_FileDialog.h</in>
-                  <in>awt_Font.cpp</in>
-                  <in>awt_Font.h</in>
-                  <in>awt_Frame.cpp</in>
-                  <in>awt_Frame.h</in>
-                  <in>awt_GDIObject.cpp</in>
-                  <in>awt_GDIObject.h</in>
-                  <in>awt_IconCursor.cpp</in>
-                  <in>awt_IconCursor.h</in>
-                  <in>awt_InputEvent.cpp</in>
-                  <in>awt_InputEvent.h</in>
-                  <in>awt_InputMethod.cpp</in>
-                  <in>awt_InputTextInfor.cpp</in>
-                  <in>awt_InputTextInfor.h</in>
-                  <in>awt_Insets.cpp</in>
-                  <in>awt_Insets.h</in>
-                  <in>awt_KeyEvent.cpp</in>
-                  <in>awt_KeyEvent.h</in>
-                  <in>awt_KeyboardFocusManager.cpp</in>
-                  <in>awt_Label.cpp</in>
-                  <in>awt_Label.h</in>
-                  <in>awt_List.cpp</in>
-                  <in>awt_List.h</in>
-                  <in>awt_Menu.cpp</in>
-                  <in>awt_Menu.h</in>
-                  <in>awt_MenuBar.cpp</in>
-                  <in>awt_MenuBar.h</in>
-                  <in>awt_MenuItem.cpp</in>
-                  <in>awt_MenuItem.h</in>
-                  <in>awt_Mlib.cpp</in>
-                  <in>awt_Mlib.h</in>
-                  <in>awt_MouseEvent.cpp</in>
-                  <in>awt_MouseEvent.h</in>
-                  <in>awt_Object.cpp</in>
-                  <in>awt_Object.h</in>
-                  <in>awt_Palette.cpp</in>
-                  <in>awt_Palette.h</in>
-                  <in>awt_Panel.cpp</in>
-                  <in>awt_Panel.h</in>
-                  <in>awt_Pen.cpp</in>
-                  <in>awt_Pen.h</in>
-                  <in>awt_PopupMenu.cpp</in>
-                  <in>awt_PopupMenu.h</in>
-                  <in>awt_PrintControl.cpp</in>
-                  <in>awt_PrintControl.h</in>
-                  <in>awt_PrintDialog.cpp</in>
-                  <in>awt_PrintDialog.h</in>
-                  <in>awt_PrintJob.cpp</in>
-                  <in>awt_Rectangle.cpp</in>
-                  <in>awt_Rectangle.h</in>
-                  <in>awt_Robot.cpp</in>
-                  <in>awt_Robot.h</in>
-                  <in>awt_ScrollPane.cpp</in>
-                  <in>awt_ScrollPane.h</in>
-                  <in>awt_Scrollbar.cpp</in>
-                  <in>awt_Scrollbar.h</in>
-                  <in>awt_Taskbar.cpp</in>
-                  <in>awt_Taskbar.h</in>
-                  <in>awt_TextArea.cpp</in>
-                  <in>awt_TextArea.h</in>
-                  <in>awt_TextComponent.cpp</in>
-                  <in>awt_TextComponent.h</in>
-                  <in>awt_TextField.cpp</in>
-                  <in>awt_TextField.h</in>
-                  <in>awt_Toolkit.cpp</in>
-                  <in>awt_Toolkit.h</in>
-                  <in>awt_TrayIcon.cpp</in>
-                  <in>awt_TrayIcon.h</in>
-                  <in>awt_Win32GraphicsConfig.cpp</in>
-                  <in>awt_Win32GraphicsConfig.h</in>
-                  <in>awt_Win32GraphicsDevice.cpp</in>
-                  <in>awt_Win32GraphicsDevice.h</in>
-                  <in>awt_Win32GraphicsEnv.cpp</in>
-                  <in>awt_Window.cpp</in>
-                  <in>awt_Window.h</in>
-                  <in>awt_new.cpp</in>
-                  <in>awt_new.h</in>
-                  <in>awt_ole.cpp</in>
-                  <in>awt_ole.h</in>
-                  <in>awtmsg.h</in>
-                  <in>colordata.h</in>
-                  <in>img_util_md.h</in>
-                  <in>initIDs.cpp</in>
-                  <in>mlib_types_md.h</in>
-                  <in>stdhdrs.h</in>
-                </df>
-              </df>
-              <df name="libfontmanager">
-                <in>fontpath.c</in>
-                <in>lcdglyph.c</in>
-              </df>
-              <df name="libjawt">
-                <in>jawt.cpp</in>
-              </df>
-              <df name="libjsound">
-                <in>PLATFORM_API_WinOS_Charset_Util.cpp</in>
-                <in>PLATFORM_API_WinOS_Charset_Util.h</in>
-                <in>PLATFORM_API_WinOS_DirectSound.cpp</in>
-                <in>PLATFORM_API_WinOS_MidiIn.cpp</in>
-                <in>PLATFORM_API_WinOS_MidiOut.c</in>
-                <in>PLATFORM_API_WinOS_Ports.c</in>
-                <in>PLATFORM_API_WinOS_Util.c</in>
-                <in>PLATFORM_API_WinOS_Util.h</in>
-              </df>
-              <df name="libsplashscreen">
-                <in>splashscreen_config.h</in>
-                <in>splashscreen_sys.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.instrument">
-          <df name="share">
-            <df name="native">
-              <df name="libinstrument">
-                <in>EncodingSupport.c</in>
-                <in>EncodingSupport.h</in>
-                <in>FileSystemSupport.h</in>
-                <in>InstrumentationImplNativeMethods.c</in>
-                <in>InvocationAdapter.c</in>
-                <in>JPLISAgent.c</in>
-                <in>JPLISAgent.h</in>
-                <in>JPLISAssert.c</in>
-                <in>JPLISAssert.h</in>
-                <in>JarFacade.c</in>
-                <in>JarFacade.h</in>
-                <in>JavaExceptions.c</in>
-                <in>JavaExceptions.h</in>
-                <in>PathCharsValidator.c</in>
-                <in>PathCharsValidator.h</in>
-                <in>Reentrancy.c</in>
-                <in>Reentrancy.h</in>
-                <in>Utilities.c</in>
-                <in>Utilities.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="libinstrument">
-                <in>EncodingSupport_md.c</in>
-                <in>FileSystemSupport_md.c</in>
-                <in>FileSystemSupport_md.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libinstrument">
-                <in>EncodingSupport_md.c</in>
-                <in>FileSystemSupport_md.c</in>
-                <in>FileSystemSupport_md.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.management">
-          <df name="share">
-            <df name="native">
-              <df name="include">
-                <in>jmm.h</in>
-              </df>
-              <df name="libmanagement">
-                <in>ClassLoadingImpl.c</in>
-                <in>GarbageCollectorImpl.c</in>
-                <in>HotspotThread.c</in>
-                <in>MemoryImpl.c</in>
-                <in>MemoryManagerImpl.c</in>
-                <in>MemoryPoolImpl.c</in>
-                <in>ThreadImpl.c</in>
-                <in>VMManagementImpl.c</in>
-                <in>management.c</in>
-                <in>management.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.prefs">
-          <df name="macosx">
-            <df name="native">
-              <df name="libprefs">
-                <in>MacOSXPreferencesFile.m</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="libprefs">
-                <in>FileSystemPreferences.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libprefs">
-                <in>WindowsPreferences.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.rmi">
-          <df name="share">
-            <df name="native">
-              <df name="librmi">
-                <in>GC.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.security.jgss">
-          <df name="macosx">
-            <df name="native">
-              <df name="libosxkrb5">
-                <in>SCDynamicStoreConfig.m</in>
-                <in>nativeccache.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="share">
-            <df name="native">
-              <df name="libj2gss">
-                <in>GSSLibStub.c</in>
-                <in>NativeUtil.c</in>
-                <in>NativeUtil.h</in>
-                <in>gssapi.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="libj2gss">
-                <in>NativeFunc.c</in>
-                <in>NativeFunc.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libw2k_lsa_auth">
-                <in>NativeCreds.c</in>
-                <in>WindowsDirectory.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="java.smartcardio">
-          <df name="share">
-            <df name="native">
-              <df name="libj2pcsc">
-                <in>pcsc.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="libj2pcsc">
-                <df name="MUSCLE">
-                  <in>pcsclite.h</in>
-                  <in>winscard.h</in>
-                </df>
-                <in>pcsc_md.c</in>
-                <in>pcsc_md.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libj2pcsc">
-                <in>pcsc_md.c</in>
-                <in>pcsc_md.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.accessibility">
-          <df name="windows">
-            <df name="native">
-              <df name="bridge">
-                <in>AccessBridgeCalls.c</in>
-              </df>
-              <df name="common">
-                <in>AccessBridgeDebug.cpp</in>
-                <in>AccessBridgeDebug.h</in>
-                <in>AccessBridgeMessages.cpp</in>
-                <in>AccessBridgeMessages.h</in>
-                <in>accessBridgeResource.h</in>
-                <in>resource.h</in>
-              </df>
-              <df name="include">
-                <df name="bridge">
-                  <in>AccessBridgeCallbacks.h</in>
-                  <in>AccessBridgeCalls.h</in>
-                  <in>AccessBridgePackages.h</in>
-                </df>
-              </df>
-              <df name="jabswitch">
-                <in>jabswitch.cpp</in>
-              </df>
-              <df name="jaccessinspector">
-                <in>MessageHistory.cpp</in>
-                <in>MessageHistory.h</in>
-                <in>jaccessinspector.cpp</in>
-                <in>jaccessinspector.h</in>
-                <in>jaccessinspectorResource.h</in>
-              </df>
-              <df name="jaccesswalker">
-                <in>jaccesswalker.cpp</in>
-                <in>jaccesswalker.h</in>
-                <in>jaccesswalkerResource.h</in>
-              </df>
-              <df name="libjabsysinfo">
-                <in>AccessBridgeSysInfo.cpp</in>
-              </df>
-              <df name="libjavaaccessbridge">
-                <in>AccessBridgeATInstance.cpp</in>
-                <in>AccessBridgeATInstance.h</in>
-                <in>AccessBridgeJavaEntryPoints.cpp</in>
-                <in>AccessBridgeJavaEntryPoints.h</in>
-                <in>JavaAccessBridge.cpp</in>
-                <in>JavaAccessBridge.h</in>
-              </df>
-              <df name="libwindowsaccessbridge">
-                <in>AccessBridgeEventHandler.cpp</in>
-                <in>AccessBridgeEventHandler.h</in>
-                <in>AccessBridgeJavaVMInstance.cpp</in>
-                <in>AccessBridgeJavaVMInstance.h</in>
-                <in>AccessBridgeMessageQueue.cpp</in>
-                <in>AccessBridgeMessageQueue.h</in>
-                <in>AccessBridgeWindowsEntryPoints.cpp</in>
-                <in>AccessBridgeWindowsEntryPoints.h</in>
-                <in>WinAccessBridge.cpp</in>
-                <in>WinAccessBridge.h</in>
-              </df>
-              <df name="toolscommon">
-                <in>AccessInfo.cpp</in>
-                <in>AccessInfo.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.attach">
-          <df name="aix">
-            <df name="native">
-              <df name="libattach">
-                <in>VirtualMachineImpl.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="linux">
-            <df name="native">
-              <df name="libattach">
-                <in>VirtualMachineImpl.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="macosx">
-            <df name="native">
-              <df name="libattach">
-                <in>VirtualMachineImpl.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="solaris">
-            <df name="native">
-              <df name="libattach">
-                <in>VirtualMachineImpl.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libattach">
-                <in>AttachProviderImpl.c</in>
-                <in>VirtualMachineImpl.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.crypto.cryptoki">
-          <df name="share">
-            <df name="native">
-              <df name="libj2pkcs11">
-                <in>j2secmod.c</in>
-                <in>j2secmod.h</in>
-                <in>p11_convert.c</in>
-                <in>p11_crypt.c</in>
-                <in>p11_digest.c</in>
-                <in>p11_dual.c</in>
-                <in>p11_general.c</in>
-                <in>p11_keymgmt.c</in>
-                <in>p11_mutex.c</in>
-                <in>p11_objmgmt.c</in>
-                <in>p11_sessmgmt.c</in>
-                <in>p11_sign.c</in>
-                <in>p11_util.c</in>
-                <in>pkcs-11v2-20a3.h</in>
-                <in>pkcs11.h</in>
-                <in>pkcs11f.h</in>
-                <in>pkcs11t.h</in>
-                <in>pkcs11wrapper.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="libj2pkcs11">
-                <in>j2secmod_md.c</in>
-                <in>j2secmod_md.h</in>
-                <in>p11_md.c</in>
-                <in>p11_md.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libj2pkcs11">
-                <in>j2secmod_md.c</in>
-                <in>j2secmod_md.h</in>
-                <in>p11_md.c</in>
-                <in>p11_md.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.crypto.ec">
-          <df name="share">
-            <df name="native">
-              <df name="libsunec">
-                <df name="impl">
-                  <in>ec.c</in>
-                  <in>ec.h</in>
-                  <in>ec2.h</in>
-                  <in>ec2_163.c</in>
-                  <in>ec2_193.c</in>
-                  <in>ec2_233.c</in>
-                  <in>ec2_aff.c</in>
-                  <in>ec2_mont.c</in>
-                  <in>ec_naf.c</in>
-                  <in>ecc_impl.h</in>
-                  <in>ecdecode.c</in>
-                  <in>ecl-curve.h</in>
-                  <in>ecl-exp.h</in>
-                  <in>ecl-priv.h</in>
-                  <in>ecl.c</in>
-                  <in>ecl.h</in>
-                  <in>ecl_curve.c</in>
-                  <in>ecl_gf.c</in>
-                  <in>ecl_mult.c</in>
-                  <in>ecp.h</in>
-                  <in>ecp_192.c</in>
-                  <in>ecp_224.c</in>
-                  <in>ecp_256.c</in>
-                  <in>ecp_384.c</in>
-                  <in>ecp_521.c</in>
-                  <in>ecp_aff.c</in>
-                  <in>ecp_jac.c</in>
-                  <in>ecp_jm.c</in>
-                  <in>ecp_mont.c</in>
-                  <in>logtab.h</in>
-                  <in>mp_gf2m-priv.h</in>
-                  <in>mp_gf2m.c</in>
-                  <in>mp_gf2m.h</in>
-                  <in>mpi-config.h</in>
-                  <in>mpi-priv.h</in>
-                  <in>mpi.c</in>
-                  <in>mpi.h</in>
-                  <in>mplogic.c</in>
-                  <in>mplogic.h</in>
-                  <in>mpmontg.c</in>
-                  <in>mpprime.h</in>
-                  <in>oid.c</in>
-                  <in>secitem.c</in>
-                  <in>secoidt.h</in>
-                </df>
-                <in>ECC_JNI.cpp</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.crypto.mscapi">
-          <df name="windows">
-            <df name="native">
-              <df name="libsunmscapi">
-                <in>security.cpp</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.crypto.ucrypto">
-          <df name="solaris">
-            <df name="native">
-              <df name="libj2ucrypto">
-                <in>nativeCrypto.c</in>
-                <in>nativeCrypto.h</in>
-                <in>nativeCryptoMD.c</in>
-                <in>nativeFunc.c</in>
-                <in>nativeFunc.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.hotspot.agent">
-          <df name="linux">
-            <df name="native">
-              <df name="libsaproc">
-                <in>LinuxDebuggerLocal.c</in>
-                <in>elfmacros.h</in>
-                <in>libproc.h</in>
-                <in>libproc_impl.c</in>
-                <in>libproc_impl.h</in>
-                <in>proc_service.h</in>
-                <in>ps_core.c</in>
-                <in>ps_proc.c</in>
-                <in>salibelf.c</in>
-                <in>salibelf.h</in>
-                <in>symtab.c</in>
-                <in>symtab.h</in>
-                <in>test.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="macosx">
-            <df name="native">
-              <df name="libsaproc">
-                <in>BsdDebuggerLocal.c</in>
-                <in>MacosxDebuggerLocal.m</in>
-                <in>StubDebuggerLocal.c</in>
-                <in>elfmacros.h</in>
-                <in>libproc.h</in>
-                <in>libproc_impl.c</in>
-                <in>libproc_impl.h</in>
-                <in>ps_core.c</in>
-                <in>ps_proc.c</in>
-                <in>salibelf.c</in>
-                <in>salibelf.h</in>
-                <in>symtab.c</in>
-                <in>symtab.h</in>
-                <in>test.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="share">
-            <df name="native">
-              <df name="libsaproc">
-                <in>sadis.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="solaris">
-            <df name="native">
-              <df name="libsaproc">
-                <in>libproc.h</in>
-                <in>salibproc.h</in>
-                <in>saproc.cpp</in>
-                <in>saproc_audit.cpp</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libsaproc">
-                <in>sawindbg.cpp</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.internal.le">
-          <df name="windows">
-            <df name="native">
-              <df name="lible">
-                <in>WindowsTerminal.cpp</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.internal.vm.compiler">
-          <df name="share">
-            <df name="classes">
-              <df name="org.graalvm.compiler.core">
-                <df name="src">
-                  <df name="org">
-                    <df name="graalvm">
-                      <df name="compiler">
-                        <df name="core">
-                          <df name="doc-files">
-                            <in>CompilationBailoutActionHelp.txt</in>
-                          </df>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-              <df name="org.graalvm.compiler.debug">
-                <df name="src">
-                  <df name="org">
-                    <df name="graalvm">
-                      <df name="compiler">
-                        <df name="debug">
-                          <df name="doc-files">
-                            <in>DumpHelp.txt</in>
-                            <in>MethodFilterHelp.txt</in>
-                            <in>MetricsFileHelp.txt</in>
-                          </df>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-              <df name="org.graalvm.compiler.hotspot">
-                <df name="src">
-                  <df name="org">
-                    <df name="graalvm">
-                      <df name="compiler">
-                        <df name="hotspot">
-                          <df name="debug">
-                            <df name="doc-files">
-                              <in>BenchmarkDynamicCountersHelp.txt</in>
-                            </df>
-                          </df>
-                          <df name="replacements">
-                            <df name="doc-files">
-                              <in>ProfileAllocationsContextHelp.txt</in>
-                            </df>
-                          </df>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.jdeps">
-          <df name="share">
-            <df name="classes">
-              <df name="com">
-                <df name="sun">
-                  <df name="tools">
-                    <df name="jdeps">
-                      <df name="resources">
-                        <in>jdk8_internals.txt</in>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.jdi">
-          <df name="share">
-            <df name="native">
-              <df name="libdt_shmem">
-                <in>SharedMemory.h</in>
-                <in>SharedMemoryConnection.c</in>
-                <in>SharedMemoryTransport.c</in>
-                <in>shmemBack.c</in>
-                <in>shmemBase.c</in>
-                <in>shmemBase.h</in>
-                <in>sysShmem.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libdt_shmem">
-                <in>shmem_md.c</in>
-                <in>shmem_md.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.jdwp.agent">
-          <df name="share">
-            <df name="native">
-              <df name="include">
-                <in>jdwpTransport.h</in>
-              </df>
-              <df name="libdt_socket">
-                <in>socketTransport.c</in>
-                <in>socketTransport.h</in>
-                <in>sysSocket.h</in>
-              </df>
-              <df name="libjdwp">
-                <df name="export">
-                  <in>sys.h</in>
-                </df>
-                <in>ArrayReferenceImpl.c</in>
-                <in>ArrayReferenceImpl.h</in>
-                <in>ArrayTypeImpl.c</in>
-                <in>ArrayTypeImpl.h</in>
-                <in>ClassLoaderReferenceImpl.c</in>
-                <in>ClassLoaderReferenceImpl.h</in>
-                <in>ClassObjectReferenceImpl.c</in>
-                <in>ClassObjectReferenceImpl.h</in>
-                <in>ClassTypeImpl.c</in>
-                <in>ClassTypeImpl.h</in>
-                <in>EventRequestImpl.c</in>
-                <in>EventRequestImpl.h</in>
-                <in>FieldImpl.c</in>
-                <in>FieldImpl.h</in>
-                <in>FrameID.c</in>
-                <in>FrameID.h</in>
-                <in>InterfaceTypeImpl.c</in>
-                <in>InterfaceTypeImpl.h</in>
-                <in>JDWP.h</in>
-                <in>MethodImpl.c</in>
-                <in>MethodImpl.h</in>
-                <in>ModuleReferenceImpl.c</in>
-                <in>ModuleReferenceImpl.h</in>
-                <in>ObjectReferenceImpl.c</in>
-                <in>ObjectReferenceImpl.h</in>
-                <in>ReferenceTypeImpl.c</in>
-                <in>ReferenceTypeImpl.h</in>
-                <in>SDE.c</in>
-                <in>SDE.h</in>
-                <in>StackFrameImpl.c</in>
-                <in>StackFrameImpl.h</in>
-                <in>StringReferenceImpl.c</in>
-                <in>StringReferenceImpl.h</in>
-                <in>ThreadGroupReferenceImpl.c</in>
-                <in>ThreadGroupReferenceImpl.h</in>
-                <in>ThreadReferenceImpl.c</in>
-                <in>ThreadReferenceImpl.h</in>
-                <in>VirtualMachineImpl.c</in>
-                <in>VirtualMachineImpl.h</in>
-                <in>bag.c</in>
-                <in>bag.h</in>
-                <in>classTrack.c</in>
-                <in>classTrack.h</in>
-                <in>commonRef.c</in>
-                <in>commonRef.h</in>
-                <in>debugDispatch.c</in>
-                <in>debugDispatch.h</in>
-                <in>debugInit.c</in>
-                <in>debugInit.h</in>
-                <in>debugLoop.c</in>
-                <in>debugLoop.h</in>
-                <in>error_messages.c</in>
-                <in>error_messages.h</in>
-                <in>eventFilter.c</in>
-                <in>eventFilter.h</in>
-                <in>eventFilterRestricted.h</in>
-                <in>eventHandler.c</in>
-                <in>eventHandler.h</in>
-                <in>eventHandlerRestricted.h</in>
-                <in>eventHelper.c</in>
-                <in>eventHelper.h</in>
-                <in>inStream.c</in>
-                <in>inStream.h</in>
-                <in>invoker.c</in>
-                <in>invoker.h</in>
-                <in>log_messages.c</in>
-                <in>log_messages.h</in>
-                <in>outStream.c</in>
-                <in>outStream.h</in>
-                <in>standardHandlers.c</in>
-                <in>standardHandlers.h</in>
-                <in>stepControl.c</in>
-                <in>stepControl.h</in>
-                <in>stream.c</in>
-                <in>stream.h</in>
-                <in>threadControl.c</in>
-                <in>threadControl.h</in>
-                <in>transport.c</in>
-                <in>transport.h</in>
-                <in>utf_util.c</in>
-                <in>utf_util.h</in>
-                <in>util.c</in>
-                <in>util.h</in>
-                <in>vm_interface.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="libdt_socket">
-                <in>socket_md.c</in>
-                <in>socket_md.h</in>
-              </df>
-              <df name="libjdwp">
-                <in>exec_md.c</in>
-                <in>linker_md.c</in>
-                <in>path_md.h</in>
-                <in>proc_md.h</in>
-                <in>util_md.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libdt_socket">
-                <in>socket_md.c</in>
-                <in>socket_md.h</in>
-              </df>
-              <df name="libjdwp">
-                <in>exec_md.c</in>
-                <in>linker_md.c</in>
-                <in>mutex_md.h</in>
-                <in>path_md.h</in>
-                <in>proc_md.h</in>
-                <in>util_md.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.localedata">
-          <df name="share">
-            <df name="classes">
-              <df name="sun">
-                <df name="util">
-                  <df name="cldr">
-                    <df name="resources">
-                      <in>unicode-license.txt</in>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.management">
-          <df name="aix">
-            <df name="native">
-              <df name="libmanagement_ext">
-                <in>UnixOperatingSystem.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="linux">
-            <df name="native">
-              <df name="libmanagement_ext">
-                <in>UnixOperatingSystem.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="macosx">
-            <df name="native">
-              <df name="libmanagement_ext">
-                <in>UnixOperatingSystem.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="share">
-            <df name="native">
-              <df name="libmanagement_ext">
-                <in>DiagnosticCommandImpl.c</in>
-                <in>Flag.c</in>
-                <in>GarbageCollectorExtImpl.c</in>
-                <in>GcInfoBuilder.c</in>
-                <in>HotSpotDiagnostic.c</in>
-                <in>management_ext.c</in>
-                <in>management_ext.h</in>
-              </df>
-            </df>
-          </df>
-          <df name="solaris">
-            <df name="native">
-              <df name="libmanagement_ext">
-                <in>UnixOperatingSystem.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="unix">
-            <df name="native">
-              <df name="libmanagement_ext">
-                <in>OperatingSystemImpl.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libmanagement_ext">
-                <in>OperatingSystemImpl.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.management.agent">
-          <df name="unix">
-            <df name="native">
-              <df name="libmanagement_agent">
-                <in>FileSystemImpl.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libmanagement_agent">
-                <in>FileSystemImpl.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.net">
-          <df name="solaris">
-            <df name="native">
-              <df name="libextnet">
-                <in>SolarisSocketOptions.c</in>
-                <in>SolarisSocketOptions.h</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.pack">
-          <df name="share">
-            <df name="native">
-              <df name="common-unpack">
-                <in>bands.cpp</in>
-                <in>bands.h</in>
-                <in>bytes.cpp</in>
-                <in>bytes.h</in>
-                <in>coding.cpp</in>
-                <in>coding.h</in>
-                <in>constants.h</in>
-                <in>defines.h</in>
-                <in>unpack.cpp</in>
-                <in>unpack.h</in>
-                <in>utils.cpp</in>
-                <in>utils.h</in>
-                <in>zip.cpp</in>
-                <in>zip.h</in>
-              </df>
-              <df name="libunpack">
-                <in>jni.cpp</in>
-              </df>
-              <df name="unpack200">
-                <in>main.cpp</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.sctp">
-          <df name="unix">
-            <df name="native">
-              <df name="libsctp">
-                <in>Sctp.h</in>
-                <in>SctpChannelImpl.c</in>
-                <in>SctpNet.c</in>
-                <in>SctpServerChannelImpl.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="jdk.security.auth">
-          <df name="unix">
-            <df name="native">
-              <df name="libjaas">
-                <in>Unix.c</in>
-              </df>
-            </df>
-          </df>
-          <df name="windows">
-            <df name="native">
-              <df name="libjaas">
-                <in>nt.c</in>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="sample">
-          <df name="nashorn">
-            <in>Main.asm</in>
-          </df>
-        </df>
-        <df name="utils">
-          <df name="hsdis">
-            <in>hsdis-demo.c</in>
-            <in>hsdis.c</in>
-            <in>hsdis.h</in>
-          </df>
-          <df name="reorder">
-            <df name="tools">
-              <in>mcount.c</in>
-              <in>remove_mcount.c</in>
-              <in>util-i586.il</in>
-              <in>util-sparc.il</in>
-              <in>util-sparcv9.il</in>
-            </df>
-          </df>
-        </df>
-      </df>
-      <df name="test">
-        <df name="failure_handler">
-          <df name="src">
-            <df name="windows">
-              <df name="native">
-                <df name="libtimeoutHandler">
-                  <in>GatherProcessInfoTimeoutHandler.c</in>
-                </df>
-              </df>
-            </df>
-          </df>
-        </df>
-        <df name="fmw">
-          <df name="gtest">
-            <df name="include">
-              <df name="gtest">
-                <df name="internal">
-                  <in>gtest-death-test-internal.h</in>
-                  <in>gtest-filepath.h</in>
-                  <in>gtest-internal.h</in>
-                  <in>gtest-linked_ptr.h</in>
-                  <in>gtest-param-util-generated.h</in>
-                  <in>gtest-param-util.h</in>
-                  <in>gtest-port.h</in>
-                  <in>gtest-string.h</in>
-                  <in>gtest-tuple.h</in>
-                  <in>gtest-type-util.h</in>
-                </df>
-                <in>gtest-death-test.h</in>
-                <in>gtest-message.h</in>
-                <in>gtest-param-test.h</in>
-                <in>gtest-printers.h</in>
-                <in>gtest-spi.h</in>
-                <in>gtest-test-part.h</in>
-                <in>gtest-typed-test.h</in>
-                <in>gtest.h</in>
-                <in>gtest_pred_impl.h</in>
-                <in>gtest_prod.h</in>
-              </df>
-            </df>
-            <df name="src">
-              <in>gtest-all.cc</in>
-              <in>gtest-death-test.cc</in>
-              <in>gtest-filepath.cc</in>
-              <in>gtest-internal-inl.h</in>
-              <in>gtest-port.cc</in>
-              <in>gtest-printers.cc</in>
-              <in>gtest-test-part.cc</in>
-              <in>gtest-typed-test.cc</in>
-              <in>gtest.cc</in>
-              <in>gtest_main.cc</in>
-            </df>
-          </df>
-        </df>
-        <df name="hotspot">
-          <df name="gtest">
-            <df name="classfile">
-              <in>test_AltHashing.cpp</in>
-              <in>test_symbolTable.cpp</in>
-            </df>
-            <df name="code">
-              <in>test_dependencyContext.cpp</in>
-            </df>
-            <df name="gc">
-              <df name="g1">
-                <in>test_bufferingOopClosure.cpp</in>
-                <in>test_freeRegionList.cpp</in>
-                <in>test_g1BiasedArray.cpp</in>
-                <in>test_g1CodeCacheRemSet.cpp</in>
-                <in>test_g1IHOPControl.cpp</in>
-                <in>test_g1Predictions.cpp</in>
-              </df>
-              <df name="parallel">
-                <in>test_psAdaptiveSizePolicy.cpp</in>
-                <in>test_psParallelCompact.cpp</in>
-              </df>
-              <df name="shared">
-                <in>test_collectedHeap.cpp</in>
-                <in>test_collectorPolicy.cpp</in>
-                <in>test_memset_with_concurrent_readers.cpp</in>
-                <in>test_workerDataArray.cpp</in>
-              </df>
-            </df>
-            <df name="logging">
-              <in>logTestFixture.cpp</in>
-              <in>logTestFixture.hpp</in>
-              <in>logTestUtils.inline.hpp</in>
-              <in>test_gcTraceTime.cpp</in>
-              <in>test_log.cpp</in>
-              <in>test_logConfiguration.cpp</in>
-              <in>test_logDecorations.cpp</in>
-              <in>test_logDecorators.cpp</in>
-              <in>test_logFileOutput.cpp</in>
-              <in>test_logLevel.cpp</in>
-              <in>test_logMessageTest.cpp</in>
-              <in>test_logOutputList.cpp</in>
-              <in>test_logStream.cpp</in>
-              <in>test_logTag.cpp</in>
-              <in>test_logTagLevelExpression.cpp</in>
-              <in>test_logTagSet.cpp</in>
-              <in>test_logTagSetDescriptions.cpp</in>
-            </df>
-            <df name="memory">
-              <in>test_chunkManager.cpp</in>
-              <in>test_guardedMemory.cpp</in>
-              <in>test_metachunk.cpp</in>
-              <in>test_spaceManager.cpp</in>
-            </df>
-            <df name="metaprogramming">
-              <in>test_conditional.cpp</in>
-              <in>test_decay.cpp</in>
-              <in>test_enableIf.cpp</in>
-              <in>test_isConst.cpp</in>
-              <in>test_isFloatingPoint.cpp</in>
-              <in>test_isIntegral.cpp</in>
-              <in>test_isPointer.cpp</in>
-              <in>test_isRegisteredEnum.cpp</in>
-              <in>test_isSame.cpp</in>
-              <in>test_isSigned.cpp</in>
-              <in>test_isVolatile.cpp</in>
-              <in>test_primitiveConversions.cpp</in>
-              <in>test_removeCV.cpp</in>
-              <in>test_removePointer.cpp</in>
-              <in>test_removeReference.cpp</in>
-            </df>
-            <df name="oops">
-              <in>test_arrayOop.cpp</in>
-              <in>test_instanceKlass.cpp</in>
-            </df>
-            <df name="runtime">
-              <in>test_arguments.cpp</in>
-              <in>test_classLoader.cpp</in>
-              <in>test_globals.cpp</in>
-              <in>test_os.cpp</in>
-              <in>test_semaphore.cpp</in>
-              <in>test_vmStructs.cpp</in>
-            </df>
-            <df name="utilities">
-              <in>test_align.cpp</in>
-              <in>test_bitMap.cpp</in>
-              <in>test_bitMap_search.cpp</in>
-              <in>test_bitMap_setops.cpp</in>
-              <in>test_chunkedList.cpp</in>
-              <in>test_count_trailing_zeros.cpp</in>
-              <in>test_globalDefinitions.cpp</in>
-              <in>test_json.cpp</in>
-              <in>test_linkedlist.cpp</in>
-              <in>test_quicksort.cpp</in>
-              <in>test_resourceHash.cpp</in>
-              <in>test_utf8.cpp</in>
-            </df>
-            <in>gtestLauncher.cpp</in>
-            <in>gtestMain.cpp</in>
-            <in>unittest.hpp</in>
-          </df>
-          <df name="jtreg">
-            <df name="compiler">
-              <df name="aot">
-                <df name="scripts">
-                  <in>java.base-list.txt</in>
-                  <in>jdk.internal.vm.compiler-list.txt</in>
-                  <in>jdk.scripting.nashorn-list.txt</in>
-                </df>
-              </df>
-              <df name="c2">
-                <df name="cr6890943">
-                  <in>input6890943.txt</in>
-                  <in>output6890943.txt</in>
-                </df>
-              </df>
-              <df name="calls">
-                <df name="common">
-                  <in>libCallsNative.c</in>
-                </df>
-                <in>libTestDirtyInt.c</in>
-              </df>
-              <df name="compilercontrol">
-                <in>control_off.txt</in>
-                <in>control_on.txt</in>
-              </df>
-              <df name="floatingpoint">
-                <in>libTestFloatJNIArgs.c</in>
-              </df>
-              <df name="jvmci">
-                <df name="jdk.vm.ci.code.test">
-                  <in>libNativeCallTest.c</in>
-                </df>
-              </df>
-              <df name="oracle">
-                <in>command1.txt</in>
-                <in>command2.txt</in>
-              </df>
-            </df>
-            <df name="gc">
-              <df name="cslocker">
-                <in>libTestCSLocker.c</in>
-              </df>
-              <df name="g1">
-                <df name="TestJNIWeakG1">
-                  <in>libTestJNIWeakG1.c</in>
-                </df>
-              </df>
-              <df name="stress">
-                <df name="gclocker">
-                  <in>libTestGCLocker.c</in>
-                </df>
-              </df>
-            </df>
-            <df name="native_sanity">
-              <in>libJniVersion.c</in>
-            </df>
-            <df name="runtime">
-              <df name="BoolReturn">
-                <in>libNativeSmallIntCalls.c</in>
-              </df>
-              <df name="CommandLine">
-                <in>flagfile.txt</in>
-              </df>
-              <df name="execstack">
-                <in>libtest-rw.c</in>
-                <in>libtest-rwx.c</in>
-              </df>
-              <df name="jni">
-                <df name="8025979">
-                  <in>libUninitializedStrings.c</in>
-                </df>
-                <df name="8033445">
-                  <in>libDefaultMethods.c</in>
-                </df>
-                <df name="CalleeSavedRegisters">
-                  <in>exeFPRegs.c</in>
-                </df>
-                <df name="CallWithJNIWeak">
-                  <in>libCallWithJNIWeak.c</in>
-                </df>
-                <df name="checked">
-                  <in>libTestCheckedJniExceptionCheck.c</in>
-                </df>
-                <df name="PrivateInterfaceMethods">
-                  <in>libPrivateInterfaceMethods.c</in>
-                </df>
-                <df name="ReturnJNIWeak">
-                  <in>libReturnJNIWeak.c</in>
-                </df>
-                <df name="ToStringInInterfaceTest">
-                  <in>libToStringTest.c</in>
-                </df>
-              </df>
-              <df name="jsig">
-                <in>libTestJNI.c</in>
-              </df>
-              <df name="libadimalloc.solaris.sparc">
-                <in>liboverflow.c</in>
-              </df>
-              <df name="modules">
-                <df name="getModuleJNI">
-                  <in>libGetModule.c</in>
-                </df>
-              </df>
-              <df name="noClassDefFoundMsg">
-                <in>libNoClassDefFoundMsg.c</in>
-              </df>
-              <df name="RedefineTests">
-                <in>libRedefineDoubleDelete.c</in>
-              </df>
-              <df name="SameObject">
-                <in>libSameObject.c</in>
-              </df>
-              <df name="StackGuardPages">
-                <in>exeinvoke.c</in>
-              </df>
-              <df name="ThreadSignalMask">
-                <in>exeThreadSignalMask.c</in>
-              </df>
-            </df>
-            <df name="serviceability">
-              <df name="dcmd">
-                <df name="compiler">
-                  <in>control1.txt</in>
-                  <in>control2.txt</in>
-                </df>
-              </df>
-              <df name="jvmti">
-                <df name="AddModuleExportsAndOpens">
-                  <in>libAddModuleExportsAndOpensTest.c</in>
-                </df>
-                <df name="AddModuleReads">
-                  <in>libAddModuleReadsTest.c</in>
-                </df>
-                <df name="AddModuleUsesAndProvides">
-                  <in>libAddModuleUsesAndProvidesTest.c</in>
-                </df>
-                <df name="GetModulesInfo">
-                  <in>libJvmtiGetAllModulesTest.c</in>
-                </df>
-                <df name="GetNamedModule">
-                  <in>libGetNamedModuleTest.c</in>
-                </df>
-                <df name="GetOwnedMonitorInfo">
-                  <in>libGetOwnedMonitorInfoTest.c</in>
-                </df>
-                <df name="IsModifiableModule">
-                  <in>libIsModifiableModuleTest.c</in>
-                </df>
-                <df name="HeapMonitorModule">
-                  <in>libHeapMonitorTest.c</in>
-                </df>
-                <df name="VMEvent">
-                  <in>libVMEventTest.c</in>
-                </df>
-                <df name="ModuleAwareAgents">
-                  <df name="ClassFileLoadHook">
-                    <in>libMAAClassFileLoadHook.c</in>
-                  </df>
-                  <df name="ClassLoadPrepare">
-                    <in>libMAAClassLoadPrepare.c</in>
-                  </df>
-                  <df name="ThreadStart">
-                    <in>libMAAThreadStart.c</in>
-                  </df>
-                </df>
-                <df name="StartPhase">
-                  <df name="AllowedFunctions">
-                    <in>libAllowedFunctions.c</in>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="testlibrary">
-              <df name="jvmti">
-                <in>libSimpleClassFileLoadHook.c</in>
-              </df>
-            </df>
-            <in>ProblemList.txt</in>
-          </df>
-        </df>
-        <df name="jaxp">
-          <df name="javax">
-            <df name="xml">
-              <df name="jaxp">
-                <df name="functional">
-                  <df name="test">
-                    <df name="gaptest">
-                      <df name="xmlfiles">
-                        <df name="out">
-                          <in>Bug4858685.txt</in>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-                <df name="unittest">
-                  <df name="common">
-                    <df name="prettyprint">
-                      <in>nodetest1.txt</in>
-                    </df>
-                  </df>
-                  <df name="stream">
-                    <df name="XMLEventWriterTest">
-                      <in>replace1.txt</in>
-                    </df>
-                    <df name="XMLResolverTest">
-                      <in>replace1.txt</in>
-                      <in>replace2.txt</in>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-          <in>ProblemList.txt</in>
-        </df>
-        <df name="jdk">
-          <df name="com">
-            <df name="sun">
-              <df name="crypto">
-                <df name="provider">
-                  <df name="Cipher">
-                    <df name="DES">
-                      <df name="inputData">
-                        <in>plain0.txt</in>
-                        <in>plain1.txt</in>
-                        <in>plain10.txt</in>
-                        <in>plain2.txt</in>
-                        <in>plain3.txt</in>
-                        <in>plain4.txt</in>
-                        <in>plain5.txt</in>
-                        <in>plain6.txt</in>
-                        <in>plain7.txt</in>
-                        <in>plain8.txt</in>
-                        <in>plain9.txt</in>
-                      </df>
-                    </df>
-                    <df name="RSA">
-                      <in>oaep-vect.txt</in>
-                    </df>
-                  </df>
-                  <df name="TLS">
-                    <in>keymatdata.txt</in>
-                    <in>masterdata.txt</in>
-                    <in>prf12data.txt</in>
-                    <in>prfdata.txt</in>
-                  </df>
-                </df>
-              </df>
-              <df name="net">
-                <df name="httpserver">
-                  <df name="docs">
-                    <df name="test1">
-                      <in>largefile.txt</in>
-                      <in>smallfile.txt</in>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="java">
-            <df name="awt">
-              <df name="JAWT">
-                <in>myfile.c</in>
-                <in>myfile.cpp</in>
-              </df>
-            </df>
-            <df name="io">
-              <df name="LineNumberReader">
-                <in>SkipInput.txt</in>
-              </df>
-              <df name="RandomAccessFile">
-                <df name="skipBytes">
-                  <in>input.txt</in>
-                </df>
-              </df>
-              <df name="readBytes">
-                <in>input.txt</in>
-              </df>
-              <df name="Reader">
-                <in>SkipInput.txt</in>
-              </df>
-              <df name="StreamTokenizer">
-                <in>input.txt</in>
-              </df>
-            </df>
-            <df name="lang">
-              <df name="Character">
-                <in>PropList.txt</in>
-                <in>PropertyValueAliases.txt</in>
-                <in>Scripts.txt</in>
-              </df>
-              <df name="String">
-                <df name="nativeEncoding">
-                  <in>libstringPlatformChars.c</in>
-                </df>
-              </df>
-              <df name="StringCoding">
-                <in>locales.txt</in>
-              </df>
-            </df>
-            <df name="net">
-              <df name="httpclient">
-                <df name="docs">
-                  <df name="files">
-                    <in>foo.txt</in>
-                    <in>notsobigfile.txt</in>
-                    <in>smallfile.txt</in>
-                  </df>
-                </df>
-              </df>
-              <df name="Inet6Address">
-                <df name="serialize">
-                  <in>Readme.txt</in>
-                </df>
-              </df>
-            </df>
-            <df name="nio">
-              <df name="channels">
-                <df name="spi">
-                  <df name="SelectorProvider">
-                    <df name="inheritedChannel">
-                      <in>Launcher.c</in>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="text">
-              <df name="BreakIterator">
-                <in>broken_th_TH.txt</in>
-                <in>test_th_TH.txt</in>
-              </df>
-              <df name="Format">
-                <df name="ChoiceFormat">
-                  <in>Bug4185732.ser.txt</in>
-                </df>
-                <df name="common">
-                  <in>ChoiceFormat.ser.txt</in>
-                  <in>DateFormat.Field.ser.txt</in>
-                  <in>MessageFormat.Field.ser.txt</in>
-                  <in>NumberFormat.Field.ser.txt</in>
-                </df>
-                <df name="DateFormat">
-                  <in>SDFserialized.ser.txt</in>
-                </df>
-                <df name="MessageFormat">
-                  <in>Bug4185816.ser.txt</in>
-                  <in>Bug4185816Corrupt.ser.txt</in>
-                </df>
-                <df name="NumberFormat">
-                  <in>DecimalFormat.114.txt</in>
-                  <in>DecimalFormatSymbols.114.txt</in>
-                  <in>DecimalFormatSymbols.142.txt</in>
-                  <in>NumberFormat4185761a.ser.txt</in>
-                  <in>NumberFormat4185761b.ser.txt</in>
-                </df>
-              </df>
-            </df>
-            <df name="util">
-              <df name="Base64">
-                <in>baseEncode.txt</in>
-                <in>mimeEncode.txt</in>
-                <in>plain.txt</in>
-                <in>urlEncode.txt</in>
-              </df>
-              <df name="Currency">
-                <in>tablea1.txt</in>
-              </df>
-              <df name="Locale">
-                <df name="data">
-                  <in>deflocale.c</in>
-                </df>
-                <in>icuLocales.txt</in>
-              </df>
-              <df name="Properties">
-                <df name="invalidxml">
-                  <in>README.txt</in>
-                </df>
-              </df>
-              <df name="regex">
-                <in>BMPTestCases.txt</in>
-                <in>GraphemeBreakProperty.txt</in>
-                <in>GraphemeBreakTest.txt</in>
-                <in>SupplementaryTestCases.txt</in>
-                <in>TestCases.txt</in>
-              </df>
-              <df name="Scanner">
-                <in>input.txt</in>
-              </df>
-            </df>
-          </df>
-          <df name="javax">
-            <df name="crypto">
-              <df name="Cipher">
-                <df name="ExampleVectors">
-                  <in>NIST_800_38A_vectors.txt</in>
-                </df>
-              </df>
-              <df name="CryptoPermissions">
-                <in>README.txt</in>
-              </df>
-            </df>
-            <df name="management">
-              <df name="loading">
-                <df name="LibraryLoader">
-                  <df name="jar_src">
-                    <in>RandomGen.c</in>
-                    <in>RandomGen.h</in>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="print">
-              <df name="attribute">
-                <df name="autosense">
-                  <in>sample.txt</in>
-                </df>
-              </df>
-            </df>
-            <df name="swing">
-              <df name="JTextArea">
-                <df name="4697612">
-                  <in>bug4697612.txt</in>
-                </df>
-              </df>
-              <df name="LookAndFeel">
-                <df name="8145547">
-                  <in>DemandGTK2.txt</in>
-                </df>
-              </df>
-              <df name="text">
-                <df name="View">
-                  <df name="8015853">
-                    <in>bug8015853.txt</in>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="jdk">
-            <df name="nio">
-              <df name="zipfs">
-                <df name="jarfs">
-                  <df name="root">
-                    <df name="dir1">
-                      <in>leaf1.txt</in>
-                      <in>leaf2.txt</in>
-                    </df>
-                    <df name="dir2">
-                      <in>leaf3.txt</in>
-                      <in>leaf4.txt</in>
-                    </df>
-                  </df>
-                  <df name="v9">
-                    <df name="root">
-                      <df name="dir1">
-                        <in>leaf1.txt</in>
-                        <in>leaf2.txt</in>
-                      </df>
-                      <df name="dir2">
-                        <in>leaf3.txt</in>
-                        <in>leaf4.txt</in>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="native_sanity">
-            <df name="simplenativelauncher">
-              <in>exesanity_SimpleNativeLauncher.c</in>
-            </df>
-            <df name="simplenativelib">
-              <in>libsanity_SimpleNativeLib.c</in>
-            </df>
-            <df name="simplenativelib2">
-              <in>libsanity_SimpleNativeLib2.c</in>
-            </df>
-          </df>
-          <df name="sanity">
-            <df name="client">
-              <df name="lib">
-                <df name="SwingSet3">
-                  <df name="src">
-                    <df name="com">
-                      <df name="sun">
-                        <df name="swingset3">
-                          <df name="demos">
-                            <df name="tree">
-                              <df name="resources">
-                                <in>tree.txt</in>
-                              </df>
-                            </df>
-                          </df>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="sun">
-            <df name="management">
-              <df name="jmxremote">
-                <df name="bootstrap">
-                  <df name="ssl">
-                    <in>Readme.txt</in>
-                  </df>
-                  <in>launcher.c</in>
-                </df>
-                <df name="startstop">
-                  <in>REMOTE_TESTING.txt</in>
-                </df>
-              </df>
-              <df name="windows">
-                <in>revokeall.c</in>
-              </df>
-            </df>
-            <df name="net">
-              <df name="www">
-                <df name="protocol">
-                  <df name="jar">
-                    <df name="jarbug">
-                      <df name="etc">
-                        <df name="jar1">
-                          <in>res1.txt</in>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="security">
-              <df name="ec">
-                <in>p12passwords.txt</in>
-              </df>
-              <df name="jgss">
-                <df name="spnego">
-                  <in>msoid.txt</in>
-                </df>
-              </df>
-              <df name="pkcs11">
-                <df name="ec">
-                  <in>p12passwords.txt</in>
-                </df>
-                <df name="KeyStore">
-                  <df name="BasicData">
-                    <in>p11-activcard.txt</in>
-                    <in>p11-ibutton.txt</in>
-                    <in>p11-nss.txt</in>
-                    <in>p11-sca1000.txt</in>
-                    <in>p11-solaris.txt</in>
-                  </df>
-                  <df name="ClientAuthData">
-                    <in>p11-nss.txt</in>
-                  </df>
-                </df>
-                <df name="nss">
-                  <in>p11-deimos.txt</in>
-                  <in>p11-nss.txt</in>
-                </df>
-                <df name="Provider">
-                  <in>ConfigQuotedString-nss.txt</in>
-                  <in>Login-nss.txt</in>
-                </df>
-                <df name="tls">
-                  <in>keymatdata.txt</in>
-                  <in>masterdata.txt</in>
-                  <in>prfdata.txt</in>
-                </df>
-              </df>
-              <df name="smartcardio">
-                <in>README.txt</in>
-              </df>
-              <df name="tools">
-                <df name="keytool">
-                  <in>p11-nss.txt</in>
-                </df>
-              </df>
-            </df>
-            <df name="tools">
-              <df name="jcmd">
-                <in>dcmd-big-script.txt</in>
-                <in>dcmd-script.txt</in>
-              </df>
-            </df>
-          </df>
-          <df name="tools">
-            <df name="jar">
-              <df name="multiRelease">
-                <df name="data">
-                  <df name="runtimetest">
-                    <in>manifest.txt</in>
-                  </df>
-                </df>
-              </df>
-            </df>
-            <df name="pack200">
-              <df name="typeannos">
-                <in>Readme.txt</in>
-              </df>
-            </df>
-          </df>
-          <in>ProblemList.txt</in>
-        </df>
-        <df name="langtools">
-          <df name="jdk">
-            <df name="javadoc">
-              <df name="doclet">
-                <df name="testDocFileDir">
-                  <df name="pkg">
-                    <df name="doc-files">
-                      <df name="subdir-excluded1">
-                        <in>testfile.txt</in>
-                      </df>
-                      <df name="subdir-excluded2">
-                        <in>testfile.txt</in>
-                      </df>
-                      <df name="subdir-used1">
-                        <in>testfile.txt</in>
-                      </df>
-                      <df name="subdir-used2">
-                        <in>testfile.txt</in>
-                      </df>
-                      <in>testfile.txt</in>
-                    </df>
-                  </df>
-                </df>
-                <df name="testDocFiles">
-                  <df name="pkg">
-                    <df name="doc-files">
-                      <in>test.txt</in>
-                    </df>
-                  </df>
-                </df>
-              </df>
-              <df name="tool">
-                <df name="sampleapi">
-                  <in>README.txt</in>
-                </df>
-              </df>
-            </df>
-          </df>
-          <df name="tools">
-            <df name="doclint">
-              <df name="tidy">
-                <in>README.txt</in>
-              </df>
-            </df>
-            <df name="javac">
-              <df name="classfiles">
-                <df name="attributes">
-                  <df name="annotations">
-                    <in>README.txt</in>
-                  </df>
-                  <df name="innerclasses">
-                    <in>README.txt</in>
-                  </df>
-                </df>
-              </df>
-              <df name="diags">
-                <in>README.examples.txt</in>
-                <in>examples.not-yet.txt</in>
-              </df>
-            </df>
-            <df name="jdeprscan">
-              <df name="tests">
-                <df name="jdk">
-                  <df name="jdeprscan">
-                    <in>TestScanExpected.txt</in>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-          <in>ProblemList.txt</in>
-        </df>
-        <df name="nashorn">
-          <df name="src">
-            <df name="jdk">
-              <df name="nashorn">
-                <df name="internal">
-                  <df name="runtime">
-                    <df name="doubleconv">
-                      <df name="test">
-                        <df name="resources">
-                          <in>gay-fixed.txt</in>
-                          <in>gay-precision.txt</in>
-                          <in>gay-shortest.txt</in>
-                        </df>
-                      </df>
-                    </df>
-                  </df>
-                </df>
-              </df>
-            </df>
-          </df>
-          <in>ProblemList.txt</in>
-        </df>
-      </df>
     </df>
     <logicalFolder name="ExternalFiles"
                    displayName="Important Files"
@@ -6722,9214 +17,45 @@
   <projectmakefile>../../Makefile</projectmakefile>
   <confs>
     <conf name="Mac_64" type="0">
-      <toolsSet>
-        <compilerSet>default</compilerSet>
-        <dependencyChecking>false</dependencyChecking>
-        <rebuildPropChanged>false</rebuildPropChanged>
-      </toolsSet>
-      <flagsDictionary>
-        <element flagsID="0" commonFlags="-m64 -fPIC -fno-rtti -fno-exceptions"/>
-      </flagsDictionary>
-      <codeAssistance>
-        <transientMacros>
-          <Elem>HOTSPOT_BUILD_TARGET="target"</Elem>
-          <Elem>HOTSPOT_BUILD_USER="user"</Elem>
-          <Elem>HOTSPOT_RELEASE_VERSION="version"</Elem>
-        </transientMacros>
-      </codeAssistance>
+      <makefileType>
+        <makeTool>
+          <buildCommandWorkingDir>../..</buildCommandWorkingDir>
+          <buildCommand>${MAKE} -f Makefile images</buildCommand>
+          <cleanCommand>${MAKE} -f Makefile clean</cleanCommand>
+        </makeTool>
+        <preBuild>
+          <preBuildCommandWorkingDir>../..</preBuildCommandWorkingDir>
+          <preBuildCommand>sh configure --with-debug-level=slowdebug</preBuildCommand>
+        </preBuild>
+      </makefileType>
+    </conf>
+    <conf name="Linux_64" type="0">
       <makefileType>
         <makeTool>
           <buildCommandWorkingDir>../..</buildCommandWorkingDir>
           <buildCommand>${MAKE} -f Makefile images</buildCommand>
           <cleanCommand>${MAKE} -f Makefile clean</cleanCommand>
-          <executablePath></executablePath>
-          <cTool>
-            <preprocessorList>
-              <Elem>THIS_FILE="MacosxDebuggerLocal.m"</Elem>
-            </preprocessorList>
-          </cTool>
         </makeTool>
         <preBuild>
           <preBuildCommandWorkingDir>../..</preBuildCommandWorkingDir>
-          <preBuildCommand>sh ../configure --with-debug-level=slowdebug --disable-zip-debug-info</preBuildCommand>
+          <preBuildCommand>sh configure --with-debug-level=slowdebug</preBuildCommand>
         </preBuild>
       </makefileType>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_clone.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_clone.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_expand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_expand.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_format.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_format.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_gen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_gen.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_misc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_misc.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_peephole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_peephole.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_pipeline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_pipeline.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/dfa_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="dfa_x86_64.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/bytecodeInterpreterWithChecks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="jvmtiEnter.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnterTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="4">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="jvmtiEnterTrace.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jfrfiles</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/src/os/bsd/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles</pElem>
-            <pElem>../../hotspot/src/os/posix/vm</pElem>
-            <pElem>../../hotspot/src/os_cpu/bsd_x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_clone.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_expand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_format.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../hotspot/make</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_gen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_misc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_peephole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_pipeline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/dfa_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles</pElem>
-            <pElem>../../hotspot/make</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm/opto</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/share/vm/ci</pElem>
-            <pElem>../../hotspot/src/share/vm/compiler</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/share/vm/libadt</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles/bytecodeInterpreterWithChecks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../hotspot/make</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../hotspot/src/os/bsd/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/os/posix/vm</pElem>
-            <pElem>../../hotspot/src/os_cpu/bsd_x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-            <pElem>../../hotspot/make</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnterTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/oops</pElem>
-            <pElem>../../hotspot/src/share/vm/runtime</pElem>
-            <pElem>../../hotspot/src/share/vm/trace</pElem>
-            <pElem>../../hotspot/src/share/vm/utilities</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/tracefiles</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles</pElem>
-            <pElem>/usr/include/c++/4.2.1</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/parallel</pElem>
-            <pElem>../../hotspot/src/share/vm/gc/shared</pElem>
-            <pElem>../../hotspot/src/share/vm/classfile</pElem>
-            <pElem>../../hotspot/src/share/vm/logging</pElem>
-            <pElem>../../hotspot/src/os/bsd/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/code</pElem>
-            <pElem>../../hotspot/src/share/vm/asm</pElem>
-            <pElem>../../hotspot/src/share/vm/interpreter</pElem>
-            <pElem>../../hotspot/src/os/posix/vm</pElem>
-            <pElem>../../hotspot/src/os_cpu/bsd_x86/vm</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc</pElem>
-            <pElem>../../hotspot/make</pElem>
-          </incDir>
-        </ccTool>
-      </item>
-      <item path="../../src/hotspot/cpu/x86/abstractInterpreter_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/assembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/assembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/assembler_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/bytes_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_CodeStubs_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_Defs_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FpuStackSim_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FpuStackSim_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FrameMap_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FrameMap_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIRAssembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIR_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LinearScan_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LinearScan_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_MacroAssembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_MacroAssembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_Runtime1_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_globals_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c2_globals_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c2_init_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/codeBuffer_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/compiledIC_aot_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/compiledIC_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/copy_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/crc32c.h" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/depChecker_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/depChecker_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/disassembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/frame_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/frame_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/frame_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/globalDefinitions_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/globals_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/icBuffer_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/icache_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/icache_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interp_masm_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interp_masm_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interpreterRT_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interpreterRT_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interpreterRT_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/javaFrameAnchor_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jniFastGetField_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jniFastGetField_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jniTypes_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jni_x86.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jvmciCodeInstaller_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_cos.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_exp.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_log.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_log10.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_pow.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_sha.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_sin.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_tan.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/methodHandles_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/methodHandles_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/nativeInst_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/nativeInst_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/registerMap_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/registerMap_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/register_definitions_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/register_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/register_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/relocInfo_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/relocInfo_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/runtime_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/runtime_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/sharedRuntime_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubGenerator_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubGenerator_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateInterpreterGenerator_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateInterpreterGenerator_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateTable_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateTable_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmStructs_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vm_version_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vm_version_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmreg_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmreg_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmreg_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vtableStubs_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vtableStubs_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/x86.ad" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/x86_32.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/x86_64.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/attachListener_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/c1_globals_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/c2_globals_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/decoder_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/decoder_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/globals_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/jvm_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/jvm_windows.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/osThread_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/osThread_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_share_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_windows.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/perfMemory_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/semaphore_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/sharedRuntimeRem.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/threadCritical_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/threadLocalStorage_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/vmError_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/vmStructs_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/windbghelp.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/windbghelp.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/assembler_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/atomic_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/bytes_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/copy_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/globals_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/orderAccess_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/os_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/os_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/os_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/prefetch_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/thread_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/thread_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/unwind_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/vmStructs_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/vm_version_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/Test/i486.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/adlc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/adlparse.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/adlparse.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/archDesc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/archDesc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/arena.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/arena.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/dfa.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/dict2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/dict2.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/filebuff.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/filebuff.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/forms.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/forms.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formsopt.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formsopt.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formssel.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formssel.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/main.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/output_c.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/output_h.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCodeHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCodeHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCompiledMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCompiledMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotLoader.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotLoader.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotLoader.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/compiledIC_aot.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/compiledIC_aot.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/assembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/assembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/assembler.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/codeBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/codeBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/macroAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/macroAssembler.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/register.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/register.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_CFGPrinter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_CFGPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Canonicalizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Canonicalizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_CodeStubs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compilation.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compilation.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Defs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Defs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_FpuStackSim.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_FrameMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_FrameMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_GraphBuilder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_GraphBuilder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_IR.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_IR.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Instruction.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Instruction.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_InstructionPrinter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_InstructionPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIR.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIR.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRAssembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LinearScan.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LinearScan.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_MacroAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Optimizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Optimizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_RangeCheckElimination.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_RangeCheckElimination.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Runtime1.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Runtime1.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/bcEscapeAnalyzer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/bcEscapeAnalyzer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciBaseObject.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciBaseObject.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciCallProfile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciCallSite.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciCallSite.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciClassList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstant.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstant.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstantPoolCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstantPoolCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciEnv.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciEnv.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciExceptionHandler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciExceptionHandler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciField.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciField.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciFlags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciFlags.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstance.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstance.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstanceKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstanceKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMemberName.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMemberName.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMetadata.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMetadata.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodBlocks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodBlocks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodHandle.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodHandle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciNullObject.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciNullObject.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObject.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObject.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjectFactory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjectFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciReplay.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciReplay.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSignature.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSignature.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciStreams.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciStreams.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSymbol.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSymbol.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeFlow.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeFlow.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciUtilities.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciUtilities.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/compilerInterface.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/altHashing.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/altHashing.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/bytecodeAssembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/bytecodeAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileError.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileParser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileParser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classListParser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classListParser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoader.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoader.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderData.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderExt.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderExt.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/compactHashtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/compactHashtable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/compactHashtable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/defaultMethods.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/defaultMethods.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/dictionary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/dictionary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaAssertions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaAssertions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaClasses.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/jimage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/klassFactory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/klassFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/loaderConstraints.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/loaderConstraints.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/metadataOnStackMark.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/metadataOnStackMark.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/moduleEntry.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/moduleEntry.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/modules.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/modules.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/packageEntry.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/packageEntry.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/placeholders.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/placeholders.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/protectionDomainCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/protectionDomainCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/resolutionErrors.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/resolutionErrors.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/sharedClassUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/sharedPathsMiscInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/sharedPathsMiscInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapFrame.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapFrame.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapTableFormat.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stringTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stringTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/symbolTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/symbolTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionaryShared.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionary_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verificationType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verificationType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/vmSymbols.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/vmSymbols.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/vmSymbols_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeBlob.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeBlob.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledIC.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledIC.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledMethod.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compressedStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compressedStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfoRec.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfoRec.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencies.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencies.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencyContext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencyContext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/exceptionHandlerTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/exceptionHandlerTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/icBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/icBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/jvmticmlr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/location.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/location.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/nativeInst.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/nmethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/nmethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/oopRecorder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/oopRecorder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/pcDesc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/pcDesc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/scopeDesc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/scopeDesc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/stubs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/stubs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vmreg.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vmreg.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vmreg.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vtableStubs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vtableStubs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/abstractCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/abstractCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileBroker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileBroker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileLog.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileLog.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileTask.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileTask.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDefinitions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDefinitions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDirectives.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDirectives.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerOracle.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerOracle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/directivesParser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/directivesParser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/disassembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/disassembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodLiveness.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodLiveness.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodMatcher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodMatcher.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/oopMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/oopMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/adaptiveFreeList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/adaptiveFreeList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/allocationStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/allocationStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsCollectorPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsCollectorPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsLockVerifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsLockVerifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsOopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsOopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsOopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/compactibleFreeListSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/compactibleFreeListSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/freeChunk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/freeChunk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/gSpaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/gSpaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parCardTableModRefBS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parNewGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parNewGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parNewGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parOopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parOopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parOopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/promotionInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/promotionInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmCMSOperations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmCMSOperations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmStructs_cms.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmStructs_parNew.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/yieldingWorkgroup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/yieldingWorkgroup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/bufferingOopClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/collectionSetChooser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/collectionSetChooser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1Refine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1Refine.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1RefineThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1RefineThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentMarkThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentMarkThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentMarkThread.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/dirtyCardQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/dirtyCardQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/evacuationInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocRegion.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocRegion.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocRegion.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocationContext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Analytics.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Analytics.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BiasedArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BiasedArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BlockOffsetTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BlockOffsetTable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardCounts.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardCounts.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardLiveData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardLiveData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardLiveData.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeBlobClosure.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeBlobClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeCacheRemSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeCacheRemSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeRootSetTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectionSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectionSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectorPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectorPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectorState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMark.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMark.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMark.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1DefaultPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1DefaultPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EdenRegions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacFailure.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacFailure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacStats.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FromCardCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FromCardCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FullGCScope.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FullGCScope.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HRPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapRegionTraceType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapSizingPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapSizingPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapSizingPolicy_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapTransition.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapTransition.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapVerifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapVerifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HotCardCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HotCardCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1IHOPControl.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1IHOPControl.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1InCSetState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1InitialMarkToMixedTimeTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MMUTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MMUTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MarkSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MarkSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MarkSweep_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MonitoringSupport.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MonitoringSupport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1OopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1OopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1OopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1PageBasedVirtualSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1PageBasedVirtualSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Policy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Predictions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RegionToSpaceMapper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RegionToSpaceMapper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSetSummary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSetSummary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootClosures_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootProcessor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SATBCardTableModRefBS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SATBCardTableModRefBS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SATBCardTableModRefBS.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SerialFullCollector.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SerialFullCollector.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SharedClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupStat.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupStat.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SurvivorRegions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SurvivorRegions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YCTypes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungGenSizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungGenSizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1_specialized_oop_closures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/hSpaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/hSpaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegion.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegion.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegion.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionBounds.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionBounds.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionManager.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionRemSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionRemSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/ptrQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/ptrQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/satbMarkQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/satbMarkQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/sparsePRT.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/sparsePRT.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/survRateGroup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/survRateGroup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/suspendibleThreadSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/suspendibleThreadSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/vmStructs_g1.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/vm_operations_g1.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/vm_operations_g1.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningGenerations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningGenerations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningVirtualSpaces.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningVirtualSpaces.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSOldGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSOldGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSYoungGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSYoungGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/cardTableExtension.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/cardTableExtension.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcAdaptivePolicyCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcAdaptivePolicyCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/generationSizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/generationSizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/immutableSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/immutableSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableNUMASpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableNUMASpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/objectStartArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/objectStartArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/objectStartArray.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parMarkBitMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parMarkBitMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parMarkBitMap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parallelScavengeHeap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/pcTasks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/pcTasks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psCompactionManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psCompactionManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psCompactionManager.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGCAdaptivePolicyCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGCAdaptivePolicyCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGenerationCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGenerationCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweepDecorator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweepDecorator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psOldGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psOldGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psParallelCompact.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psParallelCompact.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psParallelCompact.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionLAB.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionLAB.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionLAB.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionManager.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psScavenge.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psScavenge.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psScavenge.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psTasks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psTasks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psVirtualspace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psVirtualspace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psYoungGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psYoungGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/spaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/spaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/vmPSOperations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/vmPSOperations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/vmStructs_parallelgc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/cSpaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/cSpaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/defNewGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/defNewGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/defNewGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/genMarkSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/genMarkSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/markSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/markSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/markSweep.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/tenuredGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/tenuredGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/tenuredGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/adaptiveSizePolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/adaptiveSizePolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTableTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTableTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/allocTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/allocTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/barrierSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/barrierSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/barrierSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/blockOffsetTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/blockOffsetTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/blockOffsetTable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBS.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBSForCTRS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBSForCTRS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableRS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableRS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectedHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectedHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectedHeap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCPhaseManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCPhaseManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/copyFailedInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcCause.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcCause.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcHeapSummary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcId.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcId.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcLocker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcLocker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcLocker.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcName.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcPolicyCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcPolicyCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTimer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTimer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceSend.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceTime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceTime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceTime.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcUtil.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcWhen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genCollectedHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genCollectedHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genOopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genOopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genOopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generation.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generation.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationSpec.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationSpec.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/isGCActiveMark.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/memset_with_concurrent_readers.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/modRefBarrierSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/objectCountEventSender.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/objectCountEventSender.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/plab.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/plab.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/plab.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/preservedMarks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/preservedMarks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/preservedMarks.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referencePolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referencePolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessor.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessorStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/space.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/space.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/space.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/spaceDecorator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/spaceDecorator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/specialized_oop_closures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/strongRootsScope.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/strongRootsScope.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/taskqueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/taskqueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/taskqueue.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/threadLocalAllocBuffer.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/vmGCOperations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/vmGCOperations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerDataArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerDataArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerDataArray.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workgroup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workgroup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/abstractInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/abstractInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeHistogram.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeHistogram.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreter.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreterProfiling.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreterGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreterGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interp_masm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreterRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreterRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/invocationCounter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/invocationCounter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/linkResolver.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/linkResolver.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/oopMapCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/oopMapCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/rewriter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/rewriter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreterGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreterGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/compilerRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/compilerRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCodeInstaller.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCodeInstaller.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompilerToVM.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompilerToVM.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciEnv.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciEnv.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciJavaClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciJavaClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmci_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmci_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/systemDictionary_jvmci.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmStructs_compiler_runtime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmStructs_jvmci.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmStructs_jvmci.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmSymbols_jvmci.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/dict.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/dict.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/set.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/set.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/vectset.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/vectset.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/log.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logConfiguration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logConfiguration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorators.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorators.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDiagnosticCommand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDiagnosticCommand.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileOutput.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileOutput.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileStreamOutput.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileStreamOutput.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logHandle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logLevel.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logLevel.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logMessage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logMessageBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logMessageBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutput.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutput.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutputList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutputList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logPrefix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTag.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTag.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagLevelExpression.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagLevelExpression.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSetDescriptions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSetDescriptions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTag_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/allocation.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/allocation.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/allocation.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/arena.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/arena.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/binaryTreeDictionary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/binaryTreeDictionary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/filemap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/filemap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/freeList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/freeList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/guardedMemory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/guardedMemory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heapInspection.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heapInspection.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/iterator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/iterator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/iterator.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/memRegion.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/memRegion.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metachunk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metachunk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metadataFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceChunkFreeListSummary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceClosure.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceGCThresholdUpdater.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceShared.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceShared.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/oopFactory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/oopFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/operator_new.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/padded.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/padded.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/referenceType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/resourceArea.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/resourceArea.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/virtualspace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/virtualspace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/conditional.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/decay.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/enableIf.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/integralConstant.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isConst.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isFloatingPoint.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isIntegral.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isPointer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isRegisteredEnum.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isSame.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isSigned.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isVolatile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/primitiveConversions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/removeCV.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/removePointer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/removeReference.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/annotations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/annotations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/array.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/compiledICHolder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/compiledICHolder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constantPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constantPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/cpCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/cpCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/fieldInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/fieldStreams.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/generateOopMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/generateOopMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceClassLoaderKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceClassLoaderKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceMirrorKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceMirrorKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceMirrorKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceOop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceRefKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceRefKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceRefKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klassVtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klassVtable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/markOop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/markOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/markOop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/metadata.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/metadata.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/method.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/method.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayOop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayOop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oopHandle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oopsHierarchy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oopsHierarchy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/symbol.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/symbol.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayOop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/verifyOopClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/ad.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/addnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/addnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/adlcVMDeps.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/arraycopynode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/arraycopynode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/block.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/block.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/buildOopMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/bytecodeInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2compiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2compiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/castnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/castnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/cfgnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/cfgnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/chaitin.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/chaitin.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/classes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/classes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/coalesce.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/coalesce.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/compile.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/compile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/connode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/connode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/convertnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/convertnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/countbitsnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/countbitsnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/divnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/divnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/doCall.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/domgraph.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/escape.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/escape.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/gcm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/generateOptoStub.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/graphKit.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/graphKit.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealGraphPrinter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealGraphPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealKit.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealKit.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/ifg.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/ifnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/indexSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/indexSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/intrinsicnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/intrinsicnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/lcm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/library_call.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/live.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/live.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/locknode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/locknode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopPredicate.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopTransform.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopUnswitch.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopopts.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/machnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/machnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/macro.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/macro.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/macroArrayCopy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/matcher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/matcher.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mathexactnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mathexactnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/memnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/memnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/movenode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/movenode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mulnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mulnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/multnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/multnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/narrowptrnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/narrowptrnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/node.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/node.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opaquenode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opaquenode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opcodes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opcodes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/optoreg.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/output.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/output.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse1.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse3.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parseHelper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phase.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phase.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phaseX.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phaseX.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phasetype.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/postaloc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/reg_split.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regalloc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regalloc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regmask.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regmask.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/replacednodes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/replacednodes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/rootnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/rootnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/runtime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/runtime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/split_if.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/stringopts.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/stringopts.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/subnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/subnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/superword.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/superword.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/type.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/type.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/vectornode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/vectornode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/precompiled/precompiled.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/evmCompat.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/forte.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/forte.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jni.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jni.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniCheck.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniCheck.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniExport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniFastGetField.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniFastGetField.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jni_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvm_misc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiAgentThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiClassFileReconstituter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiClassFileReconstituter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiCodeBlobEvents.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiCodeBlobEvents.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnter.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnv.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvBase.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvBase.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvThreadState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvThreadState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEventController.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEventController.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEventController.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExport.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExtensions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExtensions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiGetLoadedClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiGetLoadedClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiImpl.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiImpl.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiManageCapabilities.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiManageCapabilities.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRawMonitor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRawMonitor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRedefineClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRedefineClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTagMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTagMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiThreadState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiThreadState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiThreadState.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiUtil.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodComparator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodComparator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodHandles.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodHandles.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/nativeLookup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/nativeLookup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/perf.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/privilegedStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/privilegedStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/resolvedMethodTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/resolvedMethodTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/stackwalk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/stackwalk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/unsafe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/unsafe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/wbtestmethods/parserTests.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/wbtestmethods/parserTests.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/whitebox.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/whitebox.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/whitebox_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/advancedThresholdPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/advancedThresholdPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/arguments.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/arguments.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/arguments_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/atomic.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/basicLock.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/basicLock.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/biasedLocking.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/biasedLocking.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsGC.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsGC.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagRangeList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagRangeList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagWriteableList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagWriteableList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/compilationPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/compilationPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/deoptimization.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/deoptimization.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/extendedPC.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldDescriptor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldDescriptor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/frame.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/frame.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/frame.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals_extension.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/handles.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/handles.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/handles.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/icache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/icache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/init.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/init.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/interfaceSupport.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/interfaceSupport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/java.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/java.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/javaCalls.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/javaCalls.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/javaFrameAnchor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jfieldIDWorkaround.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniHandles.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniHandles.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniPeriodicChecker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniPeriodicChecker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/memprofiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/memprofiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/monitorChunk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/monitorChunk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutex.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutex.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutexLocker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutexLocker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/objectMonitor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/objectMonitor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/objectMonitor.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/orderAccess.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/orderAccess.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/orderAccess.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/osThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/osThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/park.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/park.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfMemory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfMemory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/prefetch.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/prefetch.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflection.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflection.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflectionUtils.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflectionUtils.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/registerMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/relocator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/relocator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rframe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rframe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rtmLocking.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rtmLocking.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/safepoint.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/safepoint.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/semaphore.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/serviceThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/serviceThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntimeMath.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntimeTrans.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntimeTrig.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/signature.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/signature.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/simpleThresholdPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/simpleThresholdPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/simpleThresholdPolicy.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValueCollection.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValueCollection.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/statSampler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/statSampler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubCodeGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubCodeGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubRoutines.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubRoutines.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sweeper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sweeper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/synchronizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/synchronizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/task.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/task.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/threadCritical.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/threadLocalStorage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timerTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timerTrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/unhandledOops.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/unhandledOops.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframeArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframeArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe_hp.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe_hp.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs_trace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_operations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_operations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_version.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_version.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/allocationContextService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/allocationSite.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/attachListener.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/attachListener.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/classLoadingService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/classLoadingService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticArgument.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticArgument.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticCommand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticCommand.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticFramework.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticFramework.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/dtraceAttacher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/dtraceAttacher.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/g1MemoryPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/g1MemoryPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/gcNotifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/gcNotifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/heapDumper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/heapDumper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/jmm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/lowMemoryDetector.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/lowMemoryDetector.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocSiteTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocSiteTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocTracker.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/management.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/management.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memBaseline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memBaseline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memReporter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memReporter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryUsage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtCommon.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtCommon.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtDCmd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtDCmd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/psMemoryPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/psMemoryPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/runtimeService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/runtimeService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/serviceUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/threadService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/threadService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/virtualMemoryTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/virtualMemoryTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/writeableFlags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/writeableFlags.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/llvmHeaders.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/llvmValue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBlock.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBlock.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBuilder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBuilder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCacheDecache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCacheDecache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCodeBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkConstant.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkConstant.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkContext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkContext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkEntry.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkFunction.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkFunction.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInliner.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInliner.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkIntrinsics.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkIntrinsics.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInvariants.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInvariants.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkMemoryManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkMemoryManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkNativeWrapper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkNativeWrapper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStateScanner.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStateScanner.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkTopLevelBlock.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkTopLevelBlock.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkValue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkValue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/shark_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/shark_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/noTraceBackend.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceBackend.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceBackend.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceDataTypes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceEvent.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceMacros.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceTime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/tracing.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/accessFlags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/accessFlags.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/align.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bitMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bitMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bitMap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/breakpoint.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bytes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/chunkedList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/compilerWarnings.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/constantTag.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/constantTag.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/copy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/copy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/count_trailing_zeros.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/debug.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/debug.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder_elf.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder_elf.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/defaultStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/dtrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/dtrace_disabled.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFile.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFuncDescTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFuncDescTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfStringTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfStringTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfSymbolTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfSymbolTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/events.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/events.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/exceptions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/exceptions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/fakeRttiSupport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/formatBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/formatBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_gcc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_solstudio.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_visCPP.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_xlc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/growableArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/growableArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/hashtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/hashtable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/hashtable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/histogram.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/histogram.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/intHisto.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/intHisto.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/internalVMTests.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/internalVMTests.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/json.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/json.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/linkedlist.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/macros.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/nativeCallStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/nativeCallStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/numberSeq.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/numberSeq.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ostream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ostream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/pair.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/preserveException.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/preserveException.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/quickSort.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/resourceHash.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/sizes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/sizes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stack.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stringUtils.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stringUtils.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ticks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ticks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/utf8.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/utf8.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/vmError.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/vmError.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/xmlstream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/xmlstream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <folder path="0/build">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../hotspot/src/os/bsd/vm</pElem>
-            <pElem>../../hotspot/src/os/posix/vm</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/os_cpu/bsd_x86/vm</pElem>
-            <pElem>../../build/hotspot/variant-server/gensrc</pElem>
-            <pElem>../../hotspot/src/share/vm/precompiled</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/makefiles</pElem>
-          </incDir>
-          <preprocessorList>
-            <Elem>AMD64</Elem>
-            <Elem>ASSERT</Elem>
-            <Elem>COMPILER1</Elem>
-            <Elem>COMPILER2</Elem>
-            <Elem>DTRACE_ENABLED</Elem>
-            <Elem>HOTSPOT_LIB_ARCH="amd64"</Elem>
-            <Elem>TARGET_ARCH_MODEL_x86_64</Elem>
-            <Elem>TARGET_ARCH_x86</Elem>
-            <Elem>TARGET_COMPILER_gcc</Elem>
-            <Elem>TARGET_OS_ARCH_MODEL_bsd_x86_64</Elem>
-            <Elem>TARGET_OS_ARCH_bsd_x86</Elem>
-            <Elem>TARGET_OS_FAMILY_bsd</Elem>
-            <Elem>VM_LITTLE_ENDIAN</Elem>
-            <Elem>_ALLBSD_SOURCE</Elem>
-            <Elem>_DARWIN_C_SOURCE</Elem>
-            <Elem>_GNU_SOURCE</Elem>
-            <Elem>_LP64=1</Elem>
-            <Elem>_NMT_NOINLINE_</Elem>
-            <Elem>_XOPEN_SOURCE</Elem>
-          </preprocessorList>
-        </ccTool>
-      </folder>
-      <folder path="0/build/hotspot">
-        <ccTool>
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </folder>
-      <folder path="0/build/hotspot/variant-server/gensrc/jvmtifiles">
-        <ccTool>
-          <preprocessorList>
-            <Elem>THIS_FILE="bytecodeInterpreterWithChecks.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </folder>
-      <folder path="0/build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm/memory</pElem>
-          </incDir>
-        </ccTool>
-      </folder>
-    </conf>
-    <conf name="Linux_64" type="0">
-      <toolsSet>
-        <compilerSet>default</compilerSet>
-        <dependencyChecking>false</dependencyChecking>
-        <rebuildPropChanged>false</rebuildPropChanged>
-      </toolsSet>
-      <flagsDictionary>
-        <element flagsID="0"
-                 commonFlags="-fPIC -fno-rtti -fno-exceptions -m64 -fstack-protector-all"/>
-        <element flagsID="1" commonFlags="-m64"/>
-      </flagsDictionary>
-      <codeAssistance>
-        <transientMacros>
-          <Elem>HOTSPOT_BUILD_TARGET="target"</Elem>
-          <Elem>HOTSPOT_BUILD_USER="user"</Elem>
-          <Elem>HOTSPOT_RELEASE_VERSION="version"</Elem>
-        </transientMacros>
-      </codeAssistance>
-      <makefileType>
-        <makeTool>
-          <buildCommandWorkingDir>../..</buildCommandWorkingDir>
-          <buildCommand>${MAKE} -f Makefile images</buildCommand>
-          <cleanCommand>${MAKE} -f Makefile clean</cleanCommand>
-          <executablePath></executablePath>
-          <ccTool>
-            <preprocessorList>
-              <Elem>LINUX</Elem>
-              <Elem>_GNU_SOURCE</Elem>
-              <Elem>_REENTRANT</Elem>
-            </preprocessorList>
-          </ccTool>
-        </makeTool>
-        <preBuild>
-          <preBuildCommandWorkingDir>../..</preBuildCommandWorkingDir>
-          <preBuildCommand>sh ../configure --with-debug-level=slowdebug --disable-zip-debug-info</preBuildCommand>
-        </preBuild>
-      </makefileType>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_clone.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_expand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_format.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_gen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_misc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_peephole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_pipeline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/dfa_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/jvmtifiles/bytecodeInterpreterWithChecks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/jvmtifiles/jvmtiEnter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/jvmtifiles/jvmtiEnterTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/support/gensrc/java.desktop/_x11wrappers/sizer.64.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-        <cTool flags="1">
-        </cTool>
-      </item>
-      <folder path="0/build">
-        <cTool>
-          <incDir>
-            <pElem>../../jdk/src/java.base/share/native/include</pElem>
-            <pElem>../../jdk/src/java.base/unix/native/include</pElem>
-            <pElem>../../jdk/src/java.base/share/native/libjava</pElem>
-            <pElem>../../jdk/src/java.base/unix/native/libjava</pElem>
-            <pElem>../../jdk/src/java.desktop/unix/native/common/awt</pElem>
-            <pElem>../../jdk/src/java.desktop/share/native/common/awt/debug</pElem>
-            <pElem>../../jdk/src/java.desktop/share/native/libawt/awt/image/cvutils</pElem>
-          </incDir>
-        </cTool>
-        <ccTool>
-          <incDir>
-            <pElem>../../build/hotspot/linux_amd64_compiler2/debug</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../hotspot/src/share/vm/precompiled</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/os_cpu/linux_x86/vm</pElem>
-            <pElem>../../hotspot/src/os/linux/vm</pElem>
-            <pElem>../../hotspot/src/os/posix/vm</pElem>
-            <pElem>../../build/hotspot/linux_amd64_compiler2/generated</pElem>
-          </incDir>
-          <preprocessorList>
-            <Elem>AMD64</Elem>
-            <Elem>ASSERT</Elem>
-            <Elem>COMPILER1</Elem>
-            <Elem>COMPILER2</Elem>
-            <Elem>HOTSPOT_BUILD_USER="user"</Elem>
-            <Elem>HOTSPOT_LIB_ARCH="amd64"</Elem>
-            <Elem>HOTSPOT_VM_DISTRO="OpenJDK"</Elem>
-            <Elem>TARGET_ARCH_MODEL_x86_64</Elem>
-            <Elem>TARGET_ARCH_x86</Elem>
-            <Elem>TARGET_COMPILER_gcc</Elem>
-            <Elem>TARGET_OS_ARCH_MODEL_linux_x86_64</Elem>
-            <Elem>TARGET_OS_ARCH_linux_x86</Elem>
-            <Elem>TARGET_OS_FAMILY_linux</Elem>
-            <Elem>VM_LITTLE_ENDIAN</Elem>
-            <Elem>_LP64=1</Elem>
-            <Elem>_NMT_NOINLINE_</Elem>
-          </preprocessorList>
-        </ccTool>
-      </folder>
     </conf>
     <conf name="Solaris_64" type="0">
-      <toolsSet>
-        <compilerSet>default</compilerSet>
-        <dependencyChecking>false</dependencyChecking>
-        <rebuildPropChanged>false</rebuildPropChanged>
-      </toolsSet>
-      <flagsDictionary>
-        <element flagsID="0" commonFlags="-m64"/>
-      </flagsDictionary>
-      <codeAssistance>
-        <transientMacros>
-          <Elem>HOTSPOT_BUILD_TARGET="target"</Elem>
-          <Elem>HOTSPOT_BUILD_USER="user"</Elem>
-          <Elem>HOTSPOT_RELEASE_VERSION="version"</Elem>
-        </transientMacros>
-      </codeAssistance>
       <makefileType>
         <makeTool>
           <buildCommandWorkingDir>../..</buildCommandWorkingDir>
           <buildCommand>gmake -f Makefile images</buildCommand>
           <cleanCommand>gmake -f Makefile clean</cleanCommand>
-          <executablePath></executablePath>
-          <ccTool>
-            <preprocessorList>
-              <Elem>THIS_FILE="ad_x86_64.cpp"</Elem>
-            </preprocessorList>
-          </ccTool>
         </makeTool>
         <preBuild>
           <preBuildCommandWorkingDir>../..</preBuildCommandWorkingDir>
-          <preBuildCommand>sh ../configure --with-debug-level=slowdebug --disable-zip-debug-info</preBuildCommand>
+          <preBuildCommand>sh configure --with-debug-level=slowdebug</preBuildCommand>
         </preBuild>
       </makefileType>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_clone.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_clone.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_expand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_expand.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_format.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_format.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_gen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_gen.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_misc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_misc.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_peephole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_peephole.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_pipeline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="ad_x86_64_pipeline.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/dfa_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="dfa_x86_64.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/bytecodeInterpreterWithChecks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="jvmtiEnter.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnterTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-          <preprocessorList>
-            <Elem>THIS_FILE="jvmtiEnterTrace.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </item>
-      <item path="../../build/hotspot/variant-server/support/dtrace/JvmOffsets.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <item path="../../build/support/gensrc/java.desktop/_x11wrappers/sizer.64.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-        <cTool flags="0">
-        </cTool>
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-all.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-        <ccTool flags="0">
-        </ccTool>
-      </item>
-      <folder path="0/build">
-        <cTool>
-          <incDir>
-            <pElem>/usr/openwin/include</pElem>
-            <pElem>/usr/openwin/include/X11/extensions</pElem>
-            <pElem>../../jdk/src/java.base/share/native/include</pElem>
-            <pElem>../../jdk/src/java.base/unix/native/include</pElem>
-            <pElem>../../jdk/src/java.base/share/native/libjava</pElem>
-            <pElem>../../jdk/src/java.base/unix/native/libjava</pElem>
-            <pElem>../../jdk/src/java.desktop/unix/native/common/awt</pElem>
-            <pElem>../../jdk/src/java.desktop/share/native/common/awt/debug</pElem>
-            <pElem>../../jdk/src/java.desktop/share/native/libawt/awt/image/cvutils</pElem>
-          </incDir>
-        </cTool>
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../hotspot/src/os/solaris/vm</pElem>
-            <pElem>../../hotspot/src/os/posix/vm</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/os_cpu/solaris_x86/vm</pElem>
-            <pElem>../../build/hotspot/variant-server/gensrc</pElem>
-            <pElem>../../hotspot/src/share/vm/precompiled</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../hotspot/make</pElem>
-          </incDir>
-          <preprocessorList>
-            <Elem>AMD64</Elem>
-            <Elem>ASSERT</Elem>
-            <Elem>COMPILER1</Elem>
-            <Elem>COMPILER2</Elem>
-            <Elem>DONT_USE_PRECOMPILED_HEADER</Elem>
-            <Elem>DTRACE_ENABLED</Elem>
-            <Elem>HOTSPOT_LIB_ARCH="amd64"</Elem>
-            <Elem>SOLARIS</Elem>
-            <Elem>SPARC_WORKS</Elem>
-            <Elem>TARGET_ARCH_MODEL_x86_64</Elem>
-            <Elem>TARGET_ARCH_x86</Elem>
-            <Elem>TARGET_COMPILER_solstudio</Elem>
-            <Elem>TARGET_OS_ARCH_MODEL_solaris_x86_64</Elem>
-            <Elem>TARGET_OS_ARCH_solaris_x86</Elem>
-            <Elem>TARGET_OS_FAMILY_solaris</Elem>
-            <Elem>VM_LITTLE_ENDIAN</Elem>
-            <Elem>_Crun_inline_placement</Elem>
-            <Elem>_NMT_NOINLINE_</Elem>
-          </preprocessorList>
-        </ccTool>
-      </folder>
-      <folder path="0/build/hotspot/variant-server/gensrc/jvmtifiles">
-        <ccTool>
-          <preprocessorList>
-            <Elem>THIS_FILE="bytecodeInterpreterWithChecks.cpp"</Elem>
-          </preprocessorList>
-        </ccTool>
-      </folder>
-      <folder path="0/build/hotspot/variant-server/support">
-        <ccTool>
-          <incDir>
-            <pElem>../../build/hotspot/variant-server/support/dtrace</pElem>
-          </incDir>
-        </ccTool>
-      </folder>
-      <folder path="0/test">
-        <ccTool>
-          <incDir>
-            <pElem>../../hotspot/src/share/vm</pElem>
-            <pElem>../../hotspot/src/os/solaris/vm</pElem>
-            <pElem>../../hotspot/src/os/posix/vm</pElem>
-            <pElem>../../hotspot/src/cpu/x86/vm</pElem>
-            <pElem>../../hotspot/src/os_cpu/solaris_x86/vm</pElem>
-            <pElem>../../build/hotspot/variant-server/gensrc</pElem>
-            <pElem>../../hotspot/src/share/vm/precompiled</pElem>
-            <pElem>../../hotspot/src/share/vm/prims</pElem>
-            <pElem>../../test/fmw/gtest</pElem>
-            <pElem>../../test/fmw/gtest/include</pElem>
-            <pElem>../../hotspot/test/native</pElem>
-            <pElem>../../hotspot/make</pElem>
-          </incDir>
-          <preprocessorList>
-            <Elem>AMD64</Elem>
-            <Elem>ASSERT</Elem>
-            <Elem>COMPILER1</Elem>
-            <Elem>COMPILER2</Elem>
-            <Elem>DONT_USE_PRECOMPILED_HEADER</Elem>
-            <Elem>DTRACE_ENABLED</Elem>
-            <Elem>GTEST_HAS_EXCEPTIONS=0</Elem>
-            <Elem>HOTSPOT_LIB_ARCH="amd64"</Elem>
-            <Elem>SOLARIS</Elem>
-            <Elem>SPARC_WORKS</Elem>
-            <Elem>TARGET_ARCH_MODEL_x86_64</Elem>
-            <Elem>TARGET_ARCH_x86</Elem>
-            <Elem>TARGET_COMPILER_solstudio</Elem>
-            <Elem>TARGET_OS_ARCH_MODEL_solaris_x86_64</Elem>
-            <Elem>TARGET_OS_ARCH_solaris_x86</Elem>
-            <Elem>TARGET_OS_FAMILY_solaris</Elem>
-            <Elem>THIS_FILE="gtest-all.cc"</Elem>
-            <Elem>VM_LITTLE_ENDIAN</Elem>
-            <Elem>_Crun_inline_placement</Elem>
-            <Elem>_NMT_NOINLINE_</Elem>
-          </preprocessorList>
-        </ccTool>
-      </folder>
     </conf>
     <conf name="Windws64" type="0">
-      <toolsSet>
-        <compilerSet>default</compilerSet>
-        <dependencyChecking>false</dependencyChecking>
-        <rebuildPropChanged>false</rebuildPropChanged>
-      </toolsSet>
-      <codeAssistance>
-      </codeAssistance>
       <makefileType>
         <makeTool>
           <buildCommandWorkingDir>../../../output</buildCommandWorkingDir>
@@ -15943,24911 +69,6 @@
           <preBuildFirst>true</preBuildFirst>
         </preBuild>
       </makefileType>
-      <item path="../../bin/unshuffle_list.txt" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_clone.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_expand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_format.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_gen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_misc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_peephole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/ad_x86_64_pipeline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/adfiles/dfa_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/jvmtifiles/bytecodeInterpreterWithChecks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/jvmtifiles/jvmtiEnter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/linux_amd64_compiler2/generated/jvmtifiles/jvmtiEnterTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_clone.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_expand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_format.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_gen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_misc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_peephole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/ad_x86_64_pipeline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/adfiles/dfa_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/bytecodeInterpreterWithChecks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnterTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/hotspot/variant-server/support/dtrace/JvmOffsets.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_clone.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_expand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_format.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_gen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_misc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_peephole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_64_pipeline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/adfiles/dfa_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles/bytecodeInterpreterWithChecks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/macosx-x86_64-normal-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnterTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../build/support/gensrc/java.desktop/_x11wrappers/sizer.64.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/Big5.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/Big5_HKSCS.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/Big5_Solaris.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/EUC_CN.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/EUC_JP.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/EUC_JP_LINUX.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/EUC_JP_Open.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/EUC_KR.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/EUC_TW.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/GB18030.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/GBK.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/HKSCS2001.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/HKSCS2008.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/HKSCS_XP.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM037.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1006.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1025.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1026.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1046.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1047.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1097.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1098.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1112.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1122.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1123.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1124.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1129.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1140.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1141.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1142.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1143.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1144.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1145.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1146.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1147.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1148.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1149.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1166.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1364.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1381.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM1383.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM273.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM277.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM278.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM280.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM284.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM285.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM290.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM297.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM300.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM420.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM424.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM437.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM500.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM737.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM775.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM833.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM838.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM850.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM852.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM855.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM856.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM857.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM858.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM860.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM861.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM862.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM863.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM864.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM865.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM866.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM868.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM869.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM870.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM871.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM874.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM875.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM918.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM921.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM922.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM930.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM933.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM935.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM937.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM939.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM942.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM943.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM948.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM949.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM950.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/IBM970.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_11.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_13.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_15.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_16.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_2.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_3.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_4.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_5.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_6.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_7.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_8.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/ISO_8859_9.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0201.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0208.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0208_MS5022X.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0208_MS932.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0208_Solaris.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0212.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0212_MS5022X.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/JIS_X_0212_Solaris.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/Johab.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/KOI8_R.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/KOI8_U.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1250.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1251.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1252.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1253.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1254.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1255.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1256.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1257.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS1258.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS874.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS932.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS936.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS949.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS950.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MS950_HKSCS_XP.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacArabic.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacCentralEurope.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacCroatian.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacCyrillic.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacDingbat.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacGreek.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacHebrew.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacIceland.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacRoman.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacRomania.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacSymbol.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacThai.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacTurkish.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/MacUkraine.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/PCK.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/SJIS.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/TIS_620.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/charsetmapping/sjis0213.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/dtdbuilder/public.map"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/lsrdata/language-subtag-registry.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.activation-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.activation-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.activation-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.annotations.common-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.annotations.common-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.annotations.common-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.base-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.base-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.base-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.compiler-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.compiler-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.compiler-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.corba-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.corba-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.corba-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.datatransfer-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.datatransfer-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.datatransfer-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.desktop-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.desktop-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.desktop-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.instrument-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.instrument-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.instrument-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.logging-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.logging-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.logging-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.management-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.management-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.management-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.naming-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.naming-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.naming-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.prefs-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.prefs-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.prefs-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.rmi-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.rmi-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.rmi-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.scripting-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.scripting-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.scripting-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.security.jgss-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.security.jgss-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.security.jgss-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.security.sasl-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.security.sasl-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.security.sasl-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.sql-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.sql-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.sql-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.sql.rowset-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.sql.rowset-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.sql.rowset-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.transaction-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.transaction-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.transaction-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.bind-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.bind-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.bind-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.crypto-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.crypto-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.crypto-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.ws-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.ws-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/java.xml.ws-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.httpserver-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.httpserver-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.httpserver-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.management-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.management-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.management-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.scripting.nashorn-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.scripting.nashorn-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.scripting.nashorn-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.sctp-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.sctp-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.sctp-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.security.auth-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.security.auth-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.security.auth-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.security.jgss-6.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.security.jgss-7.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/symbols/jdk.security.jgss-8.sym.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/unicodedata/PropList.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/unicodedata/Scripts.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/unicodedata/SpecialCasing.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/unicodedata/UnicodeData.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/x11wrappergen/functions.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/data/x11wrappergen/xlibtypes.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/devkit/solaris11.1-package-list.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/hotspot/src/native/dtrace/generateJvmOffsets.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../make/hotspot/src/native/dtrace/generateJvmOffsets.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/hotspot/src/native/dtrace/generateJvmOffsetsMain.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../make/langtools/test/HelloWorld.apt.gold.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/langtools/test/HelloWorld.gold.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/langtools/test/HelloWorld.javadoc.gold.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/langtools/test/HelloWorld.javap.gold.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/langtools/test/contents.gold.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/langtools/test/lib/classes.gold.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/langtools/test/lib/src.gold.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/nashorn/exclude/exclude_list.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/nashorn/exclude/exclude_list_cc.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../make/src/native/fixpath.c" ex="false" tool="0" flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/arabic.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/english.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/greek.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/hebrew.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/hindi.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/japanese.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/korean.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/java2d/J2DBench/resources/textdata/thai.ut8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/FileChooserDemo/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/Font2DTest/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/Metalworks/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/Notepad/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/SampleTree/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/SwingApplet/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/TableExample/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/demo/share/jfc/TransparentRuler/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/aarch64.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/aarch64Test.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/aarch64_call.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/aarch64_linkage.S"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/abstractInterpreter_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/assembler_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/assembler_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/assembler_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/bytecodes_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/bytecodes_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/bytes_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_CodeStubs_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_Defs_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_FpuStackSim_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_FpuStackSim_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_LIRGenerator_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_LIR_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_LinearScan_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_LinearScan_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_MacroAssembler_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_MacroAssembler_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c1_globals_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c2_globals_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/c2_init_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/codeBuffer_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/compiledIC_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/copy_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/cpustate_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/decode_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/depChecker_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/depChecker_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/disassembler_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/frame_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/frame_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/frame_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/globalDefinitions_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/globals_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/icBuffer_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/icache_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/icache_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/immediate_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/immediate_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/interp_masm_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/interp_masm_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/interpreterRT_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/interpreterRT_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/javaFrameAnchor_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/jniFastGetField_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/jniTypes_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/jni_aarch64.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/jvmciCodeInstaller_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/macroAssembler_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/macroAssembler_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/methodHandles_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/methodHandles_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/nativeInst_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/nativeInst_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/registerMap_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/register_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/register_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/register_definitions_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/relocInfo_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/relocInfo_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/runtime_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/stubRoutines_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/templateTable_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/templateTable_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/vmStructs_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/vm_version_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/vm_version_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/vmreg_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/vmreg_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/vmreg_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/aarch64/vtableStubs_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/abstractInterpreter_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/arm.ad" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/arm_32.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/arm_64.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/assembler_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/assembler_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/assembler_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/assembler_arm_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/assembler_arm_32.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/assembler_arm_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/assembler_arm_64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/bytes_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_CodeStubs_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_Defs_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_FpuStackSim_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_FpuStackSim_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_FrameMap_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_FrameMap_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_LIRAssembler_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_LIRAssembler_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_LIRGenerator_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_LIR_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_LinearScan_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_LinearScan_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_MacroAssembler_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_MacroAssembler_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_Runtime1_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c1_globals_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/c2_globals_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/codeBuffer_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/compiledIC_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/copy_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/depChecker_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/depChecker_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/disassembler_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/frame_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/frame_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/frame_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/globalDefinitions_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/globals_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/icBuffer_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/icache_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/icache_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/interp_masm_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/interp_masm_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/interpreterRT_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/interpreterRT_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/javaFrameAnchor_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/jniFastGetField_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/jniTypes_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/jni_arm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/jvmciCodeInstaller_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/macroAssembler_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/macroAssembler_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/macroAssembler_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/methodHandles_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/methodHandles_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/nativeInst_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/nativeInst_arm_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/nativeInst_arm_32.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/nativeInst_arm_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/nativeInst_arm_64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/registerMap_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/register_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/register_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/register_definitions_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/relocInfo_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/relocInfo_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/runtime_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/sharedRuntime_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/stubGenerator_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/stubRoutinesCrypto_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/stubRoutines_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/stubRoutines_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/templateTable_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/templateTable_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vmStructs_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vm_version_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vm_version_arm_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vm_version_arm_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vmreg_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vmreg_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vmreg_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/arm/vtableStubs_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/abstractInterpreter_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/assembler_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/assembler_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/assembler_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/bytes_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_CodeStubs_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_Defs_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_FpuStackSim_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_FrameMap_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_FrameMap_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_LIR_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_LinearScan_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_LinearScan_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_MacroAssembler_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_MacroAssembler_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c1_globals_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c2_globals_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/c2_init_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/codeBuffer_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/compiledIC_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/copy_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/depChecker_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/disassembler_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/frame_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/frame_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/frame_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/globalDefinitions_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/globals_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/icBuffer_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/icache_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/icache_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/interp_masm_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/interp_masm_ppc_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/interpreterRT_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/interpreterRT_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/javaFrameAnchor_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/jniFastGetField_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/jniTypes_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/jni_ppc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/jvmciCodeInstaller_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/macroAssembler_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/macroAssembler_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/macroAssembler_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/macroAssembler_ppc_sha.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/methodHandles_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/methodHandles_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/nativeInst_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/nativeInst_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/ppc.ad" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/registerMap_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/register_definitions_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/register_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/register_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/relocInfo_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/relocInfo_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/runtime_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/stubGenerator_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/stubRoutines_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/stubRoutines_ppc_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/templateTable_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/templateTable_ppc_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/vmStructs_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/vm_version_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/vm_version_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/vmreg_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/vmreg_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/vmreg_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/ppc/vtableStubs_ppc_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/abstractInterpreter_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/assembler_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/assembler_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/assembler_s390.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/bytes_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_CodeStubs_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_Defs_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_FpuStackSim_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_FrameMap_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_FrameMap_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_LIRAssembler_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_LIRGenerator_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_LIR_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_LinearScan_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_LinearScan_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_MacroAssembler_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_MacroAssembler_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_Runtime1_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c1_globals_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c2_globals_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/c2_init_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/codeBuffer_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/compiledIC_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/copy_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/depChecker_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/disassembler_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/frame_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/frame_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/frame_s390.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/globalDefinitions_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/globals_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/icBuffer_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/icache_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/icache_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/interp_masm_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/interp_masm_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/interpreterRT_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/interpreterRT_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/javaFrameAnchor_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/jniFastGetField_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/jniTypes_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/jni_s390.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/jvmciCodeInstaller_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/macroAssembler_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/macroAssembler_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/macroAssembler_s390.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/methodHandles_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/methodHandles_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/nativeInst_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/nativeInst_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/registerMap_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/registerSaver_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/register_definitions_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/register_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/register_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/relocInfo_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/relocInfo_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/runtime_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/s390.ad" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/sharedRuntime_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/stubGenerator_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/stubRoutines_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/stubRoutines_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/templateTable_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/templateTable_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/vmStructs_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/vm_version_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/vm_version_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/vmreg_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/vmreg_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/vmreg_s390.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/s390/vtableStubs_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/abstractInterpreter_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/args.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/assembler_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/assembler_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/assembler_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/bytes_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_CodeStubs_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_Defs_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_FpuStackSim_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_FpuStackSim_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_FrameMap_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_FrameMap_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_LIRAssembler_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_LIRAssembler_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_LIRGenerator_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_LIR_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_LinearScan_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_LinearScan_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_MacroAssembler_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_MacroAssembler_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_Runtime1_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c1_globals_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c2_globals_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/c2_init_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/codeBuffer_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/compiledIC_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/copy_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/depChecker_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/depChecker_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/disassembler_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/frame_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/frame_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/frame_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/globalDefinitions_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/globals_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/icBuffer_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/icache_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/icache_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/interp_masm_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/interp_masm_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/interpreterRT_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/interpreterRT_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/javaFrameAnchor_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/jniFastGetField_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/jniTypes_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/jni_sparc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/jvmciCodeInstaller_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/macroAssembler_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/macroAssembler_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/macroAssembler_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/memset_with_concurrent_readers_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/methodHandles_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/methodHandles_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/nativeInst_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/nativeInst_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/registerMap_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/register_definitions_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/register_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/register_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/relocInfo_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/relocInfo_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/runtime_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/sharedRuntime_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/sparc.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/stubGenerator_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/stubRoutines_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/stubRoutines_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/templateInterpreterGenerator_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/templateTable_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/templateTable_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/vmStructs_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/vm_version_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/vm_version_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/vmreg_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/vmreg_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/vmreg_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/sparc/vtableStubs_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/abstractInterpreter_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/assembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/assembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/assembler_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/bytes_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_CodeStubs_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_Defs_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FpuStackSim_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FpuStackSim_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FrameMap_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_FrameMap_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIRAssembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LIR_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LinearScan_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_LinearScan_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_MacroAssembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_MacroAssembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_Runtime1_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c1_globals_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c2_globals_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/c2_init_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/codeBuffer_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/compiledIC_aot_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/compiledIC_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/copy_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/crc32c.h" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/depChecker_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/depChecker_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/disassembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/frame_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/frame_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/frame_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/globalDefinitions_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/globals_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/icBuffer_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/icache_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/icache_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interp_masm_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interp_masm_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interpreterRT_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interpreterRT_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/interpreterRT_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/javaFrameAnchor_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jniFastGetField_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jniFastGetField_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jniTypes_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jni_x86.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/jvmciCodeInstaller_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_cos.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_exp.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_log.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_log10.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_pow.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_sha.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_sin.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/macroAssembler_x86_tan.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/methodHandles_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/methodHandles_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/nativeInst_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/nativeInst_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/registerMap_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/registerMap_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/register_definitions_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/register_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/register_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/relocInfo_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/relocInfo_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/runtime_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/runtime_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/sharedRuntime_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubGenerator_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubGenerator_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/stubRoutines_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateInterpreterGenerator_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateInterpreterGenerator_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateTable_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/templateTable_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmStructs_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vm_version_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vm_version_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmreg_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmreg_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vmreg_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vtableStubs_x86_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/vtableStubs_x86_64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/x86.ad" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/x86_32.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/x86/x86_64.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/abstractInterpreter_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/assembler_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/assembler_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/assembler_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/bytecodeInterpreter_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/bytecodeInterpreter_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/bytecodeInterpreter_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/bytes_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/codeBuffer_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/compiledIC_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/copy_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/cppInterpreterGenerator_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/cppInterpreter_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/cppInterpreter_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/depChecker_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/depChecker_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/disassembler_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/disassembler_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/entryFrame_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/entry_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/fakeStubFrame_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/frame_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/frame_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/frame_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/globalDefinitions_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/globals_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/icBuffer_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/icache_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/icache_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/interp_masm_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/interpreterFrame_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/interpreterRT_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/interpreterRT_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/javaFrameAnchor_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/jniFastGetField_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/jniTypes_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/jni_zero.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/macroAssembler_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/macroAssembler_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/methodHandles_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/methodHandles_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/nativeInst_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/nativeInst_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/registerMap_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/register_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/register_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/relocInfo_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/relocInfo_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/sharedRuntime_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/sharkFrame_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/shark_globals_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/stack_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/stack_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/stack_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/stubGenerator_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/stubRoutines_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/stubRoutines_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/vmStructs_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/vm_version_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/vm_version_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/vmreg_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/vmreg_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/vmreg_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/cpu/zero/vtableStubs_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/attachListener_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/c1_globals_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/c2_globals_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/decoder_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/globals_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/jvm_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/jvm_aix.h" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/libo4.cpp" ex="false" tool="1" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/libo4.hpp" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/libodm_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/libodm_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/libperfstat_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/libperfstat_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/loadlib_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/loadlib_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/misc_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/misc_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/osThread_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/osThread_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/os_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/os_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/os_aix.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/os_share_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/perfMemory_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/porting_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/porting_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/threadCritical_aix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/aix/vmStructs_aix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/attachListener_bsd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/c1_globals_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/c2_globals_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/decoder_machO.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/decoder_machO.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/globals_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/jvm_bsd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/jvm_bsd.h" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/osThread_bsd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/osThread_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/os_bsd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/os_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/os_bsd.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/os_share_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/perfMemory_bsd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/semaphore_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/threadCritical_bsd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/bsd/vmStructs_bsd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/attachListener_linux.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/c1_globals_linux.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/c2_globals_linux.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/decoder_linux.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/globals_linux.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/jvm_linux.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/jvm_linux.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/osThread_linux.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/osThread_linux.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/os_linux.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/os_linux.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/os_linux.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/os_share_linux.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/perfMemory_linux.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/threadCritical_linux.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/linux/vmStructs_linux.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/posix/os_posix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/posix/os_posix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/posix/semaphore_posix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/posix/threadLocalStorage_posix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/posix/vmError_posix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/attachListener_solaris.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/c1_globals_solaris.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/c2_globals_solaris.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/decoder_solaris.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/globals_solaris.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/jvm_solaris.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/jvm_solaris.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/osThread_solaris.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/osThread_solaris.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/os_share_solaris.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/os_solaris.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/os_solaris.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/os_solaris.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/perfMemory_solaris.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/threadCritical_solaris.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/solaris/vmStructs_solaris.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/attachListener_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/c1_globals_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/c2_globals_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/decoder_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/decoder_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/globals_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/jvm_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/jvm_windows.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/osThread_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/osThread_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_share_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/os_windows.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/perfMemory_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/semaphore_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/sharedRuntimeRem.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/threadCritical_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/threadLocalStorage_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/vmError_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/vmStructs_windows.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/windbghelp.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os/windows/windbghelp.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/atomic_aix_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/bytes_aix_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/globals_aix_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/orderAccess_aix_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/os_aix_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/os_aix_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/prefetch_aix_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/thread_aix_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/thread_aix_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/aix_ppc/vmStructs_aix_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/assembler_bsd_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/atomic_bsd_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/bsd_x86_32.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/bsd_x86_64.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/bytes_bsd_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/copy_bsd_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/globals_bsd_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/orderAccess_bsd_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/os_bsd_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/os_bsd_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/os_bsd_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/prefetch_bsd_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/thread_bsd_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/thread_bsd_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/vmStructs_bsd_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_x86/vm_version_bsd_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/assembler_bsd_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/atomic_bsd_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/bytes_bsd_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/globals_bsd_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/orderAccess_bsd_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/os_bsd_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/os_bsd_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/prefetch_bsd_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/thread_bsd_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/thread_bsd_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/vmStructs_bsd_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/bsd_zero/vm_version_bsd_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/assembler_linux_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/atomic_linux_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/bytes_linux_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/copy_linux_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/copy_linux_aarch64.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/globals_linux_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/linux_aarch64.S"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/linux_aarch64.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/orderAccess_linux_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/prefetch_linux_aarch64.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/threadLS_linux_aarch64.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/thread_linux_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/thread_linux_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/vmStructs_linux_aarch64.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_aarch64/vm_version_linux_aarch64.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/atomic_linux_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/bytes_linux_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/copy_linux_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/globals_linux_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/linux_arm_32.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/linux_arm_64.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/macroAssembler_linux_arm_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/orderAccess_linux_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/os_linux_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/os_linux_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/prefetch_linux_arm.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/thread_linux_arm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/thread_linux_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/vmStructs_linux_arm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_arm/vm_version_linux_arm_32.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/atomic_linux_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/bytes_linux_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/globals_linux_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/orderAccess_linux_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/os_linux_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/os_linux_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/prefetch_linux_ppc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/thread_linux_ppc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/thread_linux_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_ppc/vmStructs_linux_ppc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/atomic_linux_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/bytes_linux_s390.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/globals_linux_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/orderAccess_linux_s390.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/os_linux_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/os_linux_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/prefetch_linux_s390.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/thread_linux_s390.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/thread_linux_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_s390/vmStructs_linux_s390.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/atomic_linux_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/globals_linux_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/linux_sparc.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/linux_sparc.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/orderAccess_linux_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/os_linux_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/os_linux_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/prefetch_linux_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/thread_linux_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/thread_linux_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/vmStructs_linux_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_sparc/vm_version_linux_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/assembler_linux_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/atomic_linux_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/bytes_linux_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/copy_linux_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/globals_linux_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/linux_x86_32.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/linux_x86_64.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/orderAccess_linux_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/os_linux_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/os_linux_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/os_linux_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/prefetch_linux_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/thread_linux_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/thread_linux_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/vmStructs_linux_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_x86/vm_version_linux_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/assembler_linux_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/atomic_linux_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/bytes_linux_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/globals_linux_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/orderAccess_linux_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/os_linux_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/os_linux_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/prefetch_linux_zero.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/thread_linux_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/thread_linux_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/vmStructs_linux_zero.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/linux_zero/vm_version_linux_zero.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/atomic_solaris_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/count_trailing_zeros_solaris_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/globals_solaris_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/orderAccess_solaris_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/os_solaris_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/os_solaris_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/prefetch_solaris_sparc.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/solaris_sparc.il"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/solaris_sparc.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/thread_solaris_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/thread_solaris_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/vmStructs_solaris_sparc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_sparc/vm_version_solaris_sparc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/assembler_solaris_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/atomic_solaris_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/bytes_solaris_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/copy_solaris_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/count_trailing_zeros_solaris_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/globals_solaris_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/orderAccess_solaris_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/os_solaris_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/os_solaris_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/os_solaris_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/prefetch_solaris_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/solaris_x86_64.il"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/solaris_x86_64.s"
-            ex="false"
-            tool="4"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/thread_solaris_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/thread_solaris_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/vmStructs_solaris_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/solaris_x86/vm_version_solaris_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/assembler_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/atomic_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/bytes_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/copy_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/globals_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/orderAccess_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/os_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/os_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/os_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/prefetch_windows_x86.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/thread_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/thread_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/unwind_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/vmStructs_windows_x86.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/os_cpu/windows_x86/vm_version_windows_x86.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/Xusage.txt" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/Test/i486.ad"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/adlc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/adlparse.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/adlparse.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/archDesc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/archDesc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/arena.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/arena.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/dfa.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/dict2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/dict2.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/filebuff.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/filebuff.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/forms.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/forms.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formsopt.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formsopt.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formssel.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/formssel.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/main.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/output_c.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/adlc/output_h.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCodeHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCodeHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCompiledMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotCompiledMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotLoader.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotLoader.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/aotLoader.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/compiledIC_aot.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/aot/compiledIC_aot.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/assembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/assembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/assembler.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/codeBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/codeBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/macroAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/macroAssembler.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/register.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/asm/register.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_CFGPrinter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_CFGPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Canonicalizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Canonicalizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_CodeStubs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compilation.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compilation.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Compiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Defs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Defs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_FpuStackSim.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_FrameMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_FrameMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_GraphBuilder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_GraphBuilder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_IR.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_IR.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Instruction.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Instruction.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_InstructionPrinter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_InstructionPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIR.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIR.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRAssembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LIRGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LinearScan.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_LinearScan.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_MacroAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Optimizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Optimizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_RangeCheckElimination.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_RangeCheckElimination.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Runtime1.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_Runtime1.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_ValueType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/c1/c1_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/bcEscapeAnalyzer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/bcEscapeAnalyzer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciBaseObject.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciBaseObject.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciCallProfile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciCallSite.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciCallSite.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciClassList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstant.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstant.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstantPoolCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciConstantPoolCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciEnv.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciEnv.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciExceptionHandler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciExceptionHandler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciField.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciField.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciFlags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciFlags.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstance.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstance.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstanceKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciInstanceKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMemberName.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMemberName.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMetadata.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMetadata.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodBlocks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodBlocks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodHandle.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodHandle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciMethodType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciNullObject.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciNullObject.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObject.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObject.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjectFactory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciObjectFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciReplay.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciReplay.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSignature.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSignature.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciStreams.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciStreams.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSymbol.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciSymbol.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeFlow.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciTypeFlow.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciUtilities.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/ciUtilities.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/ci/compilerInterface.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/altHashing.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/altHashing.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/bytecodeAssembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/bytecodeAssembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileError.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileParser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileParser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classFileStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classListParser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classListParser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoader.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoader.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderData.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderExt.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderExt.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/classLoaderStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/compactHashtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/compactHashtable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/compactHashtable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/defaultMethods.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/defaultMethods.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/dictionary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/dictionary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaAssertions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaAssertions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/javaClasses.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/jimage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/klassFactory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/klassFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/loaderConstraints.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/loaderConstraints.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/metadataOnStackMark.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/metadataOnStackMark.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/moduleEntry.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/moduleEntry.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/modules.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/modules.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/packageEntry.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/packageEntry.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/placeholders.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/placeholders.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/protectionDomainCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/protectionDomainCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/resolutionErrors.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/resolutionErrors.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/sharedClassUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/sharedPathsMiscInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/sharedPathsMiscInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapFrame.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapFrame.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stackMapTableFormat.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stringTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/stringTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/symbolTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/symbolTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionaryShared.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/systemDictionary_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verificationType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verificationType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/verifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/vmSymbols.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/vmSymbols.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/classfile/vmSymbols_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeBlob.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeBlob.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/codeCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledIC.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledIC.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compiledMethod.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compressedStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/compressedStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfoRec.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/debugInfoRec.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencies.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencies.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencyContext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/dependencyContext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/exceptionHandlerTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/exceptionHandlerTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/icBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/icBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/jvmticmlr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/location.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/location.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/nativeInst.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/nmethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/nmethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/oopRecorder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/oopRecorder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/pcDesc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/pcDesc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/relocInfo_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/scopeDesc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/scopeDesc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/stubs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/stubs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vmreg.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vmreg.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vmreg.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vtableStubs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/code/vtableStubs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/abstractCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/abstractCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileBroker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileBroker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileLog.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileLog.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileTask.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compileTask.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDefinitions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDefinitions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDirectives.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerDirectives.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerOracle.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/compilerOracle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/directivesParser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/directivesParser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/disassembler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/disassembler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodLiveness.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodLiveness.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodMatcher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/methodMatcher.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/oopMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/compiler/oopMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/adaptiveFreeList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/adaptiveFreeList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/allocationStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/allocationStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsCollectorPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsCollectorPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsLockVerifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsLockVerifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsOopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsOopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/cmsOopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/compactibleFreeListSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/compactibleFreeListSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/concurrentMarkSweepThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/freeChunk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/freeChunk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/gSpaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/gSpaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parCardTableModRefBS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parNewGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parNewGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parNewGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parOopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parOopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/parOopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/promotionInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/promotionInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmCMSOperations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmCMSOperations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmStructs_cms.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/vmStructs_parNew.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/yieldingWorkgroup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/cms/yieldingWorkgroup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/bufferingOopClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/collectionSetChooser.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/collectionSetChooser.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1Refine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1Refine.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1RefineThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentG1RefineThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentMarkThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentMarkThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/concurrentMarkThread.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/dirtyCardQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/dirtyCardQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/evacuationInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocRegion.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocRegion.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocRegion.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1AllocationContext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Allocator_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Analytics.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Analytics.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BiasedArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BiasedArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BlockOffsetTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1BlockOffsetTable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardCounts.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardCounts.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardLiveData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardLiveData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CardLiveData.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeBlobClosure.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeBlobClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeCacheRemSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeCacheRemSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CodeRootSetTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectedHeap_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectionSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectionSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectorPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectorPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1CollectorState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMark.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMark.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMark.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1DefaultPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1DefaultPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EdenRegions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacFailure.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacFailure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1EvacStats.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FromCardCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FromCardCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FullGCScope.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1FullGCScope.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HRPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapRegionTraceType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapSizingPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapSizingPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapSizingPolicy_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapTransition.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapTransition.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapVerifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HeapVerifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HotCardCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1HotCardCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1IHOPControl.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1IHOPControl.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1InCSetState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1InitialMarkToMixedTimeTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MMUTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MMUTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MarkSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MarkSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MarkSweep_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MonitoringSupport.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1MonitoringSupport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1OopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1OopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1OopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1PageBasedVirtualSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1PageBasedVirtualSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1ParScanThreadState_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Policy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1Predictions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RegionToSpaceMapper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RegionToSpaceMapper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSetSummary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RemSetSummary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootClosures_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1RootProcessor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SATBCardTableModRefBS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SATBCardTableModRefBS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SATBCardTableModRefBS.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SerialFullCollector.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SerialFullCollector.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SharedClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupStat.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupStat.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1StringDedupThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SurvivorRegions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1SurvivorRegions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YCTypes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungGenSizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungGenSizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/g1_specialized_oop_closures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/hSpaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/hSpaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegion.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegion.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegion.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionBounds.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionBounds.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionManager.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionRemSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionRemSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/heapRegionType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/ptrQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/ptrQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/satbMarkQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/satbMarkQueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/sparsePRT.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/sparsePRT.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/survRateGroup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/survRateGroup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/suspendibleThreadSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/suspendibleThreadSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/vmStructs_g1.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/vm_operations_g1.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/g1/vm_operations_g1.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningGenerations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningGenerations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningVirtualSpaces.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/adjoiningVirtualSpaces.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSOldGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSOldGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSYoungGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/asPSYoungGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/cardTableExtension.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/cardTableExtension.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcAdaptivePolicyCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcAdaptivePolicyCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/gcTaskThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/generationSizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/generationSizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/immutableSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/immutableSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableNUMASpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableNUMASpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableSpace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/mutableSpace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/objectStartArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/objectStartArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/objectStartArray.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parMarkBitMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parMarkBitMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parMarkBitMap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/parallelScavengeHeap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/pcTasks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/pcTasks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psCompactionManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psCompactionManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psCompactionManager.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGCAdaptivePolicyCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGCAdaptivePolicyCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGenerationCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psGenerationCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweepDecorator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psMarkSweepDecorator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psOldGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psOldGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psParallelCompact.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psParallelCompact.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psParallelCompact.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionLAB.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionLAB.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionLAB.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psPromotionManager.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psScavenge.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psScavenge.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psScavenge.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psTasks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psTasks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psVirtualspace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psVirtualspace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psYoungGen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/psYoungGen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/spaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/spaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/vmPSOperations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/vmPSOperations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/parallel/vmStructs_parallelgc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/cSpaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/cSpaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/defNewGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/defNewGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/defNewGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/genMarkSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/genMarkSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/markSweep.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/markSweep.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/markSweep.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/tenuredGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/tenuredGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/serial/tenuredGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/adaptiveSizePolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/adaptiveSizePolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTableTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/ageTableTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/allocTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/allocTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/barrierSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/barrierSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/barrierSet.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/blockOffsetTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/blockOffsetTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/blockOffsetTable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardGeneration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardGeneration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardGeneration.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBS.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBSForCTRS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableModRefBSForCTRS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableRS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/cardTableRS.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectedHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectedHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectedHeap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/collectorPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCPhaseManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCPhaseManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/concurrentGCThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/copyFailedInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcCause.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcCause.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcHeapSummary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcId.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcId.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcLocker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcLocker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcLocker.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcName.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcPolicyCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcPolicyCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcStats.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTimer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTimer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceSend.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceTime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceTime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcTraceTime.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcUtil.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/gcWhen.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genCollectedHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genCollectedHeap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genOopClosures.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genOopClosures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/genOopClosures.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generation.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generation.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationSpec.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/generationSpec.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/isGCActiveMark.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/memset_with_concurrent_readers.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/modRefBarrierSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/objectCountEventSender.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/objectCountEventSender.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/plab.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/plab.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/plab.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/preservedMarks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/preservedMarks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/preservedMarks.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referencePolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referencePolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessor.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/referenceProcessorStats.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/space.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/space.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/space.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/spaceDecorator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/spaceDecorator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/specialized_oop_closures.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/strongRootsScope.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/strongRootsScope.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/taskqueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/taskqueue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/taskqueue.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/threadLocalAllocBuffer.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/vmGCOperations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/vmGCOperations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerDataArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerDataArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerDataArray.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workerManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workgroup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/gc/shared/workgroup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/abstractInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/abstractInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeHistogram.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeHistogram.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreter.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeInterpreterProfiling.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodeTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/bytecodes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreterGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/cppInterpreterGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interp_masm.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreterRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/interpreterRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/invocationCounter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/invocationCounter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/linkResolver.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/linkResolver.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/oopMapCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/oopMapCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/rewriter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/rewriter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreterGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateInterpreterGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/interpreter/templateTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/compilerRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/compilerRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCodeInstaller.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCodeInstaller.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompilerToVM.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciCompilerToVM.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciEnv.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciEnv.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciJavaClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciJavaClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmciRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmci_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/jvmci_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/systemDictionary_jvmci.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmStructs_compiler_runtime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmStructs_jvmci.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmStructs_jvmci.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/jvmci/vmSymbols_jvmci.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/dict.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/dict.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/set.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/set.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/vectset.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/libadt/vectset.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/log.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logConfiguration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logConfiguration.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorators.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDecorators.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDiagnosticCommand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logDiagnosticCommand.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileOutput.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileOutput.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileStreamOutput.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logFileStreamOutput.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logHandle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logLevel.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logLevel.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logMessage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logMessageBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logMessageBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutput.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutput.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutputList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logOutputList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logPrefix.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTag.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTag.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagLevelExpression.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagLevelExpression.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSetDescriptions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTagSetDescriptions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/logging/logTag_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/allocation.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/allocation.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/allocation.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/arena.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/arena.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/binaryTreeDictionary.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/binaryTreeDictionary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/filemap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/filemap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/freeList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/freeList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/guardedMemory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/guardedMemory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heapInspection.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/heapInspection.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/iterator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/iterator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/iterator.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/memRegion.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/memRegion.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metachunk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metachunk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metadataFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceChunkFreeListSummary.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceClosure.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceGCThresholdUpdater.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceShared.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceShared.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceTracer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/metaspaceTracer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/oopFactory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/oopFactory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/operator_new.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/padded.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/padded.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/referenceType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/resourceArea.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/resourceArea.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/universe_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/virtualspace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/memory/virtualspace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/conditional.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/decay.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/enableIf.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/integralConstant.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isConst.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isFloatingPoint.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isIntegral.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isPointer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isRegisteredEnum.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isSame.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isSigned.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/isVolatile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/primitiveConversions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/removeCV.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/removePointer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/metaprogramming/removeReference.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/annotations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/annotations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/array.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/arrayOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/compiledICHolder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/compiledICHolder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constMethod.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constantPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/constantPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/cpCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/cpCache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/fieldInfo.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/fieldStreams.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/generateOopMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/generateOopMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceClassLoaderKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceClassLoaderKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceMirrorKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceMirrorKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceMirrorKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceOop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceRefKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceRefKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/instanceRefKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klassVtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/klassVtable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/markOop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/markOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/markOop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/metadata.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/metadata.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/method.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/method.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodCounters.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodCounters.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/methodData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayOop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/objArrayOop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oopHandle.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oopsHierarchy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/oopsHierarchy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/symbol.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/symbol.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayKlass.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayKlass.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayOop.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/typeArrayOop.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/oops/verifyOopClosure.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/ad.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/addnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/addnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/adlcVMDeps.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/arraycopynode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/arraycopynode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/block.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/block.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/buildOopMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/bytecodeInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2compiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/c2compiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/callnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/castnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/castnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/cfgnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/cfgnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/chaitin.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/chaitin.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/classes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/classes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/coalesce.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/coalesce.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/compile.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/compile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/connode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/connode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/convertnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/convertnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/countbitsnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/countbitsnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/divnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/divnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/doCall.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/domgraph.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/escape.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/escape.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/gcm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/generateOptoStub.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/graphKit.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/graphKit.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealGraphPrinter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealGraphPrinter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealKit.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/idealKit.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/ifg.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/ifnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/indexSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/indexSet.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/intrinsicnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/intrinsicnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/lcm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/library_call.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/live.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/live.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/locknode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/locknode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopPredicate.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopTransform.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopUnswitch.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/loopopts.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/machnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/machnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/macro.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/macro.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/macroArrayCopy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/matcher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/matcher.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mathexactnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mathexactnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/memnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/memnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/movenode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/movenode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mulnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/mulnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/multnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/multnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/narrowptrnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/narrowptrnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/node.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/node.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opaquenode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opaquenode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opcodes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/opcodes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/optoreg.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/output.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/output.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse1.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parse3.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/parseHelper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phase.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phase.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phaseX.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phaseX.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/phasetype.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/postaloc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/reg_split.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regalloc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regalloc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regmask.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/regmask.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/replacednodes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/replacednodes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/rootnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/rootnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/runtime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/runtime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/split_if.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/stringopts.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/stringopts.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/subnode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/subnode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/superword.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/superword.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/type.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/type.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/vectornode.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/opto/vectornode.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/precompiled/precompiled.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/evmCompat.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/forte.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/forte.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jni.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jni.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniCheck.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniCheck.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniExport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniFastGetField.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jniFastGetField.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jni_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvm.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvm_misc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiAgentThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiClassFileReconstituter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiClassFileReconstituter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiCodeBlobEvents.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiCodeBlobEvents.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnter.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnv.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvBase.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvBase.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvThreadState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEnvThreadState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEventController.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEventController.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiEventController.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExport.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExtensions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiExtensions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiGetLoadedClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiGetLoadedClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiImpl.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiImpl.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiManageCapabilities.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiManageCapabilities.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRawMonitor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRawMonitor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRedefineClasses.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiRedefineClasses.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTagMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTagMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiThreadState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiThreadState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiThreadState.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiTrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiUtil.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/jvmtiUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodComparator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodComparator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodHandles.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/methodHandles.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/nativeLookup.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/nativeLookup.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/perf.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/privilegedStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/privilegedStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/resolvedMethodTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/resolvedMethodTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/stackwalk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/stackwalk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/unsafe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/unsafe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/wbtestmethods/parserTests.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/wbtestmethods/parserTests.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/whitebox.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/whitebox.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/prims/whitebox_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/advancedThresholdPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/advancedThresholdPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/arguments.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/arguments.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/arguments_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/atomic.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/basicLock.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/basicLock.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/biasedLocking.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/biasedLocking.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsGC.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsGC.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagConstraintsRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagRangeList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagRangeList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagWriteableList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/commandLineFlagWriteableList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/compilationPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/compilationPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/deoptimization.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/deoptimization.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/extendedPC.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldDescriptor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldDescriptor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldType.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/fieldType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/frame.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/frame.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/frame.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/globals_extension.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/handles.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/handles.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/handles.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/icache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/icache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/init.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/init.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/interfaceSupport.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/interfaceSupport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/java.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/java.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/javaCalls.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/javaCalls.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/javaFrameAnchor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jfieldIDWorkaround.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniHandles.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniHandles.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniPeriodicChecker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/jniPeriodicChecker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/memprofiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/memprofiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/monitorChunk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/monitorChunk.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutex.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutex.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutexLocker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/mutexLocker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/objectMonitor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/objectMonitor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/objectMonitor.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/orderAccess.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/orderAccess.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/orderAccess.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/osThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/osThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/os_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/park.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/park.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfData.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfMemory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/perfMemory.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/prefetch.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/prefetch.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflection.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflection.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflectionUtils.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/reflectionUtils.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/registerMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/relocator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/relocator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rframe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rframe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rtmLocking.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/rtmLocking.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/safepoint.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/safepoint.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/semaphore.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/serviceThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/serviceThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntimeMath.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntimeTrans.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sharedRuntimeTrig.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/signature.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/signature.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/simpleThresholdPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/simpleThresholdPolicy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/simpleThresholdPolicy.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValueCollection.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stackValueCollection.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/statSampler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/statSampler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubCodeGenerator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubCodeGenerator.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubRoutines.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/stubRoutines.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sweeper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/sweeper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/synchronizer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/synchronizer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/task.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/task.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/threadCritical.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/threadLocalStorage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread_ext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/thread_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timerTrace.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/timerTrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/unhandledOops.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/unhandledOops.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframeArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframeArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe_hp.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vframe_hp.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs_ext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmStructs_trace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmThread.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vmThread.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_operations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_operations.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_version.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/runtime/vm_version.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/allocationContextService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/allocationSite.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/attachListener.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/attachListener.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/classLoadingService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/classLoadingService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticArgument.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticArgument.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticCommand.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticCommand.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticFramework.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/diagnosticFramework.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/dtraceAttacher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/dtraceAttacher.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/g1MemoryPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/g1MemoryPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/gcNotifier.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/gcNotifier.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/heapDumper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/heapDumper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/jmm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/lowMemoryDetector.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/lowMemoryDetector.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocSiteTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocSiteTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/mallocTracker.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/management.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/management.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memBaseline.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memBaseline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memReporter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memReporter.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/memoryUsage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtCommon.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtCommon.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtDCmd.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/nmtDCmd.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/psMemoryPool.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/psMemoryPool.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/runtimeService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/runtimeService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/serviceUtil.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/threadService.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/threadService.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/virtualMemoryTracker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/virtualMemoryTracker.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/writeableFlags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/services/writeableFlags.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/llvmHeaders.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/llvmValue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBlock.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBlock.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBuilder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkBuilder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCacheDecache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCacheDecache.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCodeBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCompiler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkCompiler.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkConstant.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkConstant.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkContext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkContext.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkEntry.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkFunction.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkFunction.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInliner.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInliner.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkIntrinsics.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkIntrinsics.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInvariants.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkInvariants.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkMemoryManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkMemoryManager.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkNativeWrapper.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkNativeWrapper.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkRuntime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkRuntime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkState.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkState.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStateScanner.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkStateScanner.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkTopLevelBlock.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkTopLevelBlock.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkType.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkValue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/sharkValue.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/shark_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/shark/shark_globals.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/noTraceBackend.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceBackend.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceBackend.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceDataTypes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceEvent.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceMacros.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/traceTime.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/tracing.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/trace/xinclude.mod"
-            ex="false"
-            tool="2"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/accessFlags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/accessFlags.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/align.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bitMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bitMap.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bitMap.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/breakpoint.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/bytes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/chunkedList.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/compilerWarnings.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/constantTag.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/constantTag.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/copy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/copy.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/count_trailing_zeros.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/debug.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/debug.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder_elf.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/decoder_elf.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/defaultStream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/dtrace.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/dtrace_disabled.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFile.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFuncDescTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfFuncDescTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfStringTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfStringTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfSymbolTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/elfSymbolTable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/events.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/events.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/exceptions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/exceptions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/fakeRttiSupport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/formatBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/formatBuffer.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_gcc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_solstudio.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_visCPP.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/globalDefinitions_xlc.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/growableArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/growableArray.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/hashtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/hashtable.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/hashtable.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/histogram.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/histogram.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/intHisto.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/intHisto.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/internalVMTests.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/internalVMTests.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/json.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/json.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/linkedlist.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/macros.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/nativeCallStack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/nativeCallStack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/numberSeq.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/numberSeq.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ostream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ostream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/pair.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/preserveException.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/preserveException.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/quickSort.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/resourceHash.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/sizes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/sizes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stack.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stack.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stringUtils.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/stringUtils.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ticks.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/ticks.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/utf8.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/utf8.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/vmError.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/vmError.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/xmlstream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/hotspot/share/utilities/xmlstream.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/aix/native/libjava/ProcessHandleImpl_aix.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/aix/native/libjli/java_md_aix.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/aix/native/libjli/java_md_aix.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/aix/native/libjsig/jsig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/aix/native/libnet/aix_close.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/aix/native/libnio/ch/AixPollPort.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/aix/native/libnio/fs/AixNativeDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libjava/ProcessHandleImpl_linux.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libjsig/jsig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libnet/linux_close.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libnio/ch/EPoll.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libnio/ch/EPollArrayWrapper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libnio/ch/EPollPort.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libnio/fs/LinuxNativeDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/linux/native/libnio/fs/LinuxWatchService.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/include/jni_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/include/jvm_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libjava/HostLocaleProviderAdapter_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libjava/ProcessHandleImpl_macosx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libjava/java_props_macosx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libjava/java_props_macosx.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libjli/java_md_macosx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libjli/java_md_macosx.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libjsig/jsig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnet/DefaultProxySelector.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnet/bsd_close.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnio/ch/KQueue.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnio/ch/KQueueArrayWrapper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnio/ch/KQueuePort.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnio/fs/BsdNativeDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnio/fs/MacOSXNativeDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libnio/fs/UTIFileTypeDetector.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/macosx/native/libosxsecurity/KeystoreImpl.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/classes/jdk/internal/org/objectweb/asm/version.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/conf/security/policy/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/include/classfile_constants.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/include/jni.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/include/jvm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/include/jvmticmlr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/launcher/defines.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/launcher/main.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_acos.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_asin.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_atan2.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_atanh.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_cosh.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_exp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_fmod.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_log.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_log10.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_rem_pio2.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_remainder.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_scalb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_sinh.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/e_sqrt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/fdlibm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/jfdlibm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/k_cos.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/k_rem_pio2.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/k_sin.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/k_standard.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/k_tan.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_atan.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_ceil.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_copysign.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_cos.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_expm1.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_fabs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_finite.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_floor.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_frexp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_ilogb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_isnan.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_ldexp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_lib_version.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_log1p.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_logb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_matherr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_modf.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_nextafter.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_rint.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_scalbn.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_signgam.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_significand.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_sin.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_tan.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/s_tanh.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_acos.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_asin.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_atan2.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_atanh.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_cosh.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_exp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_fmod.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_log.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_log10.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_remainder.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_scalb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_sinh.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libfdlibm/w_sqrt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/AccessController.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Array.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/AtomicLong.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/BootLoader.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Class.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/ClassLoader.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/ConstantPool.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Double.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Executable.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Field.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/FileInputStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Float.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Module.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/NativeAccessors.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Object.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/ObjectInputStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/ObjectOutputStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/ObjectStreamClass.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/RandomAccessFile.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Reference.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Reflection.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Runtime.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/SecurityManager.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Shutdown.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Signal.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/StackStreamFactory.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/StackTraceElement.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/StrictMath.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/String.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/StringCoding.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/System.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Thread.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/Throwable.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/TimeZone.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/VM.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/VMSupport.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/check_version.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/gdefs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/io_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/io_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/java_props.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/jdk_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/jdk_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/jio.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/jlong.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/jni_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/jni_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/sizecalc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjava/verify_stub.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/NativeImageBuffer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/endian.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/endian.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/imageDecompressor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/imageDecompressor.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/imageFile.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/imageFile.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/inttypes.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/jimage.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/jimage.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjimage/osSupport.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/args.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/emessages.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/java.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/java.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/jli_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/jli_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/manifest_info.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/parse_manifest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/splashscreen.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/splashscreen_stubs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/wildcard.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libjli/wildcard.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/DatagramPacket.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/Inet4Address.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/Inet6Address.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/InetAddress.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/net_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/net_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/proxy_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnet/proxy_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnio/ch/nio.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libnio/nio_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libverify/check_code.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libverify/check_format.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libverify/opcodes.in_out"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/Adler32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/CRC32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/Deflater.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/Inflater.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zip_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zip_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/compress.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/crc32.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/deflate.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/deflate.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/gzclose.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/gzguts.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/gzlib.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/gzread.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/gzwrite.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/infback.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/inffast.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/inffast.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/inffixed.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/inflate.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/inflate.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/inftrees.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/inftrees.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/trees.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/trees.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/uncompr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/zadler32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/zconf.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/zcrc32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/zlib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/zutil.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/share/native/libzip/zlib/zutil.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libjava/ProcessHandleImpl_solaris.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libjsig/jsig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libjvm_db/libjvm_db.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libjvm_db/libjvm_db.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libjvm_dtrace/jvm_dtrace.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libjvm_dtrace/jvm_dtrace.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libnet/solaris_close.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libnio/ch/DevPollArrayWrapper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libnio/ch/SolarisEventPort.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libnio/fs/SolarisNativeDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/solaris/native/libnio/fs/SolarisWatchService.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/include/jni_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/include/jvm_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/jspawnhelper/jspawnhelper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/launcher/jexec.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/Console_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/FileDescriptor_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/FileOutputStream_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/ProcessEnvironment_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/ProcessHandleImpl_unix.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/ProcessHandleImpl_unix.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/ProcessImpl_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/TimeZone_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/TimeZone_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/UnixFileSystem_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/VM_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/canonicalize_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/childproc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/childproc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/gdefs_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/io_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/io_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/java_props_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/jdk_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/jdk_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/jlong_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/jni_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjava/locale_str.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjimage/osSupport_unix.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjli/java_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjli/java_md_common.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjli/java_md_solinux.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libjli/java_md_solinux.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/DefaultProxySelector.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/Inet4AddressImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/Inet6AddressImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/InetAddressImplFactory.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/NetworkInterface.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/PlainDatagramSocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/PlainSocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/ResolverConfigurationImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/SdpSupport.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/SocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/SocketInputStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/SocketOutputStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/net_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/net_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnet/portconfig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/MappedByteBuffer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/DatagramChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/DatagramDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/FileChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/FileDispatcherImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/FileKey.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/IOUtil.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/InheritedChannel.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/NativeThread.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/Net.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/PollArrayWrapper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/ServerSocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/SocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/SocketDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/UnixAsynchronousServerSocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/UnixAsynchronousSocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/ch/nio_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/fs/UnixCopyFile.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/unix/native/libnio/fs/UnixNativeDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/include/jni_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/include/jvm_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/Console_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/FileDescriptor_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/FileOutputStream_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/HostLocaleProviderAdapter_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/ProcessEnvironment_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/ProcessHandleImpl_win.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/ProcessImpl_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/TimeZone_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/TimeZone_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/VM_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/Win32ErrorMode.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/WinCAPISeedGenerator.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/WinNTFileSystem_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/canonicalize_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/dirent_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/dirent_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/gdefs_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/io_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/io_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/java_main_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/java_props_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/jdk_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/jdk_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/jlong_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/jni_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjava/locale_str.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjimage/osSupport_windows.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjli/cmdtoargs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjli/java_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libjli/java_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/DefaultProxySelector.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/DualStackPlainDatagramSocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/DualStackPlainSocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/Inet4AddressImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/Inet6AddressImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/InetAddressImplFactory.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/NTLMAuthSequence.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/NetworkInterface.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/NetworkInterface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/NetworkInterface_winXP.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/ResolverConfigurationImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/SocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/SocketInputStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/SocketOutputStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/TwoStacksPlainDatagramSocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/TwoStacksPlainSocketImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/net_util_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/net_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnet/portconfig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/MappedByteBuffer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/DatagramChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/DatagramDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/FileChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/FileDispatcherImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/FileKey.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/IOUtil.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/Iocp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/Net.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/ServerSocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/SocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/SocketDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/WindowsAsynchronousFileChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/WindowsAsynchronousServerSocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/WindowsAsynchronousSocketChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/WindowsSelectorImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/ch/nio_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/fs/RegistryFileTypeDetector.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.base/windows/native/libnio/fs/WindowsNativeDispatcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.corba/share/classes/com/sun/corba/se/impl/corba/orb_config_design.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/minor_code_example.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/standard_minor_codes.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.corba/share/classes/com/sun/corba/se/impl/orb/parsing_combinators.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.corba/share/classes/com/sun/corba/se/spi/legacy/connection/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/aix/native/libawt/porting_aix.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/aix/native/libawt/porting_aix.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/include/jawt_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTEvent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTEvent.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTSurfaceLayers.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTSurfaceLayers.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTView.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTView.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/ApplicationDelegate.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/ApplicationDelegate.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CClipboard.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CCursorManager.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDataTransferer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDataTransferer.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDesktopPeer.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDragSource.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDragSource.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDragSourceContextPeer.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDropTarget.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDropTarget.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CDropTargetContextPeer.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CFRetainedResource.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CFileDialog.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CFileDialog.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CGraphicsConfig.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CGraphicsDevice.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CGraphicsEnv.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CImage.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CInputMethod.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenu.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenu.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenuBar.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenuBar.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenuComponent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenuComponent.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenuItem.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CMenuItem.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CPopupMenu.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CPopupMenu.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CPrinterJob.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CRobot.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CRobotKeyCode.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CRobotKeyCode.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CSystemColors.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CSystemColors.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CTextPipe.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CTrayIcon.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CTrayIcon.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/CWrapper.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/DnDUtilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/DnDUtilities.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/GeomUtilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/GeomUtilities.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/ImageSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/ImageSurfaceData.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/InitIDs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/InitIDs.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaAccessibilityAction.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaAccessibilityAction.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaAccessibilityUtilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaAccessibilityUtilities.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaComponentAccessibility.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaComponentAccessibility.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaTextAccessibility.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/JavaTextAccessibility.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/LWCToolkit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/LWCToolkit.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/OSVersion.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/OSVersion.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/PrintModel.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/PrintModel.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/PrinterSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/PrinterSurfaceData.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/PrinterView.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/PrinterView.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/QuartzRenderer.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/QuartzSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/QuartzSurfaceData.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/awt/awt_DrawingSurface.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/AWTFont.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/AWTFont.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/AWTStrike.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/AWTStrike.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/CCharToGlyphMapper.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/CGGlyphImages.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/CGGlyphImages.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/CGGlyphOutlines.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/CGGlyphOutlines.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/CoreTextSupport.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/font/CoreTextSupport.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/CGLGraphicsConfig.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/CGLGraphicsConfig.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/CGLLayer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/CGLLayer.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/CGLSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/CGLSurfaceData.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/J2D_GL/cglext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl/OGLFuncs_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjawt/jawt.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_MidiIn.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_MidiOut.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_MidiUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_MidiUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_PCM.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_Ports.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_Utils.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libjsound/PLATFORM_API_MacOSX_Utils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosx/CFileManager.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/AWT_debug.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/AWT_debug.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/NSApplicationAWT.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/NSApplicationAWT.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/PropertiesUtilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/PropertiesUtilities.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/QueuingApplicationDelegate.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/QueuingApplicationDelegate.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/ThreadUtilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxapp/ThreadUtilities.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/AquaFileView.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/AquaLookAndFeel.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/AquaNativeResources.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/JRSUIConstantSync.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/JRSUIConstantSync.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/JRSUIController.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/JRSUIFocus.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/ScreenMenu.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libosxui/ScreenMenu.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libsplashscreen/splashscreen_config.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/macosx/native/libsplashscreen/splashscreen_sys.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/classes/javax/swing/text/rtf/charsets/NeXT.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/classes/javax/swing/text/rtf/charsets/ansi.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/classes/javax/swing/text/rtf/charsets/cpg437.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/classes/javax/swing/text/rtf/charsets/cpg850.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/classes/javax/swing/text/rtf/charsets/mac.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_assert.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_assert.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_mem.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_mem.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_trace.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_trace.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/debug/debug_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/medialib/mlib_ImageCopy_Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/medialib/mlib_ImageCreate.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/medialib/mlib_sys.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/awt/utility/rect.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/font/AccelGlyphCache.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/font/AccelGlyphCache.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/font/fontscalerdefs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/font/sunfontids.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/J2D_GL/gl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/J2D_GL/glext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLBlitLoops.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLBlitLoops.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLBufImgOps.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLBufImgOps.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLContext.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLContext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLFuncMacros.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLFuncs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLFuncs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLMaskBlit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLMaskBlit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLMaskFill.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLMaskFill.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLPaints.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLPaints.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLRenderQueue.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLRenderQueue.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLRenderer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLRenderer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLSurfaceData.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLTextRenderer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLTextRenderer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLVertexCache.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/common/java2d/opengl/OGLVertexCache.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/include/jawt.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/BufImgSurfaceData.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/BufImgSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/DataBufferNative.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/awt_ImageRep.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/awt_parseImage.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/awt_parseImage.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_alpha.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_anycm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_colors.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_colors.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_dcm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_dcm8.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_dir8dither.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_dirdither.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_fscolor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_fsdither.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_fsgray.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_fsutil.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_globals.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_globals.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_icm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_input32.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_input8.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_input8_32.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_nodither.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_noscale.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_opaque.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_ordclrsgn.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_ordclruns.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_orddither.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_ordgray.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output16.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output16_32.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output24.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output32.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output8.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output8_16_24.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output8_16_32.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_output8_32.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_replscale.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_scaleloop.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/cvutils/img_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/dither.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/dither.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/gif/gifdecoder.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/imageInitIDs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/image/imageInitIDs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/medialib/awt_ImagingLib.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/awt/medialib/awt_ImagingLib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/Disposer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/Disposer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/SurfaceData.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/SurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/Trace.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/Trace.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AlphaMacros.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AlphaMacros.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AlphaMath.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AlphaMath.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Any3Byte.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Any3Byte.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Any4Byte.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Any4Byte.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AnyByte.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AnyByte.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AnyByteBinary.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AnyInt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AnyInt.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AnyShort.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/AnyShort.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Blit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/BlitBg.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteBinary1Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteBinary1Bit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteBinary2Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteBinary2Bit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteBinary4Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteBinary4Bit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteGray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteGray.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteIndexed.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ByteIndexed.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/DrawLine.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/DrawParallelogram.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/DrawPath.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/DrawPath.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/DrawPolygons.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/DrawRect.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FillParallelogram.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FillPath.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FillRect.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FillSpans.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FourByteAbgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FourByteAbgr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FourByteAbgrPre.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/FourByteAbgrPre.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/GlyphImageRef.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/GraphicsPrimitiveMgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/GraphicsPrimitiveMgr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ImageData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Index12Gray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Index12Gray.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Index8Gray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Index8Gray.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntArgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntArgb.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntArgbBm.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntArgbBm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntArgbPre.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntArgbPre.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntBgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntBgr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntDcm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntRgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntRgb.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntRgbx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/IntRgbx.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/LineUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/LoopMacros.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/MapAccelFunc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/MaskBlit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/MaskFill.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ParallelogramUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ProcessPath.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ProcessPath.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ScaledBlit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ThreeByteBgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/ThreeByteBgr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/TransformHelper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort4444Argb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort4444Argb.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort555Rgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort555Rgb.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort555Rgbx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort555Rgbx.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort565Rgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/Ushort565Rgb.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/UshortGray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/UshortGray.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/UshortIndexed.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/loops/UshortIndexed.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/BufferedMaskBlit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/BufferedRenderPipe.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/PathConsumer2D.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/Region.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/Region.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/ShapeSpanIterator.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/SpanClipRenderer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libawt/java2d/pipe/SpanIterator.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/DrawGlyphList.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/FontInstanceAdapter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/FontInstanceAdapter.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/HBShaper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/fontscaler.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/freetypeScaler.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/glyphblitting.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-atomic-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-blob.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-blob.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-buffer-deserialize-json.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-buffer-deserialize-text.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-buffer-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-buffer-serialize.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-buffer.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-buffer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-cache-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-common.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-common.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-coretext.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-coretext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-deprecated.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-face-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-face.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-face.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-fallback-shape.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-font-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-font.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-font.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ft.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ft.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-mutex-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-object-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-open-file-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-open-type-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-cbdt-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-cmap-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-font.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-font.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-glyf-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-head-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-hhea-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-hmtx-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout-common-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout-gdef-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout-gpos-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout-gsub-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout-gsubgpos-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout-jstf-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-layout.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-map-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-map.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-math.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-maxp-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-name-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-os2-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-arabic-fallback.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-arabic-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-arabic-table.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-arabic-win1256.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-arabic.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-default.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-hangul.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-hebrew.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-indic-machine.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-indic-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-indic-table.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-indic.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-myanmar-machine.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-myanmar.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-thai.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-tibetan.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-use-machine.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-use-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-use-table.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-complex-use.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-fallback-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-fallback.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-normalize-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-normalize.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-shape.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-tag.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot-tag.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ot.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-set-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-set.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-set.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shape-plan-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shape-plan.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shape-plan.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shape.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shape.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shaper-impl-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shaper-list.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shaper-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-shaper.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ucdn.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ucdn/ucdn.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ucdn/ucdn.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ucdn/unicodedata_db.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-unicode-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-unicode.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-unicode.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-utf-private.hh"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-version.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb-warning.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/harfbuzz/hb.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/hb-jdk-font.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/hb-jdk.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/AlternateSubstSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/AlternateSubstSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/AnchorTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/AnchorTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ArabicLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ArabicLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ArabicShaping.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ArabicShaping.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/AttachmentPosnSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CanonData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CanonShaping.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CanonShaping.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CharSubstitutionFilter.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ClassDefinitionTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ClassDefinitionTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphInsertion.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphInsertionProc2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphInsertionProc2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphSubstProc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphSubstProc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphSubstProc2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphSubstProc2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualGlyphSubstitution.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualSubstSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ContextualSubstSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CoverageTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CoverageTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CursiveAttachmentSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/CursiveAttachmentSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/DefaultCharMapper.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/DeviceTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/DeviceTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ExtensionSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ExtensionSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/Features.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GDEFMarkFilter.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GDEFMarkFilter.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GXLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GXLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GXLayoutEngine2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GXLayoutEngine2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphDefinitionTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphDefinitionTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphIterator.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphIterator.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphLookupTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphLookupTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphPositionAdjustments.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphPositionAdjustments.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphPositioningTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphPositioningTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphPosnLookupProc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphPosnLookupProc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphSubstLookupProc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphSubstLookupProc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphSubstitutionTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/GlyphSubstitutionTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/HanLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/HanLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/HangulLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/HangulLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ICUFeatures.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicClassTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicRearrangement.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicRearrangementProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicRearrangementProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicRearrangementProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicRearrangementProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicReordering.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/IndicReordering.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/KernTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/KernTable.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/KhmerLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/KhmerLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/KhmerReordering.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/KhmerReordering.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEFontInstance.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEFontInstance.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEGlyphFilter.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEGlyphStorage.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEGlyphStorage.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEInsertionList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEInsertionList.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LELanguages.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEScripts.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LEStandalone.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LESwaps.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LETableReference.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LETypes.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LayoutTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LigatureSubstProc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LigatureSubstProc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LigatureSubstProc2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LigatureSubstProc2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LigatureSubstSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LigatureSubstSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LigatureSubstitution.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LookupProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LookupProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LookupTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/LookupTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/Lookups.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/Lookups.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MPreFixups.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MPreFixups.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkArrays.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkArrays.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkToBasePosnSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkToBasePosnSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkToLigaturePosnSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkToLigaturePosnSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkToMarkPosnSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MarkToMarkPosnSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MirroredCharData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MorphStateTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MorphTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MorphTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MorphTables2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MultipleSubstSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/MultipleSubstSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/NonContextualGlyphSubst.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/NonContextualGlyphSubstProc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/NonContextualGlyphSubstProc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/NonContextualGlyphSubstProc2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/NonContextualGlyphSubstProc2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/OpenTypeLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/OpenTypeLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/OpenTypeTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/OpenTypeUtilities.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/OpenTypeUtilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/PairPositioningSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/PairPositioningSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ScriptAndLanguage.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ScriptAndLanguage.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ScriptAndLanguageTags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ScriptAndLanguageTags.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentArrayProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentArrayProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentArrayProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentArrayProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentSingleProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentSingleProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentSingleProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SegmentSingleProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ShapingTypeData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SimpleArrayProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SimpleArrayProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SimpleArrayProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SimpleArrayProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SinglePositioningSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SinglePositioningSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SingleSubstitutionSubtables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SingleSubstitutionSubtables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SingleTableProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SingleTableProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SingleTableProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SingleTableProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/StateTableProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/StateTableProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/StateTableProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/StateTableProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/StateTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SubstitutionLookups.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SubstitutionLookups.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SubtableProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SubtableProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SubtableProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SubtableProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/SunLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ThaiLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ThaiLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ThaiShaping.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ThaiShaping.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ThaiStateTables.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TibetanLayoutEngine.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TibetanLayoutEngine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TibetanReordering.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TibetanReordering.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TrimmedArrayProcessor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TrimmedArrayProcessor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TrimmedArrayProcessor2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/TrimmedArrayProcessor2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ValueRecords.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/layout/ValueRecords.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/scriptMapping.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/scriptMapping.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libfontmanager/sunFont.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/imageioJPEG.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcapimin.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcapistd.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jccoefct.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jccolor.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcdctmgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jchuff.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jchuff.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcinit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcmainct.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcmarker.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcmaster.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcomapi.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jconfig.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcparam.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcphuff.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcprepct.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jcsample.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jctrans.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdapimin.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdapistd.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdcoefct.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdcolor.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdct.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jddctmgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdhuff.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdhuff.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdinput.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdmainct.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdmarker.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdmaster.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdmerge.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdphuff.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdpostct.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdsample.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jdtrans.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jerror.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jerror.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jfdctflt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jfdctfst.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jfdctint.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jidctflt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jidctfst.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jidctint.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jidctred.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jinclude.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jmemmgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jmemnobs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jmemsys.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jmorecfg.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jpegdecoder.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jpegint.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jpeglib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jquant1.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jquant2.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jutils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjavajpeg/jversion.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/Configure.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/DirectAudio.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/DirectAudioDevice.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/DirectAudioDeviceProvider.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/MidiInDevice.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/MidiInDeviceProvider.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/MidiOutDevice.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/MidiOutDeviceProvider.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/Platform.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/PlatformMidi.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/PlatformMidi.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/PortMixer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/PortMixerProvider.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/Ports.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/SoundDefs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/Utilities.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libjsound/Utilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/LCMS.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsalpha.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmscam02.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmscgats.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmscnvrt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmserr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsgamma.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsgmt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmshalf.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsintrp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsio0.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsio1.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmslut.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsmd5.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsmtrx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsnamed.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsopt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmspack.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmspcs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsplugin.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsps2.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmssamp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmssm.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmstypes.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsvirt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmswtpnt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/cmsxform.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/lcms2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/lcms2_internal.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/liblcms/lcms2_plugin.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/j2d_names.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffineEdge.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_BC_D64.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_BC_F32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_BC_S32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_BL_D64.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_BL_F32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_BL_S32.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_NN.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageAffine_NN_Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageCheck.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageClipping.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageClipping.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvClearEdge_Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvClearEdge_Fp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvCopyEdge_Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvEdge.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvKernelConvert.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvMxN.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvMxN_Fp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConvMxN_ext.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_16ext.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_16nw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_32nw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_8ext.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_8nw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_D64nw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_F32nw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_u16ext.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageConv_u16nw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageCopy.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageCreate.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageDivTables.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageDivTables.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageFilters.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageFilters.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageLookUp.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageLookUp_64.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageLookUp_Bit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageRowTable.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageScanPoly.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_ImageUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_SysMath.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageAffine_BC.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageAffine_BC_S16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageAffine_BC_U16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageAffine_BL.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageAffine_BL_S16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageAffine_BL_U16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageAffine_NN.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageConv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageConvClearEdge.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageConvCopyEdge.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageConvVersion.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageConv_f.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageCopy.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageLookUp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageLookUp.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_c_ImageLookUp_f.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_image.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_image_get.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_image_proto.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_image_types.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_status.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_sys.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_sys_proto.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/mlib_types.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/safe_alloc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libmlib_image/safe_math.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/giflib/dgif_lib.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/giflib/gif_err.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/giflib/gif_hash.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/giflib/gif_lib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/giflib/gif_lib_private.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/giflib/gifalloc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/giflib/openbsd-reallocarray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/java_awt_SplashScreen.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/png.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/png.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngconf.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngdebug.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngerror.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngget.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pnginfo.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pnglibconf.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngmem.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngpread.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngpriv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngread.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngrio.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngrtran.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngrutil.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngset.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngstruct.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/libpng/pngtrans.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_gfx.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_gfx_impl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_gfx_impl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_gif.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_impl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_impl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_jpeg.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/share/native/libsplashscreen/splashscreen_png.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/classes/sun/awt/X11/doc-files/Modality.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/classes/sun/awt/X11/keysym2ucs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/CUPSfuncs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/X11Color.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_Component.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_DrawingSurface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_Font.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_Font.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_GraphicsEnv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_Mlib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_p.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/awt_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/color.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/colordata.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/fontconfig.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/fontpath.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/img_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/medialib/mlib_v_ImageCopy_f.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/medialib/mlib_v_ImageCopy_f.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/medialib/vis_proto.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/systemscale/systemScale.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/systemscale/systemScale.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/awt/utility/rect.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/font/X11FontScaler.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/opengl/GLXGraphicsConfig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/opengl/GLXGraphicsConfig.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/opengl/GLXSurfaceData.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/opengl/GLXSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/opengl/J2D_GL/glx.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/opengl/J2D_GL/glxext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/opengl/OGLFuncs_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/x11/X11FontScaler_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/x11/X11PMBlitLoops.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/x11/X11Renderer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/x11/X11SurfaceData.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/x11/X11SurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/common/java2d/x11/X11TextRenderer_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/include/jawt_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/awt/awt_LoadLibrary.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/awt/awt_Mlib.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/awt/initIDs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/j2d_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/java2d_Mlib.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/java2d_Mlib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_ImageCopy.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_ImageLogic_proto.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_ImageZoom.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_ImageZoom_NN.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageClear.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageClear_f.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageClear_f.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageConstLogic.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageConstXor.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageLogic.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageLogic_proto.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageXor.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/mlib_v_ImageZoom_NN_f.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_AlphaMacros.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_AlphaMacros.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_AlphaMaskBlit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_AlphaMaskFill.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_ByteGray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_ByteGray_FromRgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_ByteGray_Mask.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_ByteIndexed.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_DrawLine.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_FourByteAbgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_FourByteAbgrPre.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_FuncArray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_GlyphList.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_GlyphListXor.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_IntArgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_IntArgbBm.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_IntArgbPre.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_IntArgbPre_Mask.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_IntBgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_IntRgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_IntRgbx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_Interp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_SrcMaskFill.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_SrcOverMaskBlit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_SrcOverMaskFill.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_ThreeByteBgr.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_UshortGray.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_UshortGray_FromRgb.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt/java2d/loops/vis_XorBlit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_headless/awt/HeadlessToolkit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/HPkeysym.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/Xrandr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_AWTEvent.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_AWTEvent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_DrawingSurface.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_Event.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_Event.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_GraphicsEnv.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_InputMethod.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_Insets.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_Insets.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_MenuComponent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_Robot.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_UNIXToolkit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/awt_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/canvas.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/gtk2_interface.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/gtk2_interface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/gtk3_interface.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/gtk3_interface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/gtk_interface.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/gtk_interface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/list.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/list.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/multiVis.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/multiVis.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/multi_font.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/multi_font.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/randr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/robot_common.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/robot_common.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/sun_awt_X11_GtkFileDialogPeer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/swing_GTKEngine.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/swing_GTKStyle.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/awt/wsutils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/java2d/x11/XRBackendNative.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/java2d/x11/XRSurfaceData.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/XToolkit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/XWindow.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/XlibWrapper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/awt_Desktop.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/awt_Taskbar.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/awt_Taskbar.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/gnome_interface.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libawt_xawt/xawt/gnome_interface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libfontmanager/X11FontScaler.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libfontmanager/X11TextRenderer.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjawt/jawt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_CommonUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_CommonUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_MidiIn.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_MidiOut.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_MidiUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_MidiUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_PCM.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_PCMUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_PCMUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_BsdOS_ALSA_Ports.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_CommonUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_CommonUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_MidiIn.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_MidiOut.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_MidiUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_MidiUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_PCM.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_PCMUtils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_PCMUtils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_LinuxOS_ALSA_Ports.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_SolarisOS_PCM.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_SolarisOS_Ports.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_SolarisOS_Utils.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libjsound/PLATFORM_API_SolarisOS_Utils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_ImageConvCopyEdge_Fp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_BC.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_BC_S16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_BC_U16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_BL.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_BL_S16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_BL_S16.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_BL_U16.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageAffine_NN.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageChannelExtract.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageChannelExtract_1.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageChannelExtract_43.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageChannelInsert.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageChannelInsert_1.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageConv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageConvClearEdge.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageConvCopyEdge.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageConvMxN_8.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageConvMxN_8ext.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageConvVersion.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageConv_8nw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageFilters.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageFilters.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUp.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpFunc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS16S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS16S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS16U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS16U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS32S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS32S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS32U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpS32U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS16S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS16S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS16U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS16U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS32S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS32S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS32U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIS32U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU16S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU16S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU16U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU16U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU8S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU8S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU8U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpSIU8U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU16S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU16S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU16U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU16U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU8S16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU8S32Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU8U16Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/mlib_v_ImageLookUpU8U8Func.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/vis_32.il"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libmlib_image/vis_64.il"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libsplashscreen/splashscreen_config.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/unix/native/libsplashscreen/splashscreen_sys.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/common/awt/systemscale/systemScale.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/common/awt/systemscale/systemScale.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/common/awt/utility/rect.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/common/awt_makecube.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/include/jawt_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DBadHardware.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DBlitLoops.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DBlitLoops.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DBufImgOps.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DBufImgOps.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DContext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DContext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DGlyphCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DGlyphCache.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DGraphicsDevice.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DGraphicsDevice.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DMaskBlit.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DMaskBlit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DMaskCache.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DMaskCache.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DMaskFill.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DMaskFill.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DPaints.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DPaints.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DPipeline.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DPipelineManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DPipelineManager.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DRenderQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DRenderQueue.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DRenderer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DRenderer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DResourceManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DResourceManager.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DShaderGen.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DShaders.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DSurfaceData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DTextRenderer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DTextRenderer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DVertexCacher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/D3DVertexCacher.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/ShaderList.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/d3d/ShaderList.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/j2d_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/opengl/J2D_GL/wglext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/opengl/OGLFuncs_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/opengl/WGLGraphicsConfig.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/opengl/WGLGraphicsConfig.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/opengl/WGLSurfaceData.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/opengl/WGLSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/windows/GDIBlitLoops.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/windows/GDIRenderer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/windows/GDIWindowSurfaceData.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/windows/GDIWindowSurfaceData.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/windows/WindowsFlags.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/java2d/windows/WindowsFlags.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/CmdIDList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/CmdIDList.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/ComCtl32Util.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/ComCtl32Util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/Devices.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/Devices.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/DllUtil.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/DllUtil.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/GDIHashtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/GDIHashtable.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/Hashtable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/Hashtable.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/MouseInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/ObjectList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/ObjectList.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/ShellFolder2.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/ThemeReader.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/WPrinterJob.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/alloc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_AWTEvent.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_AWTEvent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_BitmapUtil.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_BitmapUtil.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Brush.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Brush.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Button.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Button.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Canvas.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Canvas.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Checkbox.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Checkbox.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Choice.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Choice.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Clipboard.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Clipboard.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Color.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Color.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Component.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Component.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Container.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Container.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Cursor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Cursor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_CustomPaletteDef.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DCHolder.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DCHolder.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DataTransferer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DataTransferer.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Debug.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Debug.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Desktop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DesktopProperties.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DesktopProperties.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Dialog.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Dialog.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Dimension.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Dimension.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DnDDS.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DnDDS.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DnDDT.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DnDDT.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DrawingSurface.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_DrawingSurface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Event.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Event.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_FileDialog.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_FileDialog.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Font.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Font.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Frame.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Frame.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_GDIObject.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_GDIObject.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_IconCursor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_IconCursor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_InputEvent.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_InputEvent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_InputMethod.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_InputTextInfor.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_InputTextInfor.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Insets.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Insets.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_KeyEvent.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_KeyEvent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_KeyboardFocusManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Label.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Label.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_List.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_List.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Menu.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Menu.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_MenuBar.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_MenuBar.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_MenuItem.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_MenuItem.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Mlib.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Mlib.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_MouseEvent.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_MouseEvent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Object.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Object.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Palette.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Palette.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Panel.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Panel.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Pen.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Pen.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_PopupMenu.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_PopupMenu.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_PrintControl.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_PrintControl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_PrintDialog.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_PrintDialog.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_PrintJob.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Rectangle.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Rectangle.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Robot.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Robot.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_ScrollPane.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_ScrollPane.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Scrollbar.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Scrollbar.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Taskbar.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Taskbar.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TextArea.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TextArea.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TextComponent.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TextComponent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TextField.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TextField.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Toolkit.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Toolkit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TrayIcon.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_TrayIcon.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Win32GraphicsConfig.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Win32GraphicsConfig.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Win32GraphicsDevice.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Win32GraphicsDevice.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Win32GraphicsEnv.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Window.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_Window.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_new.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_new.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_ole.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awt_ole.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/awtmsg.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/colordata.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/img_util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/initIDs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/mlib_types_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libawt/windows/stdhdrs.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libfontmanager/fontpath.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libfontmanager/lcdglyph.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjawt/jawt.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_Charset_Util.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_Charset_Util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_DirectSound.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_MidiIn.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_MidiOut.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_Ports.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_Util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_Util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libsplashscreen/splashscreen_config.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.desktop/windows/native/libsplashscreen/splashscreen_sys.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/EncodingSupport.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/EncodingSupport.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/FileSystemSupport.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/InstrumentationImplNativeMethods.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/InvocationAdapter.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JPLISAgent.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JPLISAgent.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JPLISAssert.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JPLISAssert.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JarFacade.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JarFacade.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JavaExceptions.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/JavaExceptions.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/PathCharsValidator.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/PathCharsValidator.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/Reentrancy.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/Reentrancy.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/Utilities.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/share/native/libinstrument/Utilities.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/unix/native/libinstrument/EncodingSupport_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/unix/native/libinstrument/FileSystemSupport_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/unix/native/libinstrument/FileSystemSupport_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/windows/native/libinstrument/EncodingSupport_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/windows/native/libinstrument/FileSystemSupport_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.instrument/windows/native/libinstrument/FileSystemSupport_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/include/jmm.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/ClassLoadingImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/GarbageCollectorImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/HotspotThread.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/MemoryImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/MemoryManagerImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/MemoryPoolImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/ThreadImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/VMManagementImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/management.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.management/share/native/libmanagement/management.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.prefs/macosx/native/libprefs/MacOSXPreferencesFile.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.prefs/unix/native/libprefs/FileSystemPreferences.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.prefs/windows/native/libprefs/WindowsPreferences.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.rmi/share/native/librmi/GC.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/macosx/native/libosxkrb5/SCDynamicStoreConfig.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/macosx/native/libosxkrb5/nativeccache.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/share/native/libj2gss/GSSLibStub.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/share/native/libj2gss/NativeUtil.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/share/native/libj2gss/NativeUtil.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/share/native/libj2gss/gssapi.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/unix/native/libj2gss/NativeFunc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/unix/native/libj2gss/NativeFunc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/windows/native/libw2k_lsa_auth/NativeCreds.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.security.jgss/windows/native/libw2k_lsa_auth/WindowsDirectory.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.smartcardio/share/native/libj2pcsc/pcsc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.smartcardio/unix/native/libj2pcsc/MUSCLE/pcsclite.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.smartcardio/unix/native/libj2pcsc/MUSCLE/winscard.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.smartcardio/unix/native/libj2pcsc/pcsc_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.smartcardio/unix/native/libj2pcsc/pcsc_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.smartcardio/windows/native/libj2pcsc/pcsc_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/java.smartcardio/windows/native/libj2pcsc/pcsc_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/bridge/AccessBridgeCalls.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/common/AccessBridgeDebug.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/common/AccessBridgeDebug.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/common/AccessBridgeMessages.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/common/AccessBridgeMessages.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/common/accessBridgeResource.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/common/resource.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/include/bridge/AccessBridgeCallbacks.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/include/bridge/AccessBridgeCalls.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/include/bridge/AccessBridgePackages.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jabswitch/jabswitch.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccessinspector/MessageHistory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccessinspector/MessageHistory.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccessinspector/jaccessinspector.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccessinspector/jaccessinspector.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccessinspector/jaccessinspectorResource.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccesswalker/jaccesswalker.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccesswalker/jaccesswalker.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/jaccesswalker/jaccesswalkerResource.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libjabsysinfo/AccessBridgeSysInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libjavaaccessbridge/AccessBridgeATInstance.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libjavaaccessbridge/AccessBridgeATInstance.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libjavaaccessbridge/AccessBridgeJavaEntryPoints.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libjavaaccessbridge/AccessBridgeJavaEntryPoints.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libjavaaccessbridge/JavaAccessBridge.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libjavaaccessbridge/JavaAccessBridge.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeEventHandler.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeEventHandler.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeJavaVMInstance.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeJavaVMInstance.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeMessageQueue.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeMessageQueue.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeWindowsEntryPoints.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/AccessBridgeWindowsEntryPoints.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/WinAccessBridge.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/libwindowsaccessbridge/WinAccessBridge.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/toolscommon/AccessInfo.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.accessibility/windows/native/toolscommon/AccessInfo.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.attach/aix/native/libattach/VirtualMachineImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.attach/linux/native/libattach/VirtualMachineImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.attach/macosx/native/libattach/VirtualMachineImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.attach/solaris/native/libattach/VirtualMachineImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.attach/windows/native/libattach/AttachProviderImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.attach/windows/native/libattach/VirtualMachineImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/j2secmod.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/j2secmod.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_convert.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_crypt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_digest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_dual.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_general.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_keymgmt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_mutex.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_objmgmt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_sessmgmt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_sign.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs-11v2-20a3.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs11.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs11f.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs11t.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs11wrapper.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/unix/native/libj2pkcs11/j2secmod_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/unix/native/libj2pkcs11/j2secmod_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/unix/native/libj2pkcs11/p11_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/unix/native/libj2pkcs11/p11_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/windows/native/libj2pkcs11/j2secmod_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/windows/native/libj2pkcs11/j2secmod_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/windows/native/libj2pkcs11/p11_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.cryptoki/windows/native/libj2pkcs11/p11_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/ECC_JNI.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec2.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec2_163.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec2_193.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec2_233.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec2_aff.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec2_mont.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ec_naf.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecc_impl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecdecode.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl-curve.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl-exp.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl-priv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl_curve.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl_gf.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecl_mult.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_192.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_224.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_256.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_384.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_521.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_aff.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_jac.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_jm.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/ecp_mont.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/logtab.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mp_gf2m-priv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mp_gf2m.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mp_gf2m.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mpi-config.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mpi-priv.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mpi.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mpi.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mplogic.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mplogic.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mpmontg.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/mpprime.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/oid.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/secitem.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ec/share/native/libsunec/impl/secoidt.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.mscapi/windows/native/libsunmscapi/security.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ucrypto/solaris/native/libj2ucrypto/nativeCrypto.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ucrypto/solaris/native/libj2ucrypto/nativeCrypto.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ucrypto/solaris/native/libj2ucrypto/nativeCryptoMD.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ucrypto/solaris/native/libj2ucrypto/nativeFunc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.crypto.ucrypto/solaris/native/libj2ucrypto/nativeFunc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/LinuxDebuggerLocal.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/elfmacros.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/libproc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/proc_service.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/ps_core.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/ps_proc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/salibelf.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/salibelf.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/symtab.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/symtab.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/linux/native/libsaproc/test.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/BsdDebuggerLocal.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/MacosxDebuggerLocal.m"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/StubDebuggerLocal.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/elfmacros.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/libproc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/libproc_impl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/libproc_impl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/ps_core.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/ps_proc.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/salibelf.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/salibelf.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/symtab.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/symtab.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/macosx/native/libsaproc/test.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/share/native/libsaproc/sadis.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/solaris/native/libsaproc/libproc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/solaris/native/libsaproc/salibproc.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/solaris/native/libsaproc/saproc.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/solaris/native/libsaproc/saproc_audit.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.hotspot.agent/windows/native/libsaproc/sawindbg.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.internal.le/windows/native/lible/WindowsTerminal.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/doc-files/CompilationBailoutActionHelp.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/doc-files/DumpHelp.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/doc-files/MethodFilterHelp.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/doc-files/MetricsFileHelp.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/debug/doc-files/BenchmarkDynamicCountersHelp.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/doc-files/ProfileAllocationsContextHelp.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdeps/share/classes/com/sun/tools/jdeps/resources/jdk8_internals.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/share/native/libdt_shmem/SharedMemory.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/share/native/libdt_shmem/SharedMemoryConnection.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/share/native/libdt_shmem/SharedMemoryTransport.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/share/native/libdt_shmem/shmemBack.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/share/native/libdt_shmem/shmemBase.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/share/native/libdt_shmem/shmemBase.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/share/native/libdt_shmem/sysShmem.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/windows/native/libdt_shmem/shmem_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdi/windows/native/libdt_shmem/shmem_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/include/jdwpTransport.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libdt_socket/socketTransport.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libdt_socket/socketTransport.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libdt_socket/sysSocket.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ArrayReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ArrayReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ArrayTypeImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ArrayTypeImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ClassLoaderReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ClassLoaderReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ClassObjectReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ClassObjectReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ClassTypeImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ClassTypeImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/EventRequestImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/EventRequestImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/FieldImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/FieldImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/FrameID.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/FrameID.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/InterfaceTypeImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/InterfaceTypeImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/JDWP.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/MethodImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/MethodImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ModuleReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ModuleReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ObjectReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ObjectReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ReferenceTypeImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ReferenceTypeImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/SDE.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/SDE.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/StackFrameImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/StackFrameImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/StringReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/StringReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ThreadGroupReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ThreadGroupReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ThreadReferenceImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/ThreadReferenceImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/VirtualMachineImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/VirtualMachineImpl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/bag.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/bag.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/classTrack.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/classTrack.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/commonRef.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/commonRef.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/debugDispatch.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/debugDispatch.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/debugInit.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/debugLoop.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/debugLoop.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/error_messages.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/error_messages.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventFilter.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventFilter.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventFilterRestricted.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventHandler.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventHandler.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventHandlerRestricted.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventHelper.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/eventHelper.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/export/sys.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/inStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/inStream.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/invoker.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/invoker.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/log_messages.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/log_messages.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/outStream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/outStream.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/standardHandlers.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/standardHandlers.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/stepControl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/stepControl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/stream.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/stream.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/threadControl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/transport.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/transport.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/utf_util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/utf_util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/util.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/share/native/libjdwp/vm_interface.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/unix/native/libdt_socket/socket_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/unix/native/libdt_socket/socket_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/unix/native/libjdwp/exec_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/unix/native/libjdwp/linker_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/unix/native/libjdwp/path_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/unix/native/libjdwp/proc_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/unix/native/libjdwp/util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libdt_socket/socket_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libdt_socket/socket_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libjdwp/exec_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libjdwp/linker_md.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libjdwp/mutex_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libjdwp/path_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libjdwp/proc_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.jdwp.agent/windows/native/libjdwp/util_md.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.localedata/share/classes/sun/util/cldr/resources/unicode-license.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management.agent/unix/native/libmanagement_agent/FileSystemImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management.agent/windows/native/libmanagement_agent/FileSystemImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/aix/native/libmanagement_ext/UnixOperatingSystem.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/linux/native/libmanagement_ext/UnixOperatingSystem.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/macosx/native/libmanagement_ext/UnixOperatingSystem.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/share/native/libmanagement_ext/DiagnosticCommandImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/share/native/libmanagement_ext/Flag.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/share/native/libmanagement_ext/GarbageCollectorExtImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/share/native/libmanagement_ext/GcInfoBuilder.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/share/native/libmanagement_ext/HotSpotDiagnostic.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/share/native/libmanagement_ext/management_ext.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/share/native/libmanagement_ext/management_ext.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/solaris/native/libmanagement_ext/UnixOperatingSystem.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/unix/native/libmanagement_ext/OperatingSystemImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.management/windows/native/libmanagement_ext/OperatingSystemImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.net/solaris/native/libextnet/SolarisSocketOptions.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.net/solaris/native/libextnet/SolarisSocketOptions.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/bands.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/bands.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/bytes.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/bytes.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/coding.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/coding.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/constants.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/defines.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/unpack.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/unpack.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/utils.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/utils.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/zip.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/common-unpack/zip.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/libunpack/jni.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.pack/share/native/unpack200/main.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.sctp/unix/native/libsctp/Sctp.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.sctp/unix/native/libsctp/SctpChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.sctp/unix/native/libsctp/SctpNet.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.sctp/unix/native/libsctp/SctpServerChannelImpl.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.security.auth/unix/native/libjaas/Unix.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/jdk.security.auth/windows/native/libjaas/nt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/sample/nashorn/Main.asm" ex="false" tool="4" flavor2="0">
-      </item>
-      <item path="../../src/utils/hsdis/hsdis-demo.c" ex="false" tool="0" flavor2="0">
-      </item>
-      <item path="../../src/utils/hsdis/hsdis.c" ex="false" tool="0" flavor2="0">
-      </item>
-      <item path="../../src/utils/hsdis/hsdis.h" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../src/utils/reorder/tools/mcount.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/utils/reorder/tools/remove_mcount.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../src/utils/reorder/tools/util-i586.il"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/utils/reorder/tools/util-sparc.il"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../src/utils/reorder/tools/util-sparcv9.il"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/failure_handler/src/windows/native/libtimeoutHandler/GatherProcessInfoTimeoutHandler.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest-death-test.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest-message.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest-param-test.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest-printers.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest-spi.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest-test-part.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest-typed-test.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest_pred_impl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/gtest_prod.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-death-test-internal.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-filepath.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-internal.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-linked_ptr.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-param-util-generated.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-param-util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-port.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-string.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-tuple.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/include/gtest/internal/gtest-type-util.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-all.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-death-test.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-filepath.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-internal-inl.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-port.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-printers.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-test-part.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest-typed-test.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest.cc" ex="false" tool="1" flavor2="0">
-      </item>
-      <item path="../../test/fmw/gtest/src/gtest_main.cc"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/classfile/test_AltHashing.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/classfile/test_symbolTable.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/code/test_dependencyContext.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/g1/test_bufferingOopClosure.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/g1/test_freeRegionList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/g1/test_g1BiasedArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/g1/test_g1CodeCacheRemSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/g1/test_g1IHOPControl.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/g1/test_g1Predictions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/parallel/test_psAdaptiveSizePolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/parallel/test_psParallelCompact.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/shared/test_collectedHeap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/shared/test_collectorPolicy.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/shared/test_memset_with_concurrent_readers.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gc/shared/test_workerDataArray.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gtestLauncher.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/gtestMain.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/logTestFixture.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/logTestFixture.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/logTestUtils.inline.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_gcTraceTime.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_log.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logConfiguration.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logDecorations.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logDecorators.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logFileOutput.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logLevel.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logMessageTest.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logOutputList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logStream.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logTag.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logTagLevelExpression.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logTagSet.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/logging/test_logTagSetDescriptions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/memory/test_chunkManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/memory/test_guardedMemory.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/memory/test_metachunk.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/memory/test_spaceManager.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_conditional.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_decay.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_enableIf.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isConst.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isFloatingPoint.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isIntegral.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isPointer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isRegisteredEnum.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isSame.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isSigned.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_isVolatile.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_primitiveConversions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_removeCV.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_removePointer.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/metaprogramming/test_removeReference.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/oops/test_arrayOop.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/oops/test_instanceKlass.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/runtime/test_arguments.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/runtime/test_classLoader.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/runtime/test_globals.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/runtime/test_os.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/runtime/test_semaphore.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/runtime/test_vmStructs.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/unittest.hpp"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_align.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_bitMap.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_bitMap_search.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_bitMap_setops.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_chunkedList.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_count_trailing_zeros.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_globalDefinitions.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_json.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_linkedlist.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_quicksort.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_resourceHash.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/gtest/utilities/test_utf8.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/ProblemList.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/aot/scripts/java.base-list.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/aot/scripts/jdk.internal.vm.compiler-list.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/aot/scripts/jdk.scripting.nashorn-list.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/c2/cr6890943/input6890943.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/c2/cr6890943/output6890943.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/calls/common/libCallsNative.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/calls/libTestDirtyInt.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/compilercontrol/control_off.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/compilercontrol/control_on.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/floatingpoint/libTestFloatJNIArgs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/libNativeCallTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/oracle/command1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/compiler/oracle/command2.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/gc/cslocker/libTestCSLocker.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/gc/g1/TestJNIWeakG1/libTestJNIWeakG1.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/gc/stress/gclocker/libTestGCLocker.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/native_sanity/libJniVersion.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/BoolReturn/libNativeSmallIntCalls.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/CommandLine/flagfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/RedefineTests/libRedefineDoubleDelete.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/SameObject/libSameObject.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/StackGuardPages/exeinvoke.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/ThreadSignalMask/exeThreadSignalMask.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/execstack/libtest-rw.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/execstack/libtest-rwx.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/8025979/libUninitializedStrings.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/8033445/libDefaultMethods.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/CallWithJNIWeak/libCallWithJNIWeak.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/CalleeSavedRegisters/exeFPRegs.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/PrivateInterfaceMethods/libPrivateInterfaceMethods.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/ReturnJNIWeak/libReturnJNIWeak.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/ToStringInInterfaceTest/libToStringTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jni/checked/libTestCheckedJniExceptionCheck.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/jsig/libTestJNI.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/libadimalloc.solaris.sparc/liboverflow.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/modules/getModuleJNI/libGetModule.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/runtime/noClassDefFoundMsg/libNoClassDefFoundMsg.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/dcmd/compiler/control1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/dcmd/compiler/control2.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/AddModuleExportsAndOpens/libAddModuleExportsAndOpensTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/AddModuleReads/libAddModuleReadsTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/AddModuleUsesAndProvides/libAddModuleUsesAndProvidesTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/GetModulesInfo/libJvmtiGetAllModulesTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/GetNamedModule/libGetNamedModuleTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/GetOwnedMonitorInfo/libGetOwnedMonitorInfoTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/IsModifiableModule/libIsModifiableModuleTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/libHeapMonitorTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/VMEvent/libVMEventTest.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/ModuleAwareAgents/ClassFileLoadHook/libMAAClassFileLoadHook.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/ModuleAwareAgents/ClassLoadPrepare/libMAAClassLoadPrepare.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/ModuleAwareAgents/ThreadStart/libMAAThreadStart.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/serviceability/jvmti/StartPhase/AllowedFunctions/libAllowedFunctions.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/hotspot/jtreg/testlibrary/jvmti/libSimpleClassFileLoadHook.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jaxp/ProblemList.txt" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../test/jaxp/javax/xml/jaxp/functional/test/gaptest/xmlfiles/out/Bug4858685.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jaxp/javax/xml/jaxp/unittest/common/prettyprint/nodetest1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jaxp/javax/xml/jaxp/unittest/stream/XMLEventWriterTest/replace1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jaxp/javax/xml/jaxp/unittest/stream/XMLResolverTest/replace1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jaxp/javax/xml/jaxp/unittest/stream/XMLResolverTest/replace2.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/ProblemList.txt" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain0.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain10.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain2.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain3.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain4.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain5.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain6.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain7.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain8.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/DES/inputData/plain9.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/Cipher/RSA/oaep-vect.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/TLS/keymatdata.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/TLS/masterdata.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/TLS/prf12data.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/crypto/provider/TLS/prfdata.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/net/httpserver/docs/test1/largefile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/com/sun/net/httpserver/docs/test1/smallfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/awt/JAWT/myfile.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/awt/JAWT/myfile.cpp"
-            ex="false"
-            tool="1"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/io/LineNumberReader/SkipInput.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/io/RandomAccessFile/skipBytes/input.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/io/Reader/SkipInput.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/io/StreamTokenizer/input.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/io/readBytes/input.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/lang/Character/PropList.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/lang/Character/PropertyValueAliases.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/lang/Character/Scripts.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/lang/String/nativeEncoding/libstringPlatformChars.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/lang/StringCoding/locales.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/net/Inet6Address/serialize/Readme.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/net/httpclient/docs/files/foo.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/net/httpclient/docs/files/notsobigfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/net/httpclient/docs/files/smallfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/Launcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/BreakIterator/broken_th_TH.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/BreakIterator/test_th_TH.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/ChoiceFormat/Bug4185732.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/DateFormat/SDFserialized.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/MessageFormat/Bug4185816.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/MessageFormat/Bug4185816Corrupt.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/NumberFormat/DecimalFormat.114.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/NumberFormat/DecimalFormatSymbols.114.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/NumberFormat/DecimalFormatSymbols.142.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/NumberFormat/NumberFormat4185761a.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/NumberFormat/NumberFormat4185761b.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/common/ChoiceFormat.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/common/DateFormat.Field.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/common/MessageFormat.Field.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/text/Format/common/NumberFormat.Field.ser.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Base64/baseEncode.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Base64/mimeEncode.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Base64/plain.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Base64/urlEncode.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Currency/tablea1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Locale/data/deflocale.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Locale/icuLocales.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Properties/invalidxml/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/Scanner/input.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/regex/BMPTestCases.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/regex/GraphemeBreakProperty.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/regex/GraphemeBreakTest.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/regex/SupplementaryTestCases.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/java/util/regex/TestCases.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/crypto/Cipher/ExampleVectors/NIST_800_38A_vectors.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/crypto/CryptoPermissions/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/management/loading/LibraryLoader/jar_src/RandomGen.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/management/loading/LibraryLoader/jar_src/RandomGen.h"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/print/attribute/autosense/sample.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/swing/JTextArea/4697612/bug4697612.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/swing/LookAndFeel/8145547/DemandGTK2.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/javax/swing/text/View/8015853/bug8015853.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/root/dir1/leaf1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/root/dir1/leaf2.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/root/dir2/leaf3.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/root/dir2/leaf4.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/v9/root/dir1/leaf1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/v9/root/dir1/leaf2.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/v9/root/dir2/leaf3.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/jdk/nio/zipfs/jarfs/v9/root/dir2/leaf4.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/native_sanity/simplenativelauncher/exesanity_SimpleNativeLauncher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/native_sanity/simplenativelib/libsanity_SimpleNativeLib.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/native_sanity/simplenativelib2/libsanity_SimpleNativeLib2.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/tree/resources/tree.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/management/jmxremote/bootstrap/launcher.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/management/jmxremote/bootstrap/ssl/Readme.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/management/jmxremote/startstop/REMOTE_TESTING.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/management/windows/revokeall.c"
-            ex="false"
-            tool="0"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/net/www/protocol/jar/jarbug/etc/jar1/res1.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/ec/p12passwords.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/jgss/spnego/msoid.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/KeyStore/BasicData/p11-activcard.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/KeyStore/BasicData/p11-ibutton.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/KeyStore/BasicData/p11-nss.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/KeyStore/BasicData/p11-sca1000.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/KeyStore/BasicData/p11-solaris.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/KeyStore/ClientAuthData/p11-nss.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/Provider/ConfigQuotedString-nss.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/Provider/Login-nss.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/ec/p12passwords.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/nss/p11-deimos.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/nss/p11-nss.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/tls/keymatdata.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/tls/masterdata.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/pkcs11/tls/prfdata.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/smartcardio/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/security/tools/keytool/p11-nss.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/tools/jcmd/dcmd-big-script.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/sun/tools/jcmd/dcmd-script.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/tools/jar/multiRelease/data/runtimetest/manifest.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/jdk/tools/pack200/typeannos/Readme.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/ProblemList.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/jdk/javadoc/doclet/testDocFileDir/pkg/doc-files/subdir-excluded1/testfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/jdk/javadoc/doclet/testDocFileDir/pkg/doc-files/subdir-excluded2/testfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/jdk/javadoc/doclet/testDocFileDir/pkg/doc-files/subdir-used1/testfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/jdk/javadoc/doclet/testDocFileDir/pkg/doc-files/subdir-used2/testfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/jdk/javadoc/doclet/testDocFileDir/pkg/doc-files/testfile.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/jdk/javadoc/doclet/testDocFiles/pkg/doc-files/test.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/jdk/javadoc/tool/sampleapi/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/tools/doclint/tidy/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/tools/javac/classfiles/attributes/annotations/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/tools/javac/classfiles/attributes/innerclasses/README.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/tools/javac/diags/README.examples.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/tools/javac/diags/examples.not-yet.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/langtools/tools/jdeprscan/tests/jdk/jdeprscan/TestScanExpected.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/nashorn/ProblemList.txt" ex="false" tool="3" flavor2="0">
-      </item>
-      <item path="../../test/nashorn/src/jdk/nashorn/internal/runtime/doubleconv/test/resources/gay-fixed.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/nashorn/src/jdk/nashorn/internal/runtime/doubleconv/test/resources/gay-precision.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <item path="../../test/nashorn/src/jdk/nashorn/internal/runtime/doubleconv/test/resources/gay-shortest.txt"
-            ex="false"
-            tool="3"
-            flavor2="0">
-      </item>
-      <folder path="0/src/hotspot">
-        <cTool>
-          <incDir>
-            <pElem>../../src/hotspot/cpu/x86</pElem>
-            <pElem>../../src/hotspot/os/windows</pElem>
-            <pElem>../../src/hotspot/os_cpu/windows_x86</pElem>
-            <pElem>../../src/hotspot/share</pElem>
-            <pElem>../../../output/hotspot/variant-server/gensrc/adfiles</pElem>
-          </incDir>
-        </cTool>
-        <ccTool>
-          <incDir>
-            <pElem>../../src/hotspot/cpu/x86</pElem>
-            <pElem>../../src/hotspot/os/windows</pElem>
-            <pElem>../../src/hotspot/os_cpu/windows_x86</pElem>
-            <pElem>../../src/hotspot/share</pElem>
-            <pElem>../../../output/hotspot/variant-server/gensrc/adfiles</pElem>
-          </incDir>
-        </ccTool>
-      </folder>
     </conf>
   </confs>
 </configurationDescriptor>
--- a/src/hotspot/cpu/aarch64/aarch64.ad	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/aarch64/aarch64.ad	Tue Jan 29 09:38:31 2019 -0500
@@ -3417,37 +3417,21 @@
       __ biased_locking_enter(box, oop, disp_hdr, tmp, true, cont);
     }
 
-    // Handle existing monitor
+    // Check for existing monitor
     __ tbnz(disp_hdr, exact_log2(markOopDesc::monitor_value), object_has_monitor);
 
-    // Set displaced_header to be (markOop of object | UNLOCK_VALUE).
-    __ orr(disp_hdr, disp_hdr, markOopDesc::unlocked_value);
-
-    // Load Compare Value application register.
+    // Set tmp to be (markOop of object | UNLOCK_VALUE).
+    __ orr(tmp, disp_hdr, markOopDesc::unlocked_value);
 
     // Initialize the box. (Must happen before we update the object mark!)
-    __ str(disp_hdr, Address(box, BasicLock::displaced_header_offset_in_bytes()));
-
-    // Compare object markOop with mark and if equal exchange scratch1
-    // with object markOop.
-    if (UseLSE) {
-      __ mov(tmp, disp_hdr);
-      __ casal(Assembler::xword, tmp, box, oop);
-      __ cmp(tmp, disp_hdr);
-      __ br(Assembler::EQ, cont);
-    } else {
-      Label retry_load;
-      if ((VM_Version::features() & VM_Version::CPU_STXR_PREFETCH))
-        __ prfm(Address(oop), PSTL1STRM);
-      __ bind(retry_load);
-      __ ldaxr(tmp, oop);
-      __ cmp(tmp, disp_hdr);
-      __ br(Assembler::NE, cas_failed);
-      // use stlxr to ensure update is immediately visible
-      __ stlxr(tmp, box, oop);
-      __ cbzw(tmp, cont);
-      __ b(retry_load);
-    }
+    __ str(tmp, Address(box, BasicLock::displaced_header_offset_in_bytes()));
+
+    // Compare object markOop with an unlocked value (tmp) and if
+    // equal exchange the stack address of our box with object markOop.
+    // On failure disp_hdr contains the possibly locked markOop.
+    __ cmpxchg(oop, tmp, box, Assembler::xword, /*acquire*/ true,
+               /*release*/ true, /*weak*/ false, disp_hdr);
+    __ br(Assembler::EQ, cont);
 
     assert(oopDesc::mark_offset_in_bytes() == 0, "offset of _mark is not 0");
 
@@ -3464,38 +3448,21 @@
     __ mov(tmp, (address) (~(os::vm_page_size()-1) | markOopDesc::lock_mask_in_place));
     // If condition is true we are cont and hence we can store 0 as the
     // displaced header in the box, which indicates that it is a recursive lock.
-    __ ands(tmp/*==0?*/, disp_hdr, tmp);
+    __ ands(tmp/*==0?*/, disp_hdr, tmp);   // Sets flags for result
     __ str(tmp/*==0, perhaps*/, Address(box, BasicLock::displaced_header_offset_in_bytes()));
 
+    __ b(cont);
+
     // Handle existing monitor.
-    __ b(cont);
-
     __ bind(object_has_monitor);
+
     // The object's monitor m is unlocked iff m->owner == NULL,
     // otherwise m->owner may contain a thread or a stack address.
     //
     // Try to CAS m->owner from NULL to current thread.
     __ add(tmp, disp_hdr, (ObjectMonitor::owner_offset_in_bytes()-markOopDesc::monitor_value));
-    __ mov(disp_hdr, zr);
-
-    if (UseLSE) {
-      __ mov(rscratch1, disp_hdr);
-      __ casal(Assembler::xword, rscratch1, rthread, tmp);
-      __ cmp(rscratch1, disp_hdr);
-    } else {
-      Label retry_load, fail;
-      if ((VM_Version::features() & VM_Version::CPU_STXR_PREFETCH)) {
-        __ prfm(Address(tmp), PSTL1STRM);
-      }
-      __ bind(retry_load);
-      __ ldaxr(rscratch1, tmp);
-      __ cmp(disp_hdr, rscratch1);
-      __ br(Assembler::NE, fail);
-      // use stlxr to ensure update is immediately visible
-      __ stlxr(rscratch1, rthread, tmp);
-      __ cbnzw(rscratch1, retry_load);
-      __ bind(fail);
-    }
+    __ cmpxchg(tmp, zr, rthread, Assembler::xword, /*acquire*/ true,
+               /*release*/ true, /*weak*/ false, noreg); // Sets flags for result
 
     // Store a non-null value into the box to avoid looking like a re-entrant
     // lock. The fast-path monitor unlock code checks for
@@ -3539,24 +3506,9 @@
     // see the stack address of the basicLock in the markOop of the
     // object.
 
-    if (UseLSE) {
-      __ mov(tmp, box);
-      __ casl(Assembler::xword, tmp, disp_hdr, oop);
-      __ cmp(tmp, box);
-      __ b(cont);
-    } else {
-      Label retry_load;
-      if ((VM_Version::features() & VM_Version::CPU_STXR_PREFETCH))
-        __ prfm(Address(oop), PSTL1STRM);
-      __ bind(retry_load);
-      __ ldxr(tmp, oop);
-      __ cmp(box, tmp);
-      __ br(Assembler::NE, cont);
-      // use stlxr to ensure update is immediately visible
-      __ stlxr(tmp, disp_hdr, oop);
-      __ cbzw(tmp, cont);
-      __ b(retry_load);
-    }
+    __ cmpxchg(oop, box, disp_hdr, Assembler::xword, /*acquire*/ false,
+               /*release*/ true, /*weak*/ false, tmp);
+    __ b(cont);
 
     assert(oopDesc::mark_offset_in_bytes() == 0, "offset of _mark is not 0");
 
@@ -3567,13 +3519,13 @@
     __ ldr(disp_hdr, Address(tmp, ObjectMonitor::recursions_offset_in_bytes()));
     __ eor(rscratch1, rscratch1, rthread); // Will be 0 if we are the owner.
     __ orr(rscratch1, rscratch1, disp_hdr); // Will be 0 if there are 0 recursions
-    __ cmp(rscratch1, zr);
+    __ cmp(rscratch1, zr); // Sets flags for result
     __ br(Assembler::NE, cont);
 
     __ ldr(rscratch1, Address(tmp, ObjectMonitor::EntryList_offset_in_bytes()));
     __ ldr(disp_hdr, Address(tmp, ObjectMonitor::cxq_offset_in_bytes()));
     __ orr(rscratch1, rscratch1, disp_hdr); // Will be 0 if both are 0.
-    __ cmp(rscratch1, zr);
+    __ cmp(rscratch1, zr); // Sets flags for result
     __ cbnz(rscratch1, cont);
     // need a release store here
     __ lea(tmp, Address(tmp, ObjectMonitor::owner_offset_in_bytes()));
--- a/src/hotspot/cpu/aarch64/frame_aarch64.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/aarch64/frame_aarch64.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -137,11 +137,6 @@
 // frame.
 inline intptr_t* frame::id(void) const { return unextended_sp(); }
 
-// Relationals on frames based
-// Return true if the frame is younger (more recent activation) than the frame represented by id
-inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
-                                                    return this->id() < id ; }
-
 // Return true if the frame is older (less recent activation) than the frame represented by id
 inline bool frame::is_older(intptr_t* id) const   { assert(this->id() != NULL && id != NULL, "NULL frame id");
                                                     return this->id() > id ; }
--- a/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -423,45 +423,14 @@
 }
 
 void ShenandoahBarrierSetAssembler::cmpxchg_oop(MacroAssembler* masm, Register addr, Register expected, Register new_val,
-                                                bool acquire, bool release, bool weak, bool encode,
-                                                Register tmp1, Register tmp2, Register tmp3,
+                                                bool acquire, bool release, bool weak, bool is_cae,
                                                 Register result) {
 
-  if (!ShenandoahCASBarrier) {
-    if (UseCompressedOops) {
-      if (encode) {
-        __ encode_heap_oop(tmp1, expected);
-        expected = tmp1;
-        __ encode_heap_oop(tmp3, new_val);
-        new_val = tmp3;
-      }
-      __ cmpxchg(addr, expected, new_val, Assembler::word, /* acquire*/ true, /* release*/ true, /* weak*/ false, rscratch1);
-      __ membar(__ AnyAny);
-    } else {
-      __ cmpxchg(addr, expected, new_val, Assembler::xword, /* acquire*/ true, /* release*/ true, /* weak*/ false, rscratch1);
-      __ membar(__ AnyAny);
-    }
-    return;
-  }
-
-  if (encode) {
-    storeval_barrier(masm, new_val, tmp3);
-  }
-
-  if (UseCompressedOops) {
-    if (encode) {
-      __ encode_heap_oop(tmp1, expected);
-      expected = tmp1;
-      __ encode_heap_oop(tmp2, new_val);
-      new_val = tmp2;
-    }
-  }
-  bool is_cae = (result != noreg);
+  Register tmp = rscratch2;
   bool is_narrow = UseCompressedOops;
   Assembler::operand_size size = is_narrow ? Assembler::word : Assembler::xword;
-  if (! is_cae) result = rscratch1;
 
-  assert_different_registers(addr, expected, new_val, result, tmp3);
+  assert_different_registers(addr, expected, new_val, result, tmp);
 
   Label retry, done, fail;
 
@@ -474,35 +443,38 @@
     __ cmp(result, expected);
   }
   __ br(Assembler::NE, fail);
-  __ store_exclusive(tmp3, new_val, addr, size, release);
+  __ store_exclusive(tmp, new_val, addr, size, release);
   if (weak) {
-    __ cmpw(tmp3, 0u); // If the store fails, return NE to our caller
+    __ cmpw(tmp, 0u); // If the store fails, return NE to our caller
   } else {
-    __ cbnzw(tmp3, retry);
+    __ cbnzw(tmp, retry);
   }
   __ b(done);
 
  __  bind(fail);
   // Check if rb(expected)==rb(result)
   // Shuffle registers so that we have memory value ready for next expected.
-  __ mov(tmp3, expected);
+  __ mov(tmp, expected);
   __ mov(expected, result);
   if (is_narrow) {
     __ decode_heap_oop(result, result);
-    __ decode_heap_oop(tmp3, tmp3);
+    __ decode_heap_oop(tmp, tmp);
   }
   read_barrier_impl(masm, result);
-  read_barrier_impl(masm, tmp3);
-  __ cmp(result, tmp3);
+  read_barrier_impl(masm, tmp);
+  __ cmp(result, tmp);
   // Retry with expected now being the value we just loaded from addr.
   __ br(Assembler::EQ, retry);
-  if (is_narrow && is_cae) {
+  if (is_cae && is_narrow) {
     // For cmp-and-exchange and narrow oops, we need to restore
     // the compressed old-value. We moved it to 'expected' a few lines up.
     __ mov(result, expected);
   }
   __ bind(done);
 
+  if (!is_cae) {
+    __ cset(result, Assembler::EQ);
+  }
 }
 
 #ifdef COMPILER1
--- a/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -60,7 +60,6 @@
   void read_barrier_not_null_impl(MacroAssembler* masm, Register dst);
   void write_barrier(MacroAssembler* masm, Register dst);
   void write_barrier_impl(MacroAssembler* masm, Register dst);
-  void storeval_barrier(MacroAssembler* masm, Register dst, Register tmp);
   void asm_acmp_barrier(MacroAssembler* masm, Register op1, Register op2);
 
   address generate_shenandoah_wb(StubCodeGenerator* cgen);
@@ -68,6 +67,8 @@
 public:
   static address shenandoah_wb();
 
+  void storeval_barrier(MacroAssembler* masm, Register dst, Register tmp);
+
 #ifdef COMPILER1
   void gen_pre_barrier_stub(LIR_Assembler* ce, ShenandoahPreBarrierStub* stub);
   void gen_write_barrier_stub(LIR_Assembler* ce, ShenandoahWriteBarrierStub* stub);
@@ -92,9 +93,7 @@
                              Label& slow_case);
 
   void cmpxchg_oop(MacroAssembler* masm, Register addr, Register expected, Register new_val,
-                   bool acquire, bool release, bool weak, bool encode,
-                   Register tmp1, Register tmp2, Register tmp3 = rscratch2,
-                   Register result = noreg);
+                   bool acquire, bool release, bool weak, bool is_cae, Register result);
 
   virtual void barrier_stubs_init();
 };
--- a/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetC1_aarch64.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetC1_aarch64.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -28,15 +28,30 @@
 #include "gc/shenandoah/shenandoahBarrierSetAssembler.hpp"
 #include "gc/shenandoah/c1/shenandoahBarrierSetC1.hpp"
 
+#define __ masm->masm()->
+
 void LIR_OpShenandoahCompareAndSwap::emit_code(LIR_Assembler* masm) {
   Register addr = _addr->as_register_lo();
   Register newval = _new_value->as_register();
   Register cmpval = _cmp_value->as_register();
   Register tmp1 = _tmp1->as_register();
   Register tmp2 = _tmp2->as_register();
-  ShenandoahBarrierSet::assembler()->cmpxchg_oop(masm->masm(), addr, cmpval, newval, /*acquire*/ false, /*release*/ true, /*weak*/ false, true, tmp1, tmp2);
+  Register result = result_opr()->as_register();
+
+  ShenandoahBarrierSet::assembler()->storeval_barrier(masm->masm(), newval, rscratch2);
+
+  if (UseCompressedOops) {
+    __ encode_heap_oop(tmp1, cmpval);
+    cmpval = tmp1;
+    __ encode_heap_oop(tmp2, newval);
+    newval = tmp2;
+  }
+
+  ShenandoahBarrierSet::assembler()->cmpxchg_oop(masm->masm(), addr, cmpval, newval, /*acquire*/ false, /*release*/ true, /*weak*/ false, /*is_cae*/ false, result);
 }
 
+#undef __
+
 #ifdef ASSERT
 #define __ gen->lir(__FILE__, __LINE__)->
 #else
@@ -58,13 +73,9 @@
       LIR_Opr t1 = gen->new_register(T_OBJECT);
       LIR_Opr t2 = gen->new_register(T_OBJECT);
       LIR_Opr addr = access.resolved_addr()->as_address_ptr()->base();
-
-      __ append(new LIR_OpShenandoahCompareAndSwap(addr, cmp_value.result(), new_value.result(), t1, t2,
-                                                   LIR_OprFact::illegalOpr));
+      LIR_Opr result = gen->new_register(T_INT);
 
-      LIR_Opr result = gen->new_register(T_INT);
-      __ cmove(lir_cond_equal, LIR_OprFact::intConst(1), LIR_OprFact::intConst(0),
-               result, T_INT);
+      __ append(new LIR_OpShenandoahCompareAndSwap(addr, cmp_value.result(), new_value.result(), t1, t2, result));
       return result;
     }
   }
--- a/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoah_aarch64.ad	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/aarch64/gc/shenandoah/shenandoah_aarch64.ad	Tue Jan 29 09:38:31 2019 -0500
@@ -26,22 +26,22 @@
 %}
 
 encode %{
-  enc_class aarch64_enc_cmpxchg_oop_shenandoah(memory mem, iRegP oldval, iRegP newval, iRegPNoSp tmp) %{
+  enc_class aarch64_enc_cmpxchg_oop_shenandoah(memory mem, iRegP oldval, iRegP newval, iRegPNoSp tmp, iRegINoSp res) %{
     MacroAssembler _masm(&cbuf);
     guarantee($mem$$index == -1 && $mem$$disp == 0, "impossible encoding");
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ false, /*release*/ true, /*weak*/ false, /*encode*/ false, noreg, noreg);
+                                                   /*acquire*/ false, /*release*/ true, /*weak*/ false, /*is_cae*/ false, $res$$Register);
   %}
 
-  enc_class aarch64_enc_cmpxchg_acq_oop_shenandoah(memory mem, iRegP oldval, iRegP newval, iRegPNoSp tmp) %{
+  enc_class aarch64_enc_cmpxchg_acq_oop_shenandoah(memory mem, iRegP oldval, iRegP newval, iRegPNoSp tmp, iRegINoSp res) %{
     MacroAssembler _masm(&cbuf);
     guarantee($mem$$index == -1 && $mem$$disp == 0, "impossible encoding");
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ true, /*release*/ true, /*weak*/ false, /*encode*/ false, noreg, noreg);
+                                                   /*acquire*/ true, /*release*/ true, /*weak*/ false, /*is_cae*/ false, $res$$Register);
   %}
 %}
 
@@ -66,11 +66,9 @@
 
   format %{
     "cmpxchg_shenandoah $mem, $oldval, $newval\t# (ptr) if $mem == $oldval then $mem <-- $newval with temp $tmp"
-    "cset $res, EQ\t# $res <-- (EQ ? 1 : 0)"
   %}
 
-  ins_encode(aarch64_enc_cmpxchg_oop_shenandoah(mem, oldval, newval, tmp),
-             aarch64_enc_cset_eq(res));
+  ins_encode(aarch64_enc_cmpxchg_oop_shenandoah(mem, oldval, newval, tmp, res));
 
   ins_pipe(pipe_slow);
 %}
@@ -84,14 +82,12 @@
 
   format %{
     "cmpxchgw_shenandoah $mem, $oldval, $newval\t# (ptr) if $mem == $oldval then $mem <-- $newval with temp $tmp"
-    "cset $res, EQ\t# $res <-- (EQ ? 1 : 0)"
   %}
 
   ins_encode %{
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
-    ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register, /*acquire*/ false, /*release*/ true, /*weak*/ false, /*encode*/ false, noreg, noreg);
-    __ cset($res$$Register, Assembler::EQ);
+    ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register, /*acquire*/ false, /*release*/ true, /*weak*/ false, /*is_cae*/ false, $res$$Register);
   %}
 
   ins_pipe(pipe_slow);
@@ -107,11 +103,9 @@
 
   format %{
     "cmpxchg_acq_shenandoah_oop $mem, $oldval, $newval\t# (ptr) if $mem == $oldval then $mem <-- $newval with temp $tmp"
-    "cset $res, EQ\t# $res <-- (EQ ? 1 : 0)"
   %}
 
-  ins_encode(aarch64_enc_cmpxchg_acq_oop_shenandoah(mem, oldval, newval, tmp),
-             aarch64_enc_cset_eq(res));
+  ins_encode(aarch64_enc_cmpxchg_acq_oop_shenandoah(mem, oldval, newval, tmp, res));
 
   ins_pipe(pipe_slow);
 %}
@@ -126,14 +120,12 @@
 
  format %{
     "cmpxchgw_acq_shenandoah_narrow_oop $mem, $oldval, $newval\t# (ptr) if $mem == $oldval then $mem <-- $newval with temp $tmp"
-    "cset $res, EQ\t# $res <-- (EQ ? 1 : 0)"
  %}
 
   ins_encode %{
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
-    ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register, /*acquire*/ true, /*release*/ true, /*weak*/ false, /*encode*/ false, noreg, noreg);
-    __ cset($res$$Register, Assembler::EQ);
+    ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register, /*acquire*/ true, /*release*/ true, /*weak*/ false, /*is_cae*/ false, $res$$Register);
   %}
 
   ins_pipe(pipe_slow);
@@ -150,7 +142,7 @@
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ false, /*release*/ true, /*weak*/ false, /* encode*/ false, noreg, noreg, rscratch2, $res$$Register);
+                                                   /*acquire*/ false, /*release*/ true, /*weak*/ false, /*is_cae*/ true, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
@@ -166,7 +158,7 @@
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ false, /*release*/ true, /*weak*/ false, /*encode*/ false, noreg, noreg, rscratch2, $res$$Register);
+                                                   /*acquire*/ false, /*release*/ true, /*weak*/ false, /*is_cae*/ true, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
@@ -183,7 +175,7 @@
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ true, /*release*/ true, /*weak*/ false, /* encode*/ false, noreg, noreg, rscratch2, $res$$Register);
+                                                   /*acquire*/ true, /*release*/ true, /*weak*/ false, /*is_cae*/ true, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
@@ -200,7 +192,7 @@
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ true, /*release*/ true, /*weak*/ false, /*encode*/ false, noreg, noreg, rscratch2, $res$$Register);
+                                                   /*acquire*/ true, /*release*/ true, /*weak*/ false, /*is_cae*/ true, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
@@ -217,8 +209,7 @@
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ false, /*release*/ true, /*weak*/ true, /*encode*/ false, noreg, noreg);
-    __ csetw($res$$Register, Assembler::EQ);
+                                                   /*acquire*/ false, /*release*/ true, /*weak*/ true, /*is_cae*/ false, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
@@ -229,14 +220,12 @@
   effect(TEMP tmp, KILL cr);
   format %{
     "cmpxchg_shenandoah $res = $mem, $oldval, $newval\t# (ptr, weak) if $mem == $oldval then $mem <-- $newval"
-    "csetw $res, EQ\t# $res <-- (EQ ? 1 : 0)"
   %}
   ins_encode %{
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ false, /*release*/ true, /*weak*/ true, /*encode*/ false, noreg, noreg);
-    __ csetw($res$$Register, Assembler::EQ);
+                                                   /*acquire*/ false, /*release*/ true, /*weak*/ true, /*is_cae*/ false, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
@@ -254,8 +243,7 @@
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ true, /*release*/ true, /*weak*/ true, /*encode*/ false, noreg, noreg);
-    __ csetw($res$$Register, Assembler::EQ);
+                                                   /*acquire*/ true, /*release*/ true, /*weak*/ true, /*is_cae*/ false, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
@@ -273,9 +261,7 @@
     Register tmp = $tmp$$Register;
     __ mov(tmp, $oldval$$Register); // Must not clobber oldval.
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm, $mem$$Register, tmp, $newval$$Register,
-                                                   /*acquire*/ true, /*release*/ true, /*weak*/ true, /*encode*/ false, noreg, noreg);
-    __ csetw($res$$Register, Assembler::EQ);
+                                                   /*acquire*/ true, /*release*/ true, /*weak*/ true, /*is_cae*/ false, $res$$Register);
   %}
   ins_pipe(pipe_slow);
 %}
-
--- a/src/hotspot/cpu/arm/frame_arm.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/arm/frame_arm.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -120,17 +120,11 @@
 // frame.
 inline intptr_t* frame::id(void) const { return unextended_sp(); }
 
-// Relationals on frames based
-// Return true if the frame is younger (more recent activation) than the frame represented by id
-inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
-                                                    return this->id() < id ; }
-
 // Return true if the frame is older (less recent activation) than the frame represented by id
 inline bool frame::is_older(intptr_t* id) const   { assert(this->id() != NULL && id != NULL, "NULL frame id");
                                                     return this->id() > id ; }
 
 
-
 inline intptr_t* frame::link() const              { return (intptr_t*) *(intptr_t **)addr_at(link_offset); }
 
 inline intptr_t* frame::unextended_sp() const     { return _unextended_sp; }
--- a/src/hotspot/cpu/ppc/macroAssembler_ppc.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/ppc/macroAssembler_ppc.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -3859,31 +3859,20 @@
 // Due to register shortage, setting tc3 may overwrite table. With the return offset
 // at hand, the original table address can be easily reconstructed.
 int MacroAssembler::crc32_table_columns(Register table, Register tc0, Register tc1, Register tc2, Register tc3) {
-
+  assert(!VM_Version::has_vpmsumb(), "Vector version should be used instead!");
+
+  // Point to 4 byte folding tables (byte-reversed version for Big Endian)
+  // Layout: See StubRoutines::generate_crc_constants.
 #ifdef VM_LITTLE_ENDIAN
-  // This is what we implement (the DOLIT4 part):
-  // ========================================================================= */
-  // #define DOLIT4 c ^= *buf4++; \
-  //         c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
-  //             crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
-  // #define DOLIT32 DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4
-  // ========================================================================= */
-  const int ix0 = 3*(4*CRC32_COLUMN_SIZE);
-  const int ix1 = 2*(4*CRC32_COLUMN_SIZE);
-  const int ix2 = 1*(4*CRC32_COLUMN_SIZE);
-  const int ix3 = 0*(4*CRC32_COLUMN_SIZE);
+  const int ix0 = 3 * CRC32_TABLE_SIZE;
+  const int ix1 = 2 * CRC32_TABLE_SIZE;
+  const int ix2 = 1 * CRC32_TABLE_SIZE;
+  const int ix3 = 0 * CRC32_TABLE_SIZE;
 #else
-  // This is what we implement (the DOBIG4 part):
-  // =========================================================================
-  // #define DOBIG4 c ^= *++buf4; \
-  //         c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
-  //             crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]
-  // #define DOBIG32 DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4
-  // =========================================================================
-  const int ix0 = 4*(4*CRC32_COLUMN_SIZE);
-  const int ix1 = 5*(4*CRC32_COLUMN_SIZE);
-  const int ix2 = 6*(4*CRC32_COLUMN_SIZE);
-  const int ix3 = 7*(4*CRC32_COLUMN_SIZE);
+  const int ix0 = 1 * CRC32_TABLE_SIZE;
+  const int ix1 = 2 * CRC32_TABLE_SIZE;
+  const int ix2 = 3 * CRC32_TABLE_SIZE;
+  const int ix3 = 4 * CRC32_TABLE_SIZE;
 #endif
   assert_different_registers(table, tc0, tc1, tc2);
   assert(table == tc3, "must be!");
@@ -3898,7 +3887,7 @@
 
 /**
  * uint32_t crc;
- * timesXtoThe32[crc & 0xFF] ^ (crc >> 8);
+ * table[crc & 0xFF] ^ (crc >> 8);
  */
 void MacroAssembler::fold_byte_crc32(Register crc, Register val, Register table, Register tmp) {
   assert_different_registers(crc, table, tmp);
@@ -3917,14 +3906,6 @@
 }
 
 /**
- * uint32_t crc;
- * timesXtoThe32[crc & 0xFF] ^ (crc >> 8);
- */
-void MacroAssembler::fold_8bit_crc32(Register crc, Register table, Register tmp) {
-  fold_byte_crc32(crc, crc, table, tmp);
-}
-
-/**
  * Emits code to update CRC-32 with a byte value according to constants in table.
  *
  * @param [in,out]crc   Register containing the crc.
@@ -3975,9 +3956,7 @@
  * Implementation according to jdk/src/share/native/java/util/zip/zlib-1.2.8/crc32.c
  */
 // A note on the lookup table address(es):
-// The lookup table consists of two sets of four columns each.
-// The columns {0..3} are used for little-endian machines.
-// The columns {4..7} are used for big-endian machines.
+// The implementation uses 4 table columns (byte-reversed versions for Big Endian).
 // To save the effort of adding the column offset to the table address each time
 // a table element is looked up, it is possible to pass the pre-calculated
 // column addresses.
@@ -4112,47 +4091,16 @@
 }
 
 /**
- * @param crc   register containing existing CRC (32-bit)
- * @param buf   register pointing to input byte buffer (byte*)
- * @param len   register containing number of bytes
- * @param table register pointing to CRC table
- *
- * Uses R7_ARG5, R8_ARG6 as work registers.
- */
-void MacroAssembler::kernel_crc32_1byte(Register crc, Register buf, Register len, Register table,
-                                        Register t0,  Register t1,  Register t2,  Register t3,
-                                        bool invertCRC) {
-  assert_different_registers(crc, buf, len, table);
-
-  Register  data = t0;                   // Holds the current byte to be folded into crc.
-
-  BLOCK_COMMENT("kernel_crc32_1byte {");
-
-  if (invertCRC) {
-    nand(crc, crc, crc);                      // 1s complement of crc
-  }
-
-  // Process all bytes in a single-byte loop.
-  update_byteLoop_crc32(crc, buf, len, table, data, true);
-
-  if (invertCRC) {
-    nand(crc, crc, crc);                      // 1s complement of crc
-  }
-  BLOCK_COMMENT("} kernel_crc32_1byte");
-}
-
-/**
  * @param crc             register containing existing CRC (32-bit)
  * @param buf             register pointing to input byte buffer (byte*)
  * @param len             register containing number of bytes
- * @param table           register pointing to CRC table
- * @param constants       register pointing to CRC table for 128-bit aligned memory
- * @param t0-t5           temp registers
+ * @param constants       register pointing to precomputed constants
+ * @param t0-t6           temp registers
  */
-void MacroAssembler::kernel_crc32_vpmsum(Register crc, Register buf, Register len, Register table,
-                                         Register constants, Register t0, Register t1, Register t2,
-                                         Register t3, Register t4, Register t5, bool invertCRC) {
-  assert_different_registers(crc, buf, len, table);
+void MacroAssembler::kernel_crc32_vpmsum(Register crc, Register buf, Register len, Register constants,
+                                         Register t0, Register t1, Register t2, Register t3,
+                                         Register t4, Register t5, Register t6, bool invertCRC) {
+  assert_different_registers(crc, buf, len, constants);
 
   Label L_tail;
 
@@ -4177,14 +4125,16 @@
   blt(CCR0, L_tail); // len - prealign < threshold?
 
   subf(len, prealign, len);
-  update_byteLoop_crc32(crc, buf, prealign, table, t2, false);
+  update_byteLoop_crc32(crc, buf, prealign, constants, t2, false);
 
   // Calculate from first aligned address as far as possible.
-  kernel_crc32_vpmsum_aligned(crc, buf, len, constants, t0, t1, t2, t3, t4, t5);
+  addi(constants, constants, CRC32_TABLE_SIZE); // Point to vector constants.
+  kernel_crc32_vpmsum_aligned(crc, buf, len, constants, t0, t1, t2, t3, t4, t5, t6);
+  addi(constants, constants, -CRC32_TABLE_SIZE); // Point to table again.
 
   // Remaining bytes.
   BIND(L_tail);
-  update_byteLoop_crc32(crc, buf, len, table, t2, false);
+  update_byteLoop_crc32(crc, buf, len, constants, t2, false);
 
   if (invertCRC) {
     nand(crc, crc, crc);                      // 1s complement of crc
@@ -4198,10 +4148,10 @@
  * @param buf             register pointing to input byte buffer (byte*)
  * @param len             register containing number of bytes (will get updated to remaining bytes)
  * @param constants       register pointing to CRC table for 128-bit aligned memory
- * @param t0-t5           temp registers
+ * @param t0-t6           temp registers
  */
-void MacroAssembler::kernel_crc32_vpmsum_aligned(Register crc, Register buf, Register len,
-    Register constants, Register t0, Register t1, Register t2, Register t3, Register t4, Register t5) {
+void MacroAssembler::kernel_crc32_vpmsum_aligned(Register crc, Register buf, Register len, Register constants,
+    Register t0, Register t1, Register t2, Register t3, Register t4, Register t5, Register t6) {
 
   // Save non-volatile vector registers (frameless).
   Register offset = t1;
@@ -4217,7 +4167,6 @@
 #endif
   offsetInt -= 8; std(R14, offsetInt, R1_SP);
   offsetInt -= 8; std(R15, offsetInt, R1_SP);
-  offsetInt -= 8; std(R16, offsetInt, R1_SP);
 
   // Implementation uses an inner loop which uses between 256 and 16 * unroll_factor
   // bytes per iteration. The basic scheme is:
@@ -4235,10 +4184,10 @@
             inner_consts_size = (unroll_factor / unroll_factor2) * 16;
 
   // Support registers.
-  Register offs[] = { noreg, t0, t1, t2, t3, t4, t5, crc /* will live in VCRC */ };
+  Register offs[] = { noreg, t0, t1, t2, t3, t4, t5, t6 };
   Register num_bytes = R14,
            loop_count = R15,
-           cur_const = R16;
+           cur_const = crc; // will live in VCRC
   // Constant array for outer loop: unroll_factor2 - 1 registers,
   // Constant array for inner loop: unroll_factor / unroll_factor2 registers.
   VectorRegister consts0[] = { VR16, VR17, VR18, VR19, VR20, VR21, VR22 },
@@ -4470,7 +4419,6 @@
 #endif
   offsetInt -= 8;  ld(R14, offsetInt, R1_SP);
   offsetInt -= 8;  ld(R15, offsetInt, R1_SP);
-  offsetInt -= 8;  ld(R16, offsetInt, R1_SP);
 }
 
 void MacroAssembler::crc32(Register crc, Register buf, Register len, Register t0, Register t1, Register t2,
@@ -4479,30 +4427,12 @@
                                      : StubRoutines::crc_table_addr()   , R0);
 
   if (VM_Version::has_vpmsumb()) {
-    load_const_optimized(t1, is_crc32c ? StubRoutines::ppc64::crc32c_constants()
-                                       : StubRoutines::ppc64::crc_constants()   , R0);
     kernel_crc32_vpmsum(crc, buf, len, t0, t1, t2, t3, t4, t5, t6, t7, !is_crc32c);
   } else {
     kernel_crc32_1word(crc, buf, len, t0, t1, t2, t3, t4, t5, t6, t7, t0, !is_crc32c);
   }
 }
 
-void MacroAssembler::kernel_crc32_singleByte(Register crc, Register buf, Register len, Register table, Register tmp, bool invertCRC) {
-  assert_different_registers(crc, buf, /* len,  not used!! */ table, tmp);
-
-  BLOCK_COMMENT("kernel_crc32_singleByte:");
-  if (invertCRC) {
-    nand(crc, crc, crc);                // 1s complement of crc
-  }
-
-  lbz(tmp, 0, buf);                     // Byte from buffer, zero-extended.
-  update_byte_crc32(crc, tmp, table);
-
-  if (invertCRC) {
-    nand(crc, crc, crc);                // 1s complement of crc
-  }
-}
-
 void MacroAssembler::kernel_crc32_singleByteReg(Register crc, Register val, Register table, bool invertCRC) {
   assert_different_registers(crc, val, table);
 
--- a/src/hotspot/cpu/ppc/macroAssembler_ppc.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/ppc/macroAssembler_ppc.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -828,7 +828,6 @@
   void load_reverse_32(Register dst, Register src);
   int  crc32_table_columns(Register table, Register tc0, Register tc1, Register tc2, Register tc3);
   void fold_byte_crc32(Register crc, Register val, Register table, Register tmp);
-  void fold_8bit_crc32(Register crc, Register table, Register tmp);
   void update_byte_crc32(Register crc, Register val, Register table);
   void update_byteLoop_crc32(Register crc, Register buf, Register len, Register table,
                              Register data, bool loopAlignment);
@@ -839,20 +838,16 @@
                           Register t0,  Register t1,  Register t2,  Register t3,
                           Register tc0, Register tc1, Register tc2, Register tc3,
                           bool invertCRC);
-  void kernel_crc32_1byte(Register crc, Register buf, Register len, Register table,
-                          Register t0,  Register t1,  Register t2,  Register t3,
-                          bool invertCRC);
-  void kernel_crc32_vpmsum(Register crc, Register buf, Register len, Register table, Register constants,
-                          Register t0, Register t1, Register t2, Register t3, Register t4, Register t5,
-                          bool invertCRC);
+  void kernel_crc32_vpmsum(Register crc, Register buf, Register len, Register constants,
+                           Register t0, Register t1, Register t2, Register t3, Register t4,
+                           Register t5, Register t6, bool invertCRC);
   void kernel_crc32_vpmsum_aligned(Register crc, Register buf, Register len, Register constants,
-                                   Register t0, Register t1, Register t2, Register t3, Register t4, Register t5);
+                                   Register t0, Register t1, Register t2, Register t3, Register t4,
+                                   Register t5, Register t6);
   // Version which internally decides what to use.
   void crc32(Register crc, Register buf, Register len, Register t0, Register t1, Register t2,
              Register t3, Register t4, Register t5, Register t6, Register t7, bool is_crc32c);
 
-  void kernel_crc32_singleByte(Register crc, Register buf, Register len, Register table, Register tmp,
-                               bool invertCRC);
   void kernel_crc32_singleByteReg(Register crc, Register val, Register table,
                                   bool invertCRC);
 
--- a/src/hotspot/cpu/ppc/stubGenerator_ppc.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/ppc/stubGenerator_ppc.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -3496,19 +3496,13 @@
 
     // CRC32 Intrinsics.
     if (UseCRC32Intrinsics) {
-      StubRoutines::_crc_table_adr = (address)StubRoutines::ppc64::_crc_table;
-      if (VM_Version::has_vpmsumb()) {
-        StubRoutines::ppc64::_crc_constants = StubRoutines::ppc64::generate_crc_constants(REVERSE_CRC32_POLY);
-      }
+      StubRoutines::_crc_table_adr = StubRoutines::generate_crc_constants(REVERSE_CRC32_POLY);
       StubRoutines::_updateBytesCRC32 = generate_CRC32_updateBytes(false);
     }
 
     // CRC32C Intrinsics.
     if (UseCRC32CIntrinsics) {
-      StubRoutines::_crc32c_table_addr = (address)StubRoutines::ppc64::_crc32c_table;
-      if (VM_Version::has_vpmsumb()) {
-        StubRoutines::ppc64::_crc32c_constants = StubRoutines::ppc64::generate_crc_constants(REVERSE_CRC32C_POLY);
-      }
+      StubRoutines::_crc32c_table_addr = StubRoutines::generate_crc_constants(REVERSE_CRC32C_POLY);
       StubRoutines::_updateBytesCRC32C = generate_CRC32_updateBytes(true);
     }
   }
--- a/src/hotspot/cpu/ppc/stubRoutines_ppc.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/ppc/stubRoutines_ppc.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -38,14 +38,7 @@
 };
 
 // CRC32 Intrinsics.
-#define CRC32_COLUMN_SIZE 256
-#define CRC32_BYFOUR
-#ifdef  CRC32_BYFOUR
-  #define CRC32_TABLES 8
-#else
-  #define CRC32_TABLES 1
-#endif
-
+#define CRC32_TABLE_SIZE (4 * 256)
 #define REVERSE_CRC32_POLY  0xEDB88320
 #define REVERSE_CRC32C_POLY 0x82F63B78
 #define INVERSE_REVERSE_CRC32_POLY  0x1aab14226ull
@@ -53,24 +46,6 @@
 #define CRC32_UNROLL_FACTOR 2048
 #define CRC32_UNROLL_FACTOR2 8
 
-
-class ppc64 {
- friend class StubGenerator;
-
- private:
-
-  // CRC32 Intrinsics.
-  static juint _crc_table[CRC32_TABLES][CRC32_COLUMN_SIZE];
-  static juint _crc32c_table[CRC32_TABLES][CRC32_COLUMN_SIZE];
-  static juint *_crc_constants;
-  static juint *_crc32c_constants;
-
- public:
-
-  // CRC32 Intrinsics.
-  static address crc_constants() { return (address)_crc_constants; }
-  static address crc32c_constants() { return (address)_crc32c_constants; }
-  static juint* generate_crc_constants(juint reverse_poly);
-};
+static address generate_crc_constants(juint reverse_poly);
 
 #endif // CPU_PPC_STUBROUTINES_PPC_HPP
--- a/src/hotspot/cpu/ppc/stubRoutines_ppc_64.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/ppc/stubRoutines_ppc_64.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -26,6 +26,7 @@
 #include "precompiled.hpp"
 #include "asm/macroAssembler.inline.hpp"
 #include "runtime/stubRoutines.hpp"
+#include "runtime/vm_version.hpp"
 
 // Implementation of the platform-specific part of StubRoutines - for
 // a description of how to extend it, see the stubRoutines.hpp file.
@@ -34,6 +35,14 @@
 #define __ masm->
 
 // CRC constant compute functions
+static juint fold_byte(juint w, juint reverse_poly) {
+  for (int i = 0; i < 8; i++) {
+    int poly_if_odd = (-(w & 1)) & reverse_poly;
+    w = (w >> 1) ^ poly_if_odd;
+  }
+  return w;
+}
+
 static juint fold_word(juint w, juint reverse_poly) {
   for (int i = 0; i < 32; i++) {
     int poly_if_odd = (-(w & 1)) & reverse_poly;
@@ -64,11 +73,71 @@
   return div;
 }
 
+#ifndef VM_LITTLE_ENDIAN
+static void reverse_bytes(juint &w) {
+  w = ((w >> 24) & 0xFF) | (((w >> 16) & 0xFF) << 8) | (((w >> 8) & 0xFF) << 16) | ((w & 0xFF) << 24);
+}
+#endif
+
 // Constants to fold n words as needed by macroAssembler.
-juint* StubRoutines::ppc64::generate_crc_constants(juint reverse_poly) {
-  juint* ptr = (juint*) malloc(sizeof(juint) * 4 * (CRC32_UNROLL_FACTOR2 + CRC32_UNROLL_FACTOR / CRC32_UNROLL_FACTOR2));
-  guarantee(((intptr_t)ptr & 0xF) == 0, "16-byte alignment needed");
-  guarantee(ptr != NULL, "allocation error of a crc table");
+address StubRoutines::generate_crc_constants(juint reverse_poly) {
+  // Layout of constant table:
+  // <= Power7 Little Endian: 4 tables for byte folding
+  // <= Power7 Big Endian: 1 table for single byte folding + 4 tables for multi-byte folding
+  // >= Power8: 1 table for single byte folding + constants for fast vector implementation
+  const bool use_vector = VM_Version::has_vpmsumb();
+  const int vector_size = 16 * (CRC32_UNROLL_FACTOR2 + CRC32_UNROLL_FACTOR / CRC32_UNROLL_FACTOR2);
+
+  const int size = use_vector ? CRC32_TABLE_SIZE + vector_size : (4 BIG_ENDIAN_ONLY(+1)) * CRC32_TABLE_SIZE;
+  const address consts = (address)malloc(size);
+  if (consts == NULL) {
+    vm_exit_out_of_memory(size, OOM_MALLOC_ERROR, "CRC constants: no enough space");
+  }
+  juint* ptr = (juint*)consts;
+
+  // Simple table used for single byte folding
+  LITTLE_ENDIAN_ONLY(if (use_vector)) {
+    for (int i = 0; i < 256; ++i) {
+      ptr[i] = fold_byte(i, reverse_poly);
+    }
+  }
+
+  if (!use_vector) {
+    BIG_ENDIAN_ONLY(ptr = (juint*)(consts + CRC32_TABLE_SIZE);)
+    // <= Power7: 4 tables
+    for (int i = 0; i < 256; ++i) {
+      juint a = fold_byte(i, reverse_poly),
+            b = fold_byte(a, reverse_poly),
+            c = fold_byte(b, reverse_poly),
+            d = fold_byte(c, reverse_poly);
+#ifndef VM_LITTLE_ENDIAN
+      reverse_bytes(a);
+      reverse_bytes(b);
+      reverse_bytes(c);
+      reverse_bytes(d);
+#endif
+      ptr[i         ] = a;
+      ptr[i +    256] = b;
+      ptr[i + 2* 256] = c;
+      ptr[i + 3* 256] = d;
+    }
+#if 0
+    for (int i = 0; i < 4; ++i) {
+      tty->print_cr("table %d:", i);
+      for (int j = 0; j < 32; ++j) {
+        for (int k = 0; k < 8; ++k) {
+          tty->print("%08x ", ptr[i*256 + j*8 + k]);
+        }
+        tty->cr();
+      }
+    }
+#endif
+    return consts;
+  }
+
+  // >= Power8: vector constants
+  juint* ptr1 = (juint*)(consts + CRC32_TABLE_SIZE);
+  guarantee(((intptr_t)ptr1 & 0xF) == 0, "16-byte alignment needed");
 
   // Generate constants for outer loop
   juint v0, v1, v2, v3 = 1;
@@ -78,20 +147,20 @@
     v2 = fold_word(v1, reverse_poly);
     v3 = fold_word(v2, reverse_poly);
 #ifdef VM_LITTLE_ENDIAN
-    ptr[4*i  ] = v3;
-    ptr[4*i+1] = v2;
-    ptr[4*i+2] = v3;
-    ptr[4*i+3] = v2;
+    ptr1[4*i  ] = v3;
+    ptr1[4*i+1] = v2;
+    ptr1[4*i+2] = v3;
+    ptr1[4*i+3] = v2;
 #else
-    ptr[4*i  ] = v2;
-    ptr[4*i+1] = v3;
-    ptr[4*i+2] = v2;
-    ptr[4*i+3] = v3;
+    ptr1[4*i  ] = v2;
+    ptr1[4*i+1] = v3;
+    ptr1[4*i+2] = v2;
+    ptr1[4*i+3] = v3;
 #endif
   }
 
   // Generate constants for inner loop
-  juint* ptr2 = ptr + 4 * (CRC32_UNROLL_FACTOR2 - 1);
+  juint* ptr2 = ptr1 + 4 * (CRC32_UNROLL_FACTOR2 - 1);
   v3 = 1; // Restart from scratch.
   for (int i = 0; i < CRC32_UNROLL_FACTOR; ++i) {
     v0 = fold_word(v3, reverse_poly);
@@ -139,600 +208,5 @@
 
   //printf("inv poly: 0x%016llx\n", (long long unsigned int)inverse_long_poly);
 
-  return ptr;
+  return consts;
 }
-
-// CRC32 Intrinsics.
-/**
- *  crc_table[] from jdk/src/share/native/java/util/zip/zlib-1.2.8/crc32.h
- */
-juint StubRoutines::ppc64::_crc_table[CRC32_TABLES][CRC32_COLUMN_SIZE] = {
-    /* polyBits = 7976584769 0x00000001db710641L, shifted = 0xedb88320 */
-    /* CRC32 table for single bytes, auto-generated.  DO NOT MODIFY!  */
-    /* CRC32 table 0 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x77073096U, 0xee0e612cU, 0x990951baU, 0x076dc419U, 0x706af48fU, 0xe963a535U, 0x9e6495a3U
-      /* 8 */  , 0x0edb8832U, 0x79dcb8a4U, 0xe0d5e91eU, 0x97d2d988U, 0x09b64c2bU, 0x7eb17cbdU, 0xe7b82d07U, 0x90bf1d91U
-      /* 16 */  , 0x1db71064U, 0x6ab020f2U, 0xf3b97148U, 0x84be41deU, 0x1adad47dU, 0x6ddde4ebU, 0xf4d4b551U, 0x83d385c7U
-      /* 24 */  , 0x136c9856U, 0x646ba8c0U, 0xfd62f97aU, 0x8a65c9ecU, 0x14015c4fU, 0x63066cd9U, 0xfa0f3d63U, 0x8d080df5U
-      /* 32 */  , 0x3b6e20c8U, 0x4c69105eU, 0xd56041e4U, 0xa2677172U, 0x3c03e4d1U, 0x4b04d447U, 0xd20d85fdU, 0xa50ab56bU
-      /* 40 */  , 0x35b5a8faU, 0x42b2986cU, 0xdbbbc9d6U, 0xacbcf940U, 0x32d86ce3U, 0x45df5c75U, 0xdcd60dcfU, 0xabd13d59U
-      /* 48 */  , 0x26d930acU, 0x51de003aU, 0xc8d75180U, 0xbfd06116U, 0x21b4f4b5U, 0x56b3c423U, 0xcfba9599U, 0xb8bda50fU
-      /* 56 */  , 0x2802b89eU, 0x5f058808U, 0xc60cd9b2U, 0xb10be924U, 0x2f6f7c87U, 0x58684c11U, 0xc1611dabU, 0xb6662d3dU
-      /* 64 */  , 0x76dc4190U, 0x01db7106U, 0x98d220bcU, 0xefd5102aU, 0x71b18589U, 0x06b6b51fU, 0x9fbfe4a5U, 0xe8b8d433U
-      /* 72 */  , 0x7807c9a2U, 0x0f00f934U, 0x9609a88eU, 0xe10e9818U, 0x7f6a0dbbU, 0x086d3d2dU, 0x91646c97U, 0xe6635c01U
-      /* 80 */  , 0x6b6b51f4U, 0x1c6c6162U, 0x856530d8U, 0xf262004eU, 0x6c0695edU, 0x1b01a57bU, 0x8208f4c1U, 0xf50fc457U
-      /* 88 */  , 0x65b0d9c6U, 0x12b7e950U, 0x8bbeb8eaU, 0xfcb9887cU, 0x62dd1ddfU, 0x15da2d49U, 0x8cd37cf3U, 0xfbd44c65U
-      /* 96 */  , 0x4db26158U, 0x3ab551ceU, 0xa3bc0074U, 0xd4bb30e2U, 0x4adfa541U, 0x3dd895d7U, 0xa4d1c46dU, 0xd3d6f4fbU
-      /* 104 */  , 0x4369e96aU, 0x346ed9fcU, 0xad678846U, 0xda60b8d0U, 0x44042d73U, 0x33031de5U, 0xaa0a4c5fU, 0xdd0d7cc9U
-      /* 112 */  , 0x5005713cU, 0x270241aaU, 0xbe0b1010U, 0xc90c2086U, 0x5768b525U, 0x206f85b3U, 0xb966d409U, 0xce61e49fU
-      /* 120 */  , 0x5edef90eU, 0x29d9c998U, 0xb0d09822U, 0xc7d7a8b4U, 0x59b33d17U, 0x2eb40d81U, 0xb7bd5c3bU, 0xc0ba6cadU
-      /* 128 */  , 0xedb88320U, 0x9abfb3b6U, 0x03b6e20cU, 0x74b1d29aU, 0xead54739U, 0x9dd277afU, 0x04db2615U, 0x73dc1683U
-      /* 136 */  , 0xe3630b12U, 0x94643b84U, 0x0d6d6a3eU, 0x7a6a5aa8U, 0xe40ecf0bU, 0x9309ff9dU, 0x0a00ae27U, 0x7d079eb1U
-      /* 144 */  , 0xf00f9344U, 0x8708a3d2U, 0x1e01f268U, 0x6906c2feU, 0xf762575dU, 0x806567cbU, 0x196c3671U, 0x6e6b06e7U
-      /* 152 */  , 0xfed41b76U, 0x89d32be0U, 0x10da7a5aU, 0x67dd4accU, 0xf9b9df6fU, 0x8ebeeff9U, 0x17b7be43U, 0x60b08ed5U
-      /* 160 */  , 0xd6d6a3e8U, 0xa1d1937eU, 0x38d8c2c4U, 0x4fdff252U, 0xd1bb67f1U, 0xa6bc5767U, 0x3fb506ddU, 0x48b2364bU
-      /* 168 */  , 0xd80d2bdaU, 0xaf0a1b4cU, 0x36034af6U, 0x41047a60U, 0xdf60efc3U, 0xa867df55U, 0x316e8eefU, 0x4669be79U
-      /* 176 */  , 0xcb61b38cU, 0xbc66831aU, 0x256fd2a0U, 0x5268e236U, 0xcc0c7795U, 0xbb0b4703U, 0x220216b9U, 0x5505262fU
-      /* 184 */  , 0xc5ba3bbeU, 0xb2bd0b28U, 0x2bb45a92U, 0x5cb36a04U, 0xc2d7ffa7U, 0xb5d0cf31U, 0x2cd99e8bU, 0x5bdeae1dU
-      /* 192 */  , 0x9b64c2b0U, 0xec63f226U, 0x756aa39cU, 0x026d930aU, 0x9c0906a9U, 0xeb0e363fU, 0x72076785U, 0x05005713U
-      /* 200 */  , 0x95bf4a82U, 0xe2b87a14U, 0x7bb12baeU, 0x0cb61b38U, 0x92d28e9bU, 0xe5d5be0dU, 0x7cdcefb7U, 0x0bdbdf21U
-      /* 208 */  , 0x86d3d2d4U, 0xf1d4e242U, 0x68ddb3f8U, 0x1fda836eU, 0x81be16cdU, 0xf6b9265bU, 0x6fb077e1U, 0x18b74777U
-      /* 216 */  , 0x88085ae6U, 0xff0f6a70U, 0x66063bcaU, 0x11010b5cU, 0x8f659effU, 0xf862ae69U, 0x616bffd3U, 0x166ccf45U
-      /* 224 */  , 0xa00ae278U, 0xd70dd2eeU, 0x4e048354U, 0x3903b3c2U, 0xa7672661U, 0xd06016f7U, 0x4969474dU, 0x3e6e77dbU
-      /* 232 */  , 0xaed16a4aU, 0xd9d65adcU, 0x40df0b66U, 0x37d83bf0U, 0xa9bcae53U, 0xdebb9ec5U, 0x47b2cf7fU, 0x30b5ffe9U
-      /* 240 */  , 0xbdbdf21cU, 0xcabac28aU, 0x53b39330U, 0x24b4a3a6U, 0xbad03605U, 0xcdd70693U, 0x54de5729U, 0x23d967bfU
-      /* 248 */  , 0xb3667a2eU, 0xc4614ab8U, 0x5d681b02U, 0x2a6f2b94U, 0xb40bbe37U, 0xc30c8ea1U, 0x5a05df1bU, 0x2d02ef8dU
-    }
-  #ifdef  CRC32_BYFOUR
-    ,
-    /* CRC32 table 1 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x191b3141U, 0x32366282U, 0x2b2d53c3U, 0x646cc504U, 0x7d77f445U, 0x565aa786U, 0x4f4196c7U
-      /* 8 */  , 0xc8d98a08U, 0xd1c2bb49U, 0xfaefe88aU, 0xe3f4d9cbU, 0xacb54f0cU, 0xb5ae7e4dU, 0x9e832d8eU, 0x87981ccfU
-      /* 16 */  , 0x4ac21251U, 0x53d92310U, 0x78f470d3U, 0x61ef4192U, 0x2eaed755U, 0x37b5e614U, 0x1c98b5d7U, 0x05838496U
-      /* 24 */  , 0x821b9859U, 0x9b00a918U, 0xb02dfadbU, 0xa936cb9aU, 0xe6775d5dU, 0xff6c6c1cU, 0xd4413fdfU, 0xcd5a0e9eU
-      /* 32 */  , 0x958424a2U, 0x8c9f15e3U, 0xa7b24620U, 0xbea97761U, 0xf1e8e1a6U, 0xe8f3d0e7U, 0xc3de8324U, 0xdac5b265U
-      /* 40 */  , 0x5d5daeaaU, 0x44469febU, 0x6f6bcc28U, 0x7670fd69U, 0x39316baeU, 0x202a5aefU, 0x0b07092cU, 0x121c386dU
-      /* 48 */  , 0xdf4636f3U, 0xc65d07b2U, 0xed705471U, 0xf46b6530U, 0xbb2af3f7U, 0xa231c2b6U, 0x891c9175U, 0x9007a034U
-      /* 56 */  , 0x179fbcfbU, 0x0e848dbaU, 0x25a9de79U, 0x3cb2ef38U, 0x73f379ffU, 0x6ae848beU, 0x41c51b7dU, 0x58de2a3cU
-      /* 64 */  , 0xf0794f05U, 0xe9627e44U, 0xc24f2d87U, 0xdb541cc6U, 0x94158a01U, 0x8d0ebb40U, 0xa623e883U, 0xbf38d9c2U
-      /* 72 */  , 0x38a0c50dU, 0x21bbf44cU, 0x0a96a78fU, 0x138d96ceU, 0x5ccc0009U, 0x45d73148U, 0x6efa628bU, 0x77e153caU
-      /* 80 */  , 0xbabb5d54U, 0xa3a06c15U, 0x888d3fd6U, 0x91960e97U, 0xded79850U, 0xc7cca911U, 0xece1fad2U, 0xf5facb93U
-      /* 88 */  , 0x7262d75cU, 0x6b79e61dU, 0x4054b5deU, 0x594f849fU, 0x160e1258U, 0x0f152319U, 0x243870daU, 0x3d23419bU
-      /* 96 */  , 0x65fd6ba7U, 0x7ce65ae6U, 0x57cb0925U, 0x4ed03864U, 0x0191aea3U, 0x188a9fe2U, 0x33a7cc21U, 0x2abcfd60U
-      /* 104 */  , 0xad24e1afU, 0xb43fd0eeU, 0x9f12832dU, 0x8609b26cU, 0xc94824abU, 0xd05315eaU, 0xfb7e4629U, 0xe2657768U
-      /* 112 */  , 0x2f3f79f6U, 0x362448b7U, 0x1d091b74U, 0x04122a35U, 0x4b53bcf2U, 0x52488db3U, 0x7965de70U, 0x607eef31U
-      /* 120 */  , 0xe7e6f3feU, 0xfefdc2bfU, 0xd5d0917cU, 0xcccba03dU, 0x838a36faU, 0x9a9107bbU, 0xb1bc5478U, 0xa8a76539U
-      /* 128 */  , 0x3b83984bU, 0x2298a90aU, 0x09b5fac9U, 0x10aecb88U, 0x5fef5d4fU, 0x46f46c0eU, 0x6dd93fcdU, 0x74c20e8cU
-      /* 136 */  , 0xf35a1243U, 0xea412302U, 0xc16c70c1U, 0xd8774180U, 0x9736d747U, 0x8e2de606U, 0xa500b5c5U, 0xbc1b8484U
-      /* 144 */  , 0x71418a1aU, 0x685abb5bU, 0x4377e898U, 0x5a6cd9d9U, 0x152d4f1eU, 0x0c367e5fU, 0x271b2d9cU, 0x3e001cddU
-      /* 152 */  , 0xb9980012U, 0xa0833153U, 0x8bae6290U, 0x92b553d1U, 0xddf4c516U, 0xc4eff457U, 0xefc2a794U, 0xf6d996d5U
-      /* 160 */  , 0xae07bce9U, 0xb71c8da8U, 0x9c31de6bU, 0x852aef2aU, 0xca6b79edU, 0xd37048acU, 0xf85d1b6fU, 0xe1462a2eU
-      /* 168 */  , 0x66de36e1U, 0x7fc507a0U, 0x54e85463U, 0x4df36522U, 0x02b2f3e5U, 0x1ba9c2a4U, 0x30849167U, 0x299fa026U
-      /* 176 */  , 0xe4c5aeb8U, 0xfdde9ff9U, 0xd6f3cc3aU, 0xcfe8fd7bU, 0x80a96bbcU, 0x99b25afdU, 0xb29f093eU, 0xab84387fU
-      /* 184 */  , 0x2c1c24b0U, 0x350715f1U, 0x1e2a4632U, 0x07317773U, 0x4870e1b4U, 0x516bd0f5U, 0x7a468336U, 0x635db277U
-      /* 192 */  , 0xcbfad74eU, 0xd2e1e60fU, 0xf9ccb5ccU, 0xe0d7848dU, 0xaf96124aU, 0xb68d230bU, 0x9da070c8U, 0x84bb4189U
-      /* 200 */  , 0x03235d46U, 0x1a386c07U, 0x31153fc4U, 0x280e0e85U, 0x674f9842U, 0x7e54a903U, 0x5579fac0U, 0x4c62cb81U
-      /* 208 */  , 0x8138c51fU, 0x9823f45eU, 0xb30ea79dU, 0xaa1596dcU, 0xe554001bU, 0xfc4f315aU, 0xd7626299U, 0xce7953d8U
-      /* 216 */  , 0x49e14f17U, 0x50fa7e56U, 0x7bd72d95U, 0x62cc1cd4U, 0x2d8d8a13U, 0x3496bb52U, 0x1fbbe891U, 0x06a0d9d0U
-      /* 224 */  , 0x5e7ef3ecU, 0x4765c2adU, 0x6c48916eU, 0x7553a02fU, 0x3a1236e8U, 0x230907a9U, 0x0824546aU, 0x113f652bU
-      /* 232 */  , 0x96a779e4U, 0x8fbc48a5U, 0xa4911b66U, 0xbd8a2a27U, 0xf2cbbce0U, 0xebd08da1U, 0xc0fdde62U, 0xd9e6ef23U
-      /* 240 */  , 0x14bce1bdU, 0x0da7d0fcU, 0x268a833fU, 0x3f91b27eU, 0x70d024b9U, 0x69cb15f8U, 0x42e6463bU, 0x5bfd777aU
-      /* 248 */  , 0xdc656bb5U, 0xc57e5af4U, 0xee530937U, 0xf7483876U, 0xb809aeb1U, 0xa1129ff0U, 0x8a3fcc33U, 0x9324fd72U
-    }
-    ,
-    /* CRC32 table 2 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x01c26a37U, 0x0384d46eU, 0x0246be59U, 0x0709a8dcU, 0x06cbc2ebU, 0x048d7cb2U, 0x054f1685U
-      /* 8 */  , 0x0e1351b8U, 0x0fd13b8fU, 0x0d9785d6U, 0x0c55efe1U, 0x091af964U, 0x08d89353U, 0x0a9e2d0aU, 0x0b5c473dU
-      /* 16 */  , 0x1c26a370U, 0x1de4c947U, 0x1fa2771eU, 0x1e601d29U, 0x1b2f0bacU, 0x1aed619bU, 0x18abdfc2U, 0x1969b5f5U
-      /* 24 */  , 0x1235f2c8U, 0x13f798ffU, 0x11b126a6U, 0x10734c91U, 0x153c5a14U, 0x14fe3023U, 0x16b88e7aU, 0x177ae44dU
-      /* 32 */  , 0x384d46e0U, 0x398f2cd7U, 0x3bc9928eU, 0x3a0bf8b9U, 0x3f44ee3cU, 0x3e86840bU, 0x3cc03a52U, 0x3d025065U
-      /* 40 */  , 0x365e1758U, 0x379c7d6fU, 0x35dac336U, 0x3418a901U, 0x3157bf84U, 0x3095d5b3U, 0x32d36beaU, 0x331101ddU
-      /* 48 */  , 0x246be590U, 0x25a98fa7U, 0x27ef31feU, 0x262d5bc9U, 0x23624d4cU, 0x22a0277bU, 0x20e69922U, 0x2124f315U
-      /* 56 */  , 0x2a78b428U, 0x2bbade1fU, 0x29fc6046U, 0x283e0a71U, 0x2d711cf4U, 0x2cb376c3U, 0x2ef5c89aU, 0x2f37a2adU
-      /* 64 */  , 0x709a8dc0U, 0x7158e7f7U, 0x731e59aeU, 0x72dc3399U, 0x7793251cU, 0x76514f2bU, 0x7417f172U, 0x75d59b45U
-      /* 72 */  , 0x7e89dc78U, 0x7f4bb64fU, 0x7d0d0816U, 0x7ccf6221U, 0x798074a4U, 0x78421e93U, 0x7a04a0caU, 0x7bc6cafdU
-      /* 80 */  , 0x6cbc2eb0U, 0x6d7e4487U, 0x6f38fadeU, 0x6efa90e9U, 0x6bb5866cU, 0x6a77ec5bU, 0x68315202U, 0x69f33835U
-      /* 88 */  , 0x62af7f08U, 0x636d153fU, 0x612bab66U, 0x60e9c151U, 0x65a6d7d4U, 0x6464bde3U, 0x662203baU, 0x67e0698dU
-      /* 96 */  , 0x48d7cb20U, 0x4915a117U, 0x4b531f4eU, 0x4a917579U, 0x4fde63fcU, 0x4e1c09cbU, 0x4c5ab792U, 0x4d98dda5U
-      /* 104 */  , 0x46c49a98U, 0x4706f0afU, 0x45404ef6U, 0x448224c1U, 0x41cd3244U, 0x400f5873U, 0x4249e62aU, 0x438b8c1dU
-      /* 112 */  , 0x54f16850U, 0x55330267U, 0x5775bc3eU, 0x56b7d609U, 0x53f8c08cU, 0x523aaabbU, 0x507c14e2U, 0x51be7ed5U
-      /* 120 */  , 0x5ae239e8U, 0x5b2053dfU, 0x5966ed86U, 0x58a487b1U, 0x5deb9134U, 0x5c29fb03U, 0x5e6f455aU, 0x5fad2f6dU
-      /* 128 */  , 0xe1351b80U, 0xe0f771b7U, 0xe2b1cfeeU, 0xe373a5d9U, 0xe63cb35cU, 0xe7fed96bU, 0xe5b86732U, 0xe47a0d05U
-      /* 136 */  , 0xef264a38U, 0xeee4200fU, 0xeca29e56U, 0xed60f461U, 0xe82fe2e4U, 0xe9ed88d3U, 0xebab368aU, 0xea695cbdU
-      /* 144 */  , 0xfd13b8f0U, 0xfcd1d2c7U, 0xfe976c9eU, 0xff5506a9U, 0xfa1a102cU, 0xfbd87a1bU, 0xf99ec442U, 0xf85cae75U
-      /* 152 */  , 0xf300e948U, 0xf2c2837fU, 0xf0843d26U, 0xf1465711U, 0xf4094194U, 0xf5cb2ba3U, 0xf78d95faU, 0xf64fffcdU
-      /* 160 */  , 0xd9785d60U, 0xd8ba3757U, 0xdafc890eU, 0xdb3ee339U, 0xde71f5bcU, 0xdfb39f8bU, 0xddf521d2U, 0xdc374be5U
-      /* 168 */  , 0xd76b0cd8U, 0xd6a966efU, 0xd4efd8b6U, 0xd52db281U, 0xd062a404U, 0xd1a0ce33U, 0xd3e6706aU, 0xd2241a5dU
-      /* 176 */  , 0xc55efe10U, 0xc49c9427U, 0xc6da2a7eU, 0xc7184049U, 0xc25756ccU, 0xc3953cfbU, 0xc1d382a2U, 0xc011e895U
-      /* 184 */  , 0xcb4dafa8U, 0xca8fc59fU, 0xc8c97bc6U, 0xc90b11f1U, 0xcc440774U, 0xcd866d43U, 0xcfc0d31aU, 0xce02b92dU
-      /* 192 */  , 0x91af9640U, 0x906dfc77U, 0x922b422eU, 0x93e92819U, 0x96a63e9cU, 0x976454abU, 0x9522eaf2U, 0x94e080c5U
-      /* 200 */  , 0x9fbcc7f8U, 0x9e7eadcfU, 0x9c381396U, 0x9dfa79a1U, 0x98b56f24U, 0x99770513U, 0x9b31bb4aU, 0x9af3d17dU
-      /* 208 */  , 0x8d893530U, 0x8c4b5f07U, 0x8e0de15eU, 0x8fcf8b69U, 0x8a809decU, 0x8b42f7dbU, 0x89044982U, 0x88c623b5U
-      /* 216 */  , 0x839a6488U, 0x82580ebfU, 0x801eb0e6U, 0x81dcdad1U, 0x8493cc54U, 0x8551a663U, 0x8717183aU, 0x86d5720dU
-      /* 224 */  , 0xa9e2d0a0U, 0xa820ba97U, 0xaa6604ceU, 0xaba46ef9U, 0xaeeb787cU, 0xaf29124bU, 0xad6fac12U, 0xacadc625U
-      /* 232 */  , 0xa7f18118U, 0xa633eb2fU, 0xa4755576U, 0xa5b73f41U, 0xa0f829c4U, 0xa13a43f3U, 0xa37cfdaaU, 0xa2be979dU
-      /* 240 */  , 0xb5c473d0U, 0xb40619e7U, 0xb640a7beU, 0xb782cd89U, 0xb2cddb0cU, 0xb30fb13bU, 0xb1490f62U, 0xb08b6555U
-      /* 248 */  , 0xbbd72268U, 0xba15485fU, 0xb853f606U, 0xb9919c31U, 0xbcde8ab4U, 0xbd1ce083U, 0xbf5a5edaU, 0xbe9834edU
-    }
-    ,
-    /* CRC32 table 3 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0xb8bc6765U, 0xaa09c88bU, 0x12b5afeeU, 0x8f629757U, 0x37def032U, 0x256b5fdcU, 0x9dd738b9U
-      /* 8 */  , 0xc5b428efU, 0x7d084f8aU, 0x6fbde064U, 0xd7018701U, 0x4ad6bfb8U, 0xf26ad8ddU, 0xe0df7733U, 0x58631056U
-      /* 16 */  , 0x5019579fU, 0xe8a530faU, 0xfa109f14U, 0x42acf871U, 0xdf7bc0c8U, 0x67c7a7adU, 0x75720843U, 0xcdce6f26U
-      /* 24 */  , 0x95ad7f70U, 0x2d111815U, 0x3fa4b7fbU, 0x8718d09eU, 0x1acfe827U, 0xa2738f42U, 0xb0c620acU, 0x087a47c9U
-      /* 32 */  , 0xa032af3eU, 0x188ec85bU, 0x0a3b67b5U, 0xb28700d0U, 0x2f503869U, 0x97ec5f0cU, 0x8559f0e2U, 0x3de59787U
-      /* 40 */  , 0x658687d1U, 0xdd3ae0b4U, 0xcf8f4f5aU, 0x7733283fU, 0xeae41086U, 0x525877e3U, 0x40edd80dU, 0xf851bf68U
-      /* 48 */  , 0xf02bf8a1U, 0x48979fc4U, 0x5a22302aU, 0xe29e574fU, 0x7f496ff6U, 0xc7f50893U, 0xd540a77dU, 0x6dfcc018U
-      /* 56 */  , 0x359fd04eU, 0x8d23b72bU, 0x9f9618c5U, 0x272a7fa0U, 0xbafd4719U, 0x0241207cU, 0x10f48f92U, 0xa848e8f7U
-      /* 64 */  , 0x9b14583dU, 0x23a83f58U, 0x311d90b6U, 0x89a1f7d3U, 0x1476cf6aU, 0xaccaa80fU, 0xbe7f07e1U, 0x06c36084U
-      /* 72 */  , 0x5ea070d2U, 0xe61c17b7U, 0xf4a9b859U, 0x4c15df3cU, 0xd1c2e785U, 0x697e80e0U, 0x7bcb2f0eU, 0xc377486bU
-      /* 80 */  , 0xcb0d0fa2U, 0x73b168c7U, 0x6104c729U, 0xd9b8a04cU, 0x446f98f5U, 0xfcd3ff90U, 0xee66507eU, 0x56da371bU
-      /* 88 */  , 0x0eb9274dU, 0xb6054028U, 0xa4b0efc6U, 0x1c0c88a3U, 0x81dbb01aU, 0x3967d77fU, 0x2bd27891U, 0x936e1ff4U
-      /* 96 */  , 0x3b26f703U, 0x839a9066U, 0x912f3f88U, 0x299358edU, 0xb4446054U, 0x0cf80731U, 0x1e4da8dfU, 0xa6f1cfbaU
-      /* 104 */  , 0xfe92dfecU, 0x462eb889U, 0x549b1767U, 0xec277002U, 0x71f048bbU, 0xc94c2fdeU, 0xdbf98030U, 0x6345e755U
-      /* 112 */  , 0x6b3fa09cU, 0xd383c7f9U, 0xc1366817U, 0x798a0f72U, 0xe45d37cbU, 0x5ce150aeU, 0x4e54ff40U, 0xf6e89825U
-      /* 120 */  , 0xae8b8873U, 0x1637ef16U, 0x048240f8U, 0xbc3e279dU, 0x21e91f24U, 0x99557841U, 0x8be0d7afU, 0x335cb0caU
-      /* 128 */  , 0xed59b63bU, 0x55e5d15eU, 0x47507eb0U, 0xffec19d5U, 0x623b216cU, 0xda874609U, 0xc832e9e7U, 0x708e8e82U
-      /* 136 */  , 0x28ed9ed4U, 0x9051f9b1U, 0x82e4565fU, 0x3a58313aU, 0xa78f0983U, 0x1f336ee6U, 0x0d86c108U, 0xb53aa66dU
-      /* 144 */  , 0xbd40e1a4U, 0x05fc86c1U, 0x1749292fU, 0xaff54e4aU, 0x322276f3U, 0x8a9e1196U, 0x982bbe78U, 0x2097d91dU
-      /* 152 */  , 0x78f4c94bU, 0xc048ae2eU, 0xd2fd01c0U, 0x6a4166a5U, 0xf7965e1cU, 0x4f2a3979U, 0x5d9f9697U, 0xe523f1f2U
-      /* 160 */  , 0x4d6b1905U, 0xf5d77e60U, 0xe762d18eU, 0x5fdeb6ebU, 0xc2098e52U, 0x7ab5e937U, 0x680046d9U, 0xd0bc21bcU
-      /* 168 */  , 0x88df31eaU, 0x3063568fU, 0x22d6f961U, 0x9a6a9e04U, 0x07bda6bdU, 0xbf01c1d8U, 0xadb46e36U, 0x15080953U
-      /* 176 */  , 0x1d724e9aU, 0xa5ce29ffU, 0xb77b8611U, 0x0fc7e174U, 0x9210d9cdU, 0x2aacbea8U, 0x38191146U, 0x80a57623U
-      /* 184 */  , 0xd8c66675U, 0x607a0110U, 0x72cfaefeU, 0xca73c99bU, 0x57a4f122U, 0xef189647U, 0xfdad39a9U, 0x45115eccU
-      /* 192 */  , 0x764dee06U, 0xcef18963U, 0xdc44268dU, 0x64f841e8U, 0xf92f7951U, 0x41931e34U, 0x5326b1daU, 0xeb9ad6bfU
-      /* 200 */  , 0xb3f9c6e9U, 0x0b45a18cU, 0x19f00e62U, 0xa14c6907U, 0x3c9b51beU, 0x842736dbU, 0x96929935U, 0x2e2efe50U
-      /* 208 */  , 0x2654b999U, 0x9ee8defcU, 0x8c5d7112U, 0x34e11677U, 0xa9362eceU, 0x118a49abU, 0x033fe645U, 0xbb838120U
-      /* 216 */  , 0xe3e09176U, 0x5b5cf613U, 0x49e959fdU, 0xf1553e98U, 0x6c820621U, 0xd43e6144U, 0xc68bceaaU, 0x7e37a9cfU
-      /* 224 */  , 0xd67f4138U, 0x6ec3265dU, 0x7c7689b3U, 0xc4caeed6U, 0x591dd66fU, 0xe1a1b10aU, 0xf3141ee4U, 0x4ba87981U
-      /* 232 */  , 0x13cb69d7U, 0xab770eb2U, 0xb9c2a15cU, 0x017ec639U, 0x9ca9fe80U, 0x241599e5U, 0x36a0360bU, 0x8e1c516eU
-      /* 240 */  , 0x866616a7U, 0x3eda71c2U, 0x2c6fde2cU, 0x94d3b949U, 0x090481f0U, 0xb1b8e695U, 0xa30d497bU, 0x1bb12e1eU
-      /* 248 */  , 0x43d23e48U, 0xfb6e592dU, 0xe9dbf6c3U, 0x516791a6U, 0xccb0a91fU, 0x740cce7aU, 0x66b96194U, 0xde0506f1U
-    }
-    ,
-    /* CRC32 table 4 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x96300777U, 0x2c610eeeU, 0xba510999U, 0x19c46d07U, 0x8ff46a70U, 0x35a563e9U, 0xa395649eU
-      /* 8 */  , 0x3288db0eU, 0xa4b8dc79U, 0x1ee9d5e0U, 0x88d9d297U, 0x2b4cb609U, 0xbd7cb17eU, 0x072db8e7U, 0x911dbf90U
-      /* 16 */  , 0x6410b71dU, 0xf220b06aU, 0x4871b9f3U, 0xde41be84U, 0x7dd4da1aU, 0xebe4dd6dU, 0x51b5d4f4U, 0xc785d383U
-      /* 24 */  , 0x56986c13U, 0xc0a86b64U, 0x7af962fdU, 0xecc9658aU, 0x4f5c0114U, 0xd96c0663U, 0x633d0ffaU, 0xf50d088dU
-      /* 32 */  , 0xc8206e3bU, 0x5e10694cU, 0xe44160d5U, 0x727167a2U, 0xd1e4033cU, 0x47d4044bU, 0xfd850dd2U, 0x6bb50aa5U
-      /* 40 */  , 0xfaa8b535U, 0x6c98b242U, 0xd6c9bbdbU, 0x40f9bcacU, 0xe36cd832U, 0x755cdf45U, 0xcf0dd6dcU, 0x593dd1abU
-      /* 48 */  , 0xac30d926U, 0x3a00de51U, 0x8051d7c8U, 0x1661d0bfU, 0xb5f4b421U, 0x23c4b356U, 0x9995bacfU, 0x0fa5bdb8U
-      /* 56 */  , 0x9eb80228U, 0x0888055fU, 0xb2d90cc6U, 0x24e90bb1U, 0x877c6f2fU, 0x114c6858U, 0xab1d61c1U, 0x3d2d66b6U
-      /* 64 */  , 0x9041dc76U, 0x0671db01U, 0xbc20d298U, 0x2a10d5efU, 0x8985b171U, 0x1fb5b606U, 0xa5e4bf9fU, 0x33d4b8e8U
-      /* 72 */  , 0xa2c90778U, 0x34f9000fU, 0x8ea80996U, 0x18980ee1U, 0xbb0d6a7fU, 0x2d3d6d08U, 0x976c6491U, 0x015c63e6U
-      /* 80 */  , 0xf4516b6bU, 0x62616c1cU, 0xd8306585U, 0x4e0062f2U, 0xed95066cU, 0x7ba5011bU, 0xc1f40882U, 0x57c40ff5U
-      /* 88 */  , 0xc6d9b065U, 0x50e9b712U, 0xeab8be8bU, 0x7c88b9fcU, 0xdf1ddd62U, 0x492dda15U, 0xf37cd38cU, 0x654cd4fbU
-      /* 96 */  , 0x5861b24dU, 0xce51b53aU, 0x7400bca3U, 0xe230bbd4U, 0x41a5df4aU, 0xd795d83dU, 0x6dc4d1a4U, 0xfbf4d6d3U
-      /* 104 */  , 0x6ae96943U, 0xfcd96e34U, 0x468867adU, 0xd0b860daU, 0x732d0444U, 0xe51d0333U, 0x5f4c0aaaU, 0xc97c0dddU
-      /* 112 */  , 0x3c710550U, 0xaa410227U, 0x10100bbeU, 0x86200cc9U, 0x25b56857U, 0xb3856f20U, 0x09d466b9U, 0x9fe461ceU
-      /* 120 */  , 0x0ef9de5eU, 0x98c9d929U, 0x2298d0b0U, 0xb4a8d7c7U, 0x173db359U, 0x810db42eU, 0x3b5cbdb7U, 0xad6cbac0U
-      /* 128 */  , 0x2083b8edU, 0xb6b3bf9aU, 0x0ce2b603U, 0x9ad2b174U, 0x3947d5eaU, 0xaf77d29dU, 0x1526db04U, 0x8316dc73U
-      /* 136 */  , 0x120b63e3U, 0x843b6494U, 0x3e6a6d0dU, 0xa85a6a7aU, 0x0bcf0ee4U, 0x9dff0993U, 0x27ae000aU, 0xb19e077dU
-      /* 144 */  , 0x44930ff0U, 0xd2a30887U, 0x68f2011eU, 0xfec20669U, 0x5d5762f7U, 0xcb676580U, 0x71366c19U, 0xe7066b6eU
-      /* 152 */  , 0x761bd4feU, 0xe02bd389U, 0x5a7ada10U, 0xcc4add67U, 0x6fdfb9f9U, 0xf9efbe8eU, 0x43beb717U, 0xd58eb060U
-      /* 160 */  , 0xe8a3d6d6U, 0x7e93d1a1U, 0xc4c2d838U, 0x52f2df4fU, 0xf167bbd1U, 0x6757bca6U, 0xdd06b53fU, 0x4b36b248U
-      /* 168 */  , 0xda2b0dd8U, 0x4c1b0aafU, 0xf64a0336U, 0x607a0441U, 0xc3ef60dfU, 0x55df67a8U, 0xef8e6e31U, 0x79be6946U
-      /* 176 */  , 0x8cb361cbU, 0x1a8366bcU, 0xa0d26f25U, 0x36e26852U, 0x95770cccU, 0x03470bbbU, 0xb9160222U, 0x2f260555U
-      /* 184 */  , 0xbe3bbac5U, 0x280bbdb2U, 0x925ab42bU, 0x046ab35cU, 0xa7ffd7c2U, 0x31cfd0b5U, 0x8b9ed92cU, 0x1daede5bU
-      /* 192 */  , 0xb0c2649bU, 0x26f263ecU, 0x9ca36a75U, 0x0a936d02U, 0xa906099cU, 0x3f360eebU, 0x85670772U, 0x13570005U
-      /* 200 */  , 0x824abf95U, 0x147ab8e2U, 0xae2bb17bU, 0x381bb60cU, 0x9b8ed292U, 0x0dbed5e5U, 0xb7efdc7cU, 0x21dfdb0bU
-      /* 208 */  , 0xd4d2d386U, 0x42e2d4f1U, 0xf8b3dd68U, 0x6e83da1fU, 0xcd16be81U, 0x5b26b9f6U, 0xe177b06fU, 0x7747b718U
-      /* 216 */  , 0xe65a0888U, 0x706a0fffU, 0xca3b0666U, 0x5c0b0111U, 0xff9e658fU, 0x69ae62f8U, 0xd3ff6b61U, 0x45cf6c16U
-      /* 224 */  , 0x78e20aa0U, 0xeed20dd7U, 0x5483044eU, 0xc2b30339U, 0x612667a7U, 0xf71660d0U, 0x4d476949U, 0xdb776e3eU
-      /* 232 */  , 0x4a6ad1aeU, 0xdc5ad6d9U, 0x660bdf40U, 0xf03bd837U, 0x53aebca9U, 0xc59ebbdeU, 0x7fcfb247U, 0xe9ffb530U
-      /* 240 */  , 0x1cf2bdbdU, 0x8ac2bacaU, 0x3093b353U, 0xa6a3b424U, 0x0536d0baU, 0x9306d7cdU, 0x2957de54U, 0xbf67d923U
-      /* 248 */  , 0x2e7a66b3U, 0xb84a61c4U, 0x021b685dU, 0x942b6f2aU, 0x37be0bb4U, 0xa18e0cc3U, 0x1bdf055aU, 0x8def022dU
-    }
-    ,
-    /* CRC32 table 5 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x41311b19U, 0x82623632U, 0xc3532d2bU, 0x04c56c64U, 0x45f4777dU, 0x86a75a56U, 0xc796414fU
-      /* 8 */  , 0x088ad9c8U, 0x49bbc2d1U, 0x8ae8effaU, 0xcbd9f4e3U, 0x0c4fb5acU, 0x4d7eaeb5U, 0x8e2d839eU, 0xcf1c9887U
-      /* 16 */  , 0x5112c24aU, 0x1023d953U, 0xd370f478U, 0x9241ef61U, 0x55d7ae2eU, 0x14e6b537U, 0xd7b5981cU, 0x96848305U
-      /* 24 */  , 0x59981b82U, 0x18a9009bU, 0xdbfa2db0U, 0x9acb36a9U, 0x5d5d77e6U, 0x1c6c6cffU, 0xdf3f41d4U, 0x9e0e5acdU
-      /* 32 */  , 0xa2248495U, 0xe3159f8cU, 0x2046b2a7U, 0x6177a9beU, 0xa6e1e8f1U, 0xe7d0f3e8U, 0x2483dec3U, 0x65b2c5daU
-      /* 40 */  , 0xaaae5d5dU, 0xeb9f4644U, 0x28cc6b6fU, 0x69fd7076U, 0xae6b3139U, 0xef5a2a20U, 0x2c09070bU, 0x6d381c12U
-      /* 48 */  , 0xf33646dfU, 0xb2075dc6U, 0x715470edU, 0x30656bf4U, 0xf7f32abbU, 0xb6c231a2U, 0x75911c89U, 0x34a00790U
-      /* 56 */  , 0xfbbc9f17U, 0xba8d840eU, 0x79dea925U, 0x38efb23cU, 0xff79f373U, 0xbe48e86aU, 0x7d1bc541U, 0x3c2ade58U
-      /* 64 */  , 0x054f79f0U, 0x447e62e9U, 0x872d4fc2U, 0xc61c54dbU, 0x018a1594U, 0x40bb0e8dU, 0x83e823a6U, 0xc2d938bfU
-      /* 72 */  , 0x0dc5a038U, 0x4cf4bb21U, 0x8fa7960aU, 0xce968d13U, 0x0900cc5cU, 0x4831d745U, 0x8b62fa6eU, 0xca53e177U
-      /* 80 */  , 0x545dbbbaU, 0x156ca0a3U, 0xd63f8d88U, 0x970e9691U, 0x5098d7deU, 0x11a9ccc7U, 0xd2fae1ecU, 0x93cbfaf5U
-      /* 88 */  , 0x5cd76272U, 0x1de6796bU, 0xdeb55440U, 0x9f844f59U, 0x58120e16U, 0x1923150fU, 0xda703824U, 0x9b41233dU
-      /* 96 */  , 0xa76bfd65U, 0xe65ae67cU, 0x2509cb57U, 0x6438d04eU, 0xa3ae9101U, 0xe29f8a18U, 0x21cca733U, 0x60fdbc2aU
-      /* 104 */  , 0xafe124adU, 0xeed03fb4U, 0x2d83129fU, 0x6cb20986U, 0xab2448c9U, 0xea1553d0U, 0x29467efbU, 0x687765e2U
-      /* 112 */  , 0xf6793f2fU, 0xb7482436U, 0x741b091dU, 0x352a1204U, 0xf2bc534bU, 0xb38d4852U, 0x70de6579U, 0x31ef7e60U
-      /* 120 */  , 0xfef3e6e7U, 0xbfc2fdfeU, 0x7c91d0d5U, 0x3da0cbccU, 0xfa368a83U, 0xbb07919aU, 0x7854bcb1U, 0x3965a7a8U
-      /* 128 */  , 0x4b98833bU, 0x0aa99822U, 0xc9fab509U, 0x88cbae10U, 0x4f5def5fU, 0x0e6cf446U, 0xcd3fd96dU, 0x8c0ec274U
-      /* 136 */  , 0x43125af3U, 0x022341eaU, 0xc1706cc1U, 0x804177d8U, 0x47d73697U, 0x06e62d8eU, 0xc5b500a5U, 0x84841bbcU
-      /* 144 */  , 0x1a8a4171U, 0x5bbb5a68U, 0x98e87743U, 0xd9d96c5aU, 0x1e4f2d15U, 0x5f7e360cU, 0x9c2d1b27U, 0xdd1c003eU
-      /* 152 */  , 0x120098b9U, 0x533183a0U, 0x9062ae8bU, 0xd153b592U, 0x16c5f4ddU, 0x57f4efc4U, 0x94a7c2efU, 0xd596d9f6U
-      /* 160 */  , 0xe9bc07aeU, 0xa88d1cb7U, 0x6bde319cU, 0x2aef2a85U, 0xed796bcaU, 0xac4870d3U, 0x6f1b5df8U, 0x2e2a46e1U
-      /* 168 */  , 0xe136de66U, 0xa007c57fU, 0x6354e854U, 0x2265f34dU, 0xe5f3b202U, 0xa4c2a91bU, 0x67918430U, 0x26a09f29U
-      /* 176 */  , 0xb8aec5e4U, 0xf99fdefdU, 0x3accf3d6U, 0x7bfde8cfU, 0xbc6ba980U, 0xfd5ab299U, 0x3e099fb2U, 0x7f3884abU
-      /* 184 */  , 0xb0241c2cU, 0xf1150735U, 0x32462a1eU, 0x73773107U, 0xb4e17048U, 0xf5d06b51U, 0x3683467aU, 0x77b25d63U
-      /* 192 */  , 0x4ed7facbU, 0x0fe6e1d2U, 0xccb5ccf9U, 0x8d84d7e0U, 0x4a1296afU, 0x0b238db6U, 0xc870a09dU, 0x8941bb84U
-      /* 200 */  , 0x465d2303U, 0x076c381aU, 0xc43f1531U, 0x850e0e28U, 0x42984f67U, 0x03a9547eU, 0xc0fa7955U, 0x81cb624cU
-      /* 208 */  , 0x1fc53881U, 0x5ef42398U, 0x9da70eb3U, 0xdc9615aaU, 0x1b0054e5U, 0x5a314ffcU, 0x996262d7U, 0xd85379ceU
-      /* 216 */  , 0x174fe149U, 0x567efa50U, 0x952dd77bU, 0xd41ccc62U, 0x138a8d2dU, 0x52bb9634U, 0x91e8bb1fU, 0xd0d9a006U
-      /* 224 */  , 0xecf37e5eU, 0xadc26547U, 0x6e91486cU, 0x2fa05375U, 0xe836123aU, 0xa9070923U, 0x6a542408U, 0x2b653f11U
-      /* 232 */  , 0xe479a796U, 0xa548bc8fU, 0x661b91a4U, 0x272a8abdU, 0xe0bccbf2U, 0xa18dd0ebU, 0x62defdc0U, 0x23efe6d9U
-      /* 240 */  , 0xbde1bc14U, 0xfcd0a70dU, 0x3f838a26U, 0x7eb2913fU, 0xb924d070U, 0xf815cb69U, 0x3b46e642U, 0x7a77fd5bU
-      /* 248 */  , 0xb56b65dcU, 0xf45a7ec5U, 0x370953eeU, 0x763848f7U, 0xb1ae09b8U, 0xf09f12a1U, 0x33cc3f8aU, 0x72fd2493U
-    }
-    ,
-    /* CRC32 table 6 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x376ac201U, 0x6ed48403U, 0x59be4602U, 0xdca80907U, 0xebc2cb06U, 0xb27c8d04U, 0x85164f05U
-      /* 8 */  , 0xb851130eU, 0x8f3bd10fU, 0xd685970dU, 0xe1ef550cU, 0x64f91a09U, 0x5393d808U, 0x0a2d9e0aU, 0x3d475c0bU
-      /* 16 */  , 0x70a3261cU, 0x47c9e41dU, 0x1e77a21fU, 0x291d601eU, 0xac0b2f1bU, 0x9b61ed1aU, 0xc2dfab18U, 0xf5b56919U
-      /* 24 */  , 0xc8f23512U, 0xff98f713U, 0xa626b111U, 0x914c7310U, 0x145a3c15U, 0x2330fe14U, 0x7a8eb816U, 0x4de47a17U
-      /* 32 */  , 0xe0464d38U, 0xd72c8f39U, 0x8e92c93bU, 0xb9f80b3aU, 0x3cee443fU, 0x0b84863eU, 0x523ac03cU, 0x6550023dU
-      /* 40 */  , 0x58175e36U, 0x6f7d9c37U, 0x36c3da35U, 0x01a91834U, 0x84bf5731U, 0xb3d59530U, 0xea6bd332U, 0xdd011133U
-      /* 48 */  , 0x90e56b24U, 0xa78fa925U, 0xfe31ef27U, 0xc95b2d26U, 0x4c4d6223U, 0x7b27a022U, 0x2299e620U, 0x15f32421U
-      /* 56 */  , 0x28b4782aU, 0x1fdeba2bU, 0x4660fc29U, 0x710a3e28U, 0xf41c712dU, 0xc376b32cU, 0x9ac8f52eU, 0xada2372fU
-      /* 64 */  , 0xc08d9a70U, 0xf7e75871U, 0xae591e73U, 0x9933dc72U, 0x1c259377U, 0x2b4f5176U, 0x72f11774U, 0x459bd575U
-      /* 72 */  , 0x78dc897eU, 0x4fb64b7fU, 0x16080d7dU, 0x2162cf7cU, 0xa4748079U, 0x931e4278U, 0xcaa0047aU, 0xfdcac67bU
-      /* 80 */  , 0xb02ebc6cU, 0x87447e6dU, 0xdefa386fU, 0xe990fa6eU, 0x6c86b56bU, 0x5bec776aU, 0x02523168U, 0x3538f369U
-      /* 88 */  , 0x087faf62U, 0x3f156d63U, 0x66ab2b61U, 0x51c1e960U, 0xd4d7a665U, 0xe3bd6464U, 0xba032266U, 0x8d69e067U
-      /* 96 */  , 0x20cbd748U, 0x17a11549U, 0x4e1f534bU, 0x7975914aU, 0xfc63de4fU, 0xcb091c4eU, 0x92b75a4cU, 0xa5dd984dU
-      /* 104 */  , 0x989ac446U, 0xaff00647U, 0xf64e4045U, 0xc1248244U, 0x4432cd41U, 0x73580f40U, 0x2ae64942U, 0x1d8c8b43U
-      /* 112 */  , 0x5068f154U, 0x67023355U, 0x3ebc7557U, 0x09d6b756U, 0x8cc0f853U, 0xbbaa3a52U, 0xe2147c50U, 0xd57ebe51U
-      /* 120 */  , 0xe839e25aU, 0xdf53205bU, 0x86ed6659U, 0xb187a458U, 0x3491eb5dU, 0x03fb295cU, 0x5a456f5eU, 0x6d2fad5fU
-      /* 128 */  , 0x801b35e1U, 0xb771f7e0U, 0xeecfb1e2U, 0xd9a573e3U, 0x5cb33ce6U, 0x6bd9fee7U, 0x3267b8e5U, 0x050d7ae4U
-      /* 136 */  , 0x384a26efU, 0x0f20e4eeU, 0x569ea2ecU, 0x61f460edU, 0xe4e22fe8U, 0xd388ede9U, 0x8a36abebU, 0xbd5c69eaU
-      /* 144 */  , 0xf0b813fdU, 0xc7d2d1fcU, 0x9e6c97feU, 0xa90655ffU, 0x2c101afaU, 0x1b7ad8fbU, 0x42c49ef9U, 0x75ae5cf8U
-      /* 152 */  , 0x48e900f3U, 0x7f83c2f2U, 0x263d84f0U, 0x115746f1U, 0x944109f4U, 0xa32bcbf5U, 0xfa958df7U, 0xcdff4ff6U
-      /* 160 */  , 0x605d78d9U, 0x5737bad8U, 0x0e89fcdaU, 0x39e33edbU, 0xbcf571deU, 0x8b9fb3dfU, 0xd221f5ddU, 0xe54b37dcU
-      /* 168 */  , 0xd80c6bd7U, 0xef66a9d6U, 0xb6d8efd4U, 0x81b22dd5U, 0x04a462d0U, 0x33cea0d1U, 0x6a70e6d3U, 0x5d1a24d2U
-      /* 176 */  , 0x10fe5ec5U, 0x27949cc4U, 0x7e2adac6U, 0x494018c7U, 0xcc5657c2U, 0xfb3c95c3U, 0xa282d3c1U, 0x95e811c0U
-      /* 184 */  , 0xa8af4dcbU, 0x9fc58fcaU, 0xc67bc9c8U, 0xf1110bc9U, 0x740744ccU, 0x436d86cdU, 0x1ad3c0cfU, 0x2db902ceU
-      /* 192 */  , 0x4096af91U, 0x77fc6d90U, 0x2e422b92U, 0x1928e993U, 0x9c3ea696U, 0xab546497U, 0xf2ea2295U, 0xc580e094U
-      /* 200 */  , 0xf8c7bc9fU, 0xcfad7e9eU, 0x9613389cU, 0xa179fa9dU, 0x246fb598U, 0x13057799U, 0x4abb319bU, 0x7dd1f39aU
-      /* 208 */  , 0x3035898dU, 0x075f4b8cU, 0x5ee10d8eU, 0x698bcf8fU, 0xec9d808aU, 0xdbf7428bU, 0x82490489U, 0xb523c688U
-      /* 216 */  , 0x88649a83U, 0xbf0e5882U, 0xe6b01e80U, 0xd1dadc81U, 0x54cc9384U, 0x63a65185U, 0x3a181787U, 0x0d72d586U
-      /* 224 */  , 0xa0d0e2a9U, 0x97ba20a8U, 0xce0466aaU, 0xf96ea4abU, 0x7c78ebaeU, 0x4b1229afU, 0x12ac6fadU, 0x25c6adacU
-      /* 232 */  , 0x1881f1a7U, 0x2feb33a6U, 0x765575a4U, 0x413fb7a5U, 0xc429f8a0U, 0xf3433aa1U, 0xaafd7ca3U, 0x9d97bea2U
-      /* 240 */  , 0xd073c4b5U, 0xe71906b4U, 0xbea740b6U, 0x89cd82b7U, 0x0cdbcdb2U, 0x3bb10fb3U, 0x620f49b1U, 0x55658bb0U
-      /* 248 */  , 0x6822d7bbU, 0x5f4815baU, 0x06f653b8U, 0x319c91b9U, 0xb48adebcU, 0x83e01cbdU, 0xda5e5abfU, 0xed3498beU
-    }
-    ,
-    /* CRC32 table 7 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x6567bcb8U, 0x8bc809aaU, 0xeeafb512U, 0x5797628fU, 0x32f0de37U, 0xdc5f6b25U, 0xb938d79dU
-      /* 8 */  , 0xef28b4c5U, 0x8a4f087dU, 0x64e0bd6fU, 0x018701d7U, 0xb8bfd64aU, 0xddd86af2U, 0x3377dfe0U, 0x56106358U
-      /* 16 */  , 0x9f571950U, 0xfa30a5e8U, 0x149f10faU, 0x71f8ac42U, 0xc8c07bdfU, 0xada7c767U, 0x43087275U, 0x266fcecdU
-      /* 24 */  , 0x707fad95U, 0x1518112dU, 0xfbb7a43fU, 0x9ed01887U, 0x27e8cf1aU, 0x428f73a2U, 0xac20c6b0U, 0xc9477a08U
-      /* 32 */  , 0x3eaf32a0U, 0x5bc88e18U, 0xb5673b0aU, 0xd00087b2U, 0x6938502fU, 0x0c5fec97U, 0xe2f05985U, 0x8797e53dU
-      /* 40 */  , 0xd1878665U, 0xb4e03addU, 0x5a4f8fcfU, 0x3f283377U, 0x8610e4eaU, 0xe3775852U, 0x0dd8ed40U, 0x68bf51f8U
-      /* 48 */  , 0xa1f82bf0U, 0xc49f9748U, 0x2a30225aU, 0x4f579ee2U, 0xf66f497fU, 0x9308f5c7U, 0x7da740d5U, 0x18c0fc6dU
-      /* 56 */  , 0x4ed09f35U, 0x2bb7238dU, 0xc518969fU, 0xa07f2a27U, 0x1947fdbaU, 0x7c204102U, 0x928ff410U, 0xf7e848a8U
-      /* 64 */  , 0x3d58149bU, 0x583fa823U, 0xb6901d31U, 0xd3f7a189U, 0x6acf7614U, 0x0fa8caacU, 0xe1077fbeU, 0x8460c306U
-      /* 72 */  , 0xd270a05eU, 0xb7171ce6U, 0x59b8a9f4U, 0x3cdf154cU, 0x85e7c2d1U, 0xe0807e69U, 0x0e2fcb7bU, 0x6b4877c3U
-      /* 80 */  , 0xa20f0dcbU, 0xc768b173U, 0x29c70461U, 0x4ca0b8d9U, 0xf5986f44U, 0x90ffd3fcU, 0x7e5066eeU, 0x1b37da56U
-      /* 88 */  , 0x4d27b90eU, 0x284005b6U, 0xc6efb0a4U, 0xa3880c1cU, 0x1ab0db81U, 0x7fd76739U, 0x9178d22bU, 0xf41f6e93U
-      /* 96 */  , 0x03f7263bU, 0x66909a83U, 0x883f2f91U, 0xed589329U, 0x546044b4U, 0x3107f80cU, 0xdfa84d1eU, 0xbacff1a6U
-      /* 104 */  , 0xecdf92feU, 0x89b82e46U, 0x67179b54U, 0x027027ecU, 0xbb48f071U, 0xde2f4cc9U, 0x3080f9dbU, 0x55e74563U
-      /* 112 */  , 0x9ca03f6bU, 0xf9c783d3U, 0x176836c1U, 0x720f8a79U, 0xcb375de4U, 0xae50e15cU, 0x40ff544eU, 0x2598e8f6U
-      /* 120 */  , 0x73888baeU, 0x16ef3716U, 0xf8408204U, 0x9d273ebcU, 0x241fe921U, 0x41785599U, 0xafd7e08bU, 0xcab05c33U
-      /* 128 */  , 0x3bb659edU, 0x5ed1e555U, 0xb07e5047U, 0xd519ecffU, 0x6c213b62U, 0x094687daU, 0xe7e932c8U, 0x828e8e70U
-      /* 136 */  , 0xd49eed28U, 0xb1f95190U, 0x5f56e482U, 0x3a31583aU, 0x83098fa7U, 0xe66e331fU, 0x08c1860dU, 0x6da63ab5U
-      /* 144 */  , 0xa4e140bdU, 0xc186fc05U, 0x2f294917U, 0x4a4ef5afU, 0xf3762232U, 0x96119e8aU, 0x78be2b98U, 0x1dd99720U
-      /* 152 */  , 0x4bc9f478U, 0x2eae48c0U, 0xc001fdd2U, 0xa566416aU, 0x1c5e96f7U, 0x79392a4fU, 0x97969f5dU, 0xf2f123e5U
-      /* 160 */  , 0x05196b4dU, 0x607ed7f5U, 0x8ed162e7U, 0xebb6de5fU, 0x528e09c2U, 0x37e9b57aU, 0xd9460068U, 0xbc21bcd0U
-      /* 168 */  , 0xea31df88U, 0x8f566330U, 0x61f9d622U, 0x049e6a9aU, 0xbda6bd07U, 0xd8c101bfU, 0x366eb4adU, 0x53090815U
-      /* 176 */  , 0x9a4e721dU, 0xff29cea5U, 0x11867bb7U, 0x74e1c70fU, 0xcdd91092U, 0xa8beac2aU, 0x46111938U, 0x2376a580U
-      /* 184 */  , 0x7566c6d8U, 0x10017a60U, 0xfeaecf72U, 0x9bc973caU, 0x22f1a457U, 0x479618efU, 0xa939adfdU, 0xcc5e1145U
-      /* 192 */  , 0x06ee4d76U, 0x6389f1ceU, 0x8d2644dcU, 0xe841f864U, 0x51792ff9U, 0x341e9341U, 0xdab12653U, 0xbfd69aebU
-      /* 200 */  , 0xe9c6f9b3U, 0x8ca1450bU, 0x620ef019U, 0x07694ca1U, 0xbe519b3cU, 0xdb362784U, 0x35999296U, 0x50fe2e2eU
-      /* 208 */  , 0x99b95426U, 0xfcdee89eU, 0x12715d8cU, 0x7716e134U, 0xce2e36a9U, 0xab498a11U, 0x45e63f03U, 0x208183bbU
-      /* 216 */  , 0x7691e0e3U, 0x13f65c5bU, 0xfd59e949U, 0x983e55f1U, 0x2106826cU, 0x44613ed4U, 0xaace8bc6U, 0xcfa9377eU
-      /* 224 */  , 0x38417fd6U, 0x5d26c36eU, 0xb389767cU, 0xd6eecac4U, 0x6fd61d59U, 0x0ab1a1e1U, 0xe41e14f3U, 0x8179a84bU
-      /* 232 */  , 0xd769cb13U, 0xb20e77abU, 0x5ca1c2b9U, 0x39c67e01U, 0x80fea99cU, 0xe5991524U, 0x0b36a036U, 0x6e511c8eU
-      /* 240 */  , 0xa7166686U, 0xc271da3eU, 0x2cde6f2cU, 0x49b9d394U, 0xf0810409U, 0x95e6b8b1U, 0x7b490da3U, 0x1e2eb11bU
-      /* 248 */  , 0x483ed243U, 0x2d596efbU, 0xc3f6dbe9U, 0xa6916751U, 0x1fa9b0ccU, 0x7ace0c74U, 0x9461b966U, 0xf10605deU
-    }
-  #endif
-  };
-
-juint StubRoutines::ppc64::_crc32c_table[CRC32_TABLES][CRC32_COLUMN_SIZE] = {
-    /* polyBits = 4394350321 0x0000000105ec76f1L, shifted = 0x82f63b78 */
-    /* CRC32C table for single bytes, auto-generated.  DO NOT MODIFY!  */
-    /* CRC32C table 0 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0xf26b8303U, 0xe13b70f7U, 0x1350f3f4U, 0xc79a971fU, 0x35f1141cU, 0x26a1e7e8U, 0xd4ca64ebU
-      /* 8 */  , 0x8ad958cfU, 0x78b2dbccU, 0x6be22838U, 0x9989ab3bU, 0x4d43cfd0U, 0xbf284cd3U, 0xac78bf27U, 0x5e133c24U
-      /* 16 */  , 0x105ec76fU, 0xe235446cU, 0xf165b798U, 0x030e349bU, 0xd7c45070U, 0x25afd373U, 0x36ff2087U, 0xc494a384U
-      /* 24 */  , 0x9a879fa0U, 0x68ec1ca3U, 0x7bbcef57U, 0x89d76c54U, 0x5d1d08bfU, 0xaf768bbcU, 0xbc267848U, 0x4e4dfb4bU
-      /* 32 */  , 0x20bd8edeU, 0xd2d60dddU, 0xc186fe29U, 0x33ed7d2aU, 0xe72719c1U, 0x154c9ac2U, 0x061c6936U, 0xf477ea35U
-      /* 40 */  , 0xaa64d611U, 0x580f5512U, 0x4b5fa6e6U, 0xb93425e5U, 0x6dfe410eU, 0x9f95c20dU, 0x8cc531f9U, 0x7eaeb2faU
-      /* 48 */  , 0x30e349b1U, 0xc288cab2U, 0xd1d83946U, 0x23b3ba45U, 0xf779deaeU, 0x05125dadU, 0x1642ae59U, 0xe4292d5aU
-      /* 56 */  , 0xba3a117eU, 0x4851927dU, 0x5b016189U, 0xa96ae28aU, 0x7da08661U, 0x8fcb0562U, 0x9c9bf696U, 0x6ef07595U
-      /* 64 */  , 0x417b1dbcU, 0xb3109ebfU, 0xa0406d4bU, 0x522bee48U, 0x86e18aa3U, 0x748a09a0U, 0x67dafa54U, 0x95b17957U
-      /* 72 */  , 0xcba24573U, 0x39c9c670U, 0x2a993584U, 0xd8f2b687U, 0x0c38d26cU, 0xfe53516fU, 0xed03a29bU, 0x1f682198U
-      /* 80 */  , 0x5125dad3U, 0xa34e59d0U, 0xb01eaa24U, 0x42752927U, 0x96bf4dccU, 0x64d4cecfU, 0x77843d3bU, 0x85efbe38U
-      /* 88 */  , 0xdbfc821cU, 0x2997011fU, 0x3ac7f2ebU, 0xc8ac71e8U, 0x1c661503U, 0xee0d9600U, 0xfd5d65f4U, 0x0f36e6f7U
-      /* 96 */  , 0x61c69362U, 0x93ad1061U, 0x80fde395U, 0x72966096U, 0xa65c047dU, 0x5437877eU, 0x4767748aU, 0xb50cf789U
-      /* 104 */  , 0xeb1fcbadU, 0x197448aeU, 0x0a24bb5aU, 0xf84f3859U, 0x2c855cb2U, 0xdeeedfb1U, 0xcdbe2c45U, 0x3fd5af46U
-      /* 112 */  , 0x7198540dU, 0x83f3d70eU, 0x90a324faU, 0x62c8a7f9U, 0xb602c312U, 0x44694011U, 0x5739b3e5U, 0xa55230e6U
-      /* 120 */  , 0xfb410cc2U, 0x092a8fc1U, 0x1a7a7c35U, 0xe811ff36U, 0x3cdb9bddU, 0xceb018deU, 0xdde0eb2aU, 0x2f8b6829U
-      /* 128 */  , 0x82f63b78U, 0x709db87bU, 0x63cd4b8fU, 0x91a6c88cU, 0x456cac67U, 0xb7072f64U, 0xa457dc90U, 0x563c5f93U
-      /* 136 */  , 0x082f63b7U, 0xfa44e0b4U, 0xe9141340U, 0x1b7f9043U, 0xcfb5f4a8U, 0x3dde77abU, 0x2e8e845fU, 0xdce5075cU
-      /* 144 */  , 0x92a8fc17U, 0x60c37f14U, 0x73938ce0U, 0x81f80fe3U, 0x55326b08U, 0xa759e80bU, 0xb4091bffU, 0x466298fcU
-      /* 152 */  , 0x1871a4d8U, 0xea1a27dbU, 0xf94ad42fU, 0x0b21572cU, 0xdfeb33c7U, 0x2d80b0c4U, 0x3ed04330U, 0xccbbc033U
-      /* 160 */  , 0xa24bb5a6U, 0x502036a5U, 0x4370c551U, 0xb11b4652U, 0x65d122b9U, 0x97baa1baU, 0x84ea524eU, 0x7681d14dU
-      /* 168 */  , 0x2892ed69U, 0xdaf96e6aU, 0xc9a99d9eU, 0x3bc21e9dU, 0xef087a76U, 0x1d63f975U, 0x0e330a81U, 0xfc588982U
-      /* 176 */  , 0xb21572c9U, 0x407ef1caU, 0x532e023eU, 0xa145813dU, 0x758fe5d6U, 0x87e466d5U, 0x94b49521U, 0x66df1622U
-      /* 184 */  , 0x38cc2a06U, 0xcaa7a905U, 0xd9f75af1U, 0x2b9cd9f2U, 0xff56bd19U, 0x0d3d3e1aU, 0x1e6dcdeeU, 0xec064eedU
-      /* 192 */  , 0xc38d26c4U, 0x31e6a5c7U, 0x22b65633U, 0xd0ddd530U, 0x0417b1dbU, 0xf67c32d8U, 0xe52cc12cU, 0x1747422fU
-      /* 200 */  , 0x49547e0bU, 0xbb3ffd08U, 0xa86f0efcU, 0x5a048dffU, 0x8ecee914U, 0x7ca56a17U, 0x6ff599e3U, 0x9d9e1ae0U
-      /* 208 */  , 0xd3d3e1abU, 0x21b862a8U, 0x32e8915cU, 0xc083125fU, 0x144976b4U, 0xe622f5b7U, 0xf5720643U, 0x07198540U
-      /* 216 */  , 0x590ab964U, 0xab613a67U, 0xb831c993U, 0x4a5a4a90U, 0x9e902e7bU, 0x6cfbad78U, 0x7fab5e8cU, 0x8dc0dd8fU
-      /* 224 */  , 0xe330a81aU, 0x115b2b19U, 0x020bd8edU, 0xf0605beeU, 0x24aa3f05U, 0xd6c1bc06U, 0xc5914ff2U, 0x37faccf1U
-      /* 232 */  , 0x69e9f0d5U, 0x9b8273d6U, 0x88d28022U, 0x7ab90321U, 0xae7367caU, 0x5c18e4c9U, 0x4f48173dU, 0xbd23943eU
-      /* 240 */  , 0xf36e6f75U, 0x0105ec76U, 0x12551f82U, 0xe03e9c81U, 0x34f4f86aU, 0xc69f7b69U, 0xd5cf889dU, 0x27a40b9eU
-      /* 248 */  , 0x79b737baU, 0x8bdcb4b9U, 0x988c474dU, 0x6ae7c44eU, 0xbe2da0a5U, 0x4c4623a6U, 0x5f16d052U, 0xad7d5351U
-    }
-  #ifdef  CRC32_BYFOUR
-    ,
-    /* CRC32C table 1 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x13a29877U, 0x274530eeU, 0x34e7a899U, 0x4e8a61dcU, 0x5d28f9abU, 0x69cf5132U, 0x7a6dc945U
-      /* 8 */  , 0x9d14c3b8U, 0x8eb65bcfU, 0xba51f356U, 0xa9f36b21U, 0xd39ea264U, 0xc03c3a13U, 0xf4db928aU, 0xe7790afdU
-      /* 16 */  , 0x3fc5f181U, 0x2c6769f6U, 0x1880c16fU, 0x0b225918U, 0x714f905dU, 0x62ed082aU, 0x560aa0b3U, 0x45a838c4U
-      /* 24 */  , 0xa2d13239U, 0xb173aa4eU, 0x859402d7U, 0x96369aa0U, 0xec5b53e5U, 0xfff9cb92U, 0xcb1e630bU, 0xd8bcfb7cU
-      /* 32 */  , 0x7f8be302U, 0x6c297b75U, 0x58ced3ecU, 0x4b6c4b9bU, 0x310182deU, 0x22a31aa9U, 0x1644b230U, 0x05e62a47U
-      /* 40 */  , 0xe29f20baU, 0xf13db8cdU, 0xc5da1054U, 0xd6788823U, 0xac154166U, 0xbfb7d911U, 0x8b507188U, 0x98f2e9ffU
-      /* 48 */  , 0x404e1283U, 0x53ec8af4U, 0x670b226dU, 0x74a9ba1aU, 0x0ec4735fU, 0x1d66eb28U, 0x298143b1U, 0x3a23dbc6U
-      /* 56 */  , 0xdd5ad13bU, 0xcef8494cU, 0xfa1fe1d5U, 0xe9bd79a2U, 0x93d0b0e7U, 0x80722890U, 0xb4958009U, 0xa737187eU
-      /* 64 */  , 0xff17c604U, 0xecb55e73U, 0xd852f6eaU, 0xcbf06e9dU, 0xb19da7d8U, 0xa23f3fafU, 0x96d89736U, 0x857a0f41U
-      /* 72 */  , 0x620305bcU, 0x71a19dcbU, 0x45463552U, 0x56e4ad25U, 0x2c896460U, 0x3f2bfc17U, 0x0bcc548eU, 0x186eccf9U
-      /* 80 */  , 0xc0d23785U, 0xd370aff2U, 0xe797076bU, 0xf4359f1cU, 0x8e585659U, 0x9dface2eU, 0xa91d66b7U, 0xbabffec0U
-      /* 88 */  , 0x5dc6f43dU, 0x4e646c4aU, 0x7a83c4d3U, 0x69215ca4U, 0x134c95e1U, 0x00ee0d96U, 0x3409a50fU, 0x27ab3d78U
-      /* 96 */  , 0x809c2506U, 0x933ebd71U, 0xa7d915e8U, 0xb47b8d9fU, 0xce1644daU, 0xddb4dcadU, 0xe9537434U, 0xfaf1ec43U
-      /* 104 */  , 0x1d88e6beU, 0x0e2a7ec9U, 0x3acdd650U, 0x296f4e27U, 0x53028762U, 0x40a01f15U, 0x7447b78cU, 0x67e52ffbU
-      /* 112 */  , 0xbf59d487U, 0xacfb4cf0U, 0x981ce469U, 0x8bbe7c1eU, 0xf1d3b55bU, 0xe2712d2cU, 0xd69685b5U, 0xc5341dc2U
-      /* 120 */  , 0x224d173fU, 0x31ef8f48U, 0x050827d1U, 0x16aabfa6U, 0x6cc776e3U, 0x7f65ee94U, 0x4b82460dU, 0x5820de7aU
-      /* 128 */  , 0xfbc3faf9U, 0xe861628eU, 0xdc86ca17U, 0xcf245260U, 0xb5499b25U, 0xa6eb0352U, 0x920cabcbU, 0x81ae33bcU
-      /* 136 */  , 0x66d73941U, 0x7575a136U, 0x419209afU, 0x523091d8U, 0x285d589dU, 0x3bffc0eaU, 0x0f186873U, 0x1cbaf004U
-      /* 144 */  , 0xc4060b78U, 0xd7a4930fU, 0xe3433b96U, 0xf0e1a3e1U, 0x8a8c6aa4U, 0x992ef2d3U, 0xadc95a4aU, 0xbe6bc23dU
-      /* 152 */  , 0x5912c8c0U, 0x4ab050b7U, 0x7e57f82eU, 0x6df56059U, 0x1798a91cU, 0x043a316bU, 0x30dd99f2U, 0x237f0185U
-      /* 160 */  , 0x844819fbU, 0x97ea818cU, 0xa30d2915U, 0xb0afb162U, 0xcac27827U, 0xd960e050U, 0xed8748c9U, 0xfe25d0beU
-      /* 168 */  , 0x195cda43U, 0x0afe4234U, 0x3e19eaadU, 0x2dbb72daU, 0x57d6bb9fU, 0x447423e8U, 0x70938b71U, 0x63311306U
-      /* 176 */  , 0xbb8de87aU, 0xa82f700dU, 0x9cc8d894U, 0x8f6a40e3U, 0xf50789a6U, 0xe6a511d1U, 0xd242b948U, 0xc1e0213fU
-      /* 184 */  , 0x26992bc2U, 0x353bb3b5U, 0x01dc1b2cU, 0x127e835bU, 0x68134a1eU, 0x7bb1d269U, 0x4f567af0U, 0x5cf4e287U
-      /* 192 */  , 0x04d43cfdU, 0x1776a48aU, 0x23910c13U, 0x30339464U, 0x4a5e5d21U, 0x59fcc556U, 0x6d1b6dcfU, 0x7eb9f5b8U
-      /* 200 */  , 0x99c0ff45U, 0x8a626732U, 0xbe85cfabU, 0xad2757dcU, 0xd74a9e99U, 0xc4e806eeU, 0xf00fae77U, 0xe3ad3600U
-      /* 208 */  , 0x3b11cd7cU, 0x28b3550bU, 0x1c54fd92U, 0x0ff665e5U, 0x759baca0U, 0x663934d7U, 0x52de9c4eU, 0x417c0439U
-      /* 216 */  , 0xa6050ec4U, 0xb5a796b3U, 0x81403e2aU, 0x92e2a65dU, 0xe88f6f18U, 0xfb2df76fU, 0xcfca5ff6U, 0xdc68c781U
-      /* 224 */  , 0x7b5fdfffU, 0x68fd4788U, 0x5c1aef11U, 0x4fb87766U, 0x35d5be23U, 0x26772654U, 0x12908ecdU, 0x013216baU
-      /* 232 */  , 0xe64b1c47U, 0xf5e98430U, 0xc10e2ca9U, 0xd2acb4deU, 0xa8c17d9bU, 0xbb63e5ecU, 0x8f844d75U, 0x9c26d502U
-      /* 240 */  , 0x449a2e7eU, 0x5738b609U, 0x63df1e90U, 0x707d86e7U, 0x0a104fa2U, 0x19b2d7d5U, 0x2d557f4cU, 0x3ef7e73bU
-      /* 248 */  , 0xd98eedc6U, 0xca2c75b1U, 0xfecbdd28U, 0xed69455fU, 0x97048c1aU, 0x84a6146dU, 0xb041bcf4U, 0xa3e32483U
-    }
-    ,
-    /* CRC32C table 2 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0xa541927eU, 0x4f6f520dU, 0xea2ec073U, 0x9edea41aU, 0x3b9f3664U, 0xd1b1f617U, 0x74f06469U
-      /* 8 */  , 0x38513ec5U, 0x9d10acbbU, 0x773e6cc8U, 0xd27ffeb6U, 0xa68f9adfU, 0x03ce08a1U, 0xe9e0c8d2U, 0x4ca15aacU
-      /* 16 */  , 0x70a27d8aU, 0xd5e3eff4U, 0x3fcd2f87U, 0x9a8cbdf9U, 0xee7cd990U, 0x4b3d4beeU, 0xa1138b9dU, 0x045219e3U
-      /* 24 */  , 0x48f3434fU, 0xedb2d131U, 0x079c1142U, 0xa2dd833cU, 0xd62de755U, 0x736c752bU, 0x9942b558U, 0x3c032726U
-      /* 32 */  , 0xe144fb14U, 0x4405696aU, 0xae2ba919U, 0x0b6a3b67U, 0x7f9a5f0eU, 0xdadbcd70U, 0x30f50d03U, 0x95b49f7dU
-      /* 40 */  , 0xd915c5d1U, 0x7c5457afU, 0x967a97dcU, 0x333b05a2U, 0x47cb61cbU, 0xe28af3b5U, 0x08a433c6U, 0xade5a1b8U
-      /* 48 */  , 0x91e6869eU, 0x34a714e0U, 0xde89d493U, 0x7bc846edU, 0x0f382284U, 0xaa79b0faU, 0x40577089U, 0xe516e2f7U
-      /* 56 */  , 0xa9b7b85bU, 0x0cf62a25U, 0xe6d8ea56U, 0x43997828U, 0x37691c41U, 0x92288e3fU, 0x78064e4cU, 0xdd47dc32U
-      /* 64 */  , 0xc76580d9U, 0x622412a7U, 0x880ad2d4U, 0x2d4b40aaU, 0x59bb24c3U, 0xfcfab6bdU, 0x16d476ceU, 0xb395e4b0U
-      /* 72 */  , 0xff34be1cU, 0x5a752c62U, 0xb05bec11U, 0x151a7e6fU, 0x61ea1a06U, 0xc4ab8878U, 0x2e85480bU, 0x8bc4da75U
-      /* 80 */  , 0xb7c7fd53U, 0x12866f2dU, 0xf8a8af5eU, 0x5de93d20U, 0x29195949U, 0x8c58cb37U, 0x66760b44U, 0xc337993aU
-      /* 88 */  , 0x8f96c396U, 0x2ad751e8U, 0xc0f9919bU, 0x65b803e5U, 0x1148678cU, 0xb409f5f2U, 0x5e273581U, 0xfb66a7ffU
-      /* 96 */  , 0x26217bcdU, 0x8360e9b3U, 0x694e29c0U, 0xcc0fbbbeU, 0xb8ffdfd7U, 0x1dbe4da9U, 0xf7908ddaU, 0x52d11fa4U
-      /* 104 */  , 0x1e704508U, 0xbb31d776U, 0x511f1705U, 0xf45e857bU, 0x80aee112U, 0x25ef736cU, 0xcfc1b31fU, 0x6a802161U
-      /* 112 */  , 0x56830647U, 0xf3c29439U, 0x19ec544aU, 0xbcadc634U, 0xc85da25dU, 0x6d1c3023U, 0x8732f050U, 0x2273622eU
-      /* 120 */  , 0x6ed23882U, 0xcb93aafcU, 0x21bd6a8fU, 0x84fcf8f1U, 0xf00c9c98U, 0x554d0ee6U, 0xbf63ce95U, 0x1a225cebU
-      /* 128 */  , 0x8b277743U, 0x2e66e53dU, 0xc448254eU, 0x6109b730U, 0x15f9d359U, 0xb0b84127U, 0x5a968154U, 0xffd7132aU
-      /* 136 */  , 0xb3764986U, 0x1637dbf8U, 0xfc191b8bU, 0x595889f5U, 0x2da8ed9cU, 0x88e97fe2U, 0x62c7bf91U, 0xc7862defU
-      /* 144 */  , 0xfb850ac9U, 0x5ec498b7U, 0xb4ea58c4U, 0x11abcabaU, 0x655baed3U, 0xc01a3cadU, 0x2a34fcdeU, 0x8f756ea0U
-      /* 152 */  , 0xc3d4340cU, 0x6695a672U, 0x8cbb6601U, 0x29faf47fU, 0x5d0a9016U, 0xf84b0268U, 0x1265c21bU, 0xb7245065U
-      /* 160 */  , 0x6a638c57U, 0xcf221e29U, 0x250cde5aU, 0x804d4c24U, 0xf4bd284dU, 0x51fcba33U, 0xbbd27a40U, 0x1e93e83eU
-      /* 168 */  , 0x5232b292U, 0xf77320ecU, 0x1d5de09fU, 0xb81c72e1U, 0xccec1688U, 0x69ad84f6U, 0x83834485U, 0x26c2d6fbU
-      /* 176 */  , 0x1ac1f1ddU, 0xbf8063a3U, 0x55aea3d0U, 0xf0ef31aeU, 0x841f55c7U, 0x215ec7b9U, 0xcb7007caU, 0x6e3195b4U
-      /* 184 */  , 0x2290cf18U, 0x87d15d66U, 0x6dff9d15U, 0xc8be0f6bU, 0xbc4e6b02U, 0x190ff97cU, 0xf321390fU, 0x5660ab71U
-      /* 192 */  , 0x4c42f79aU, 0xe90365e4U, 0x032da597U, 0xa66c37e9U, 0xd29c5380U, 0x77ddc1feU, 0x9df3018dU, 0x38b293f3U
-      /* 200 */  , 0x7413c95fU, 0xd1525b21U, 0x3b7c9b52U, 0x9e3d092cU, 0xeacd6d45U, 0x4f8cff3bU, 0xa5a23f48U, 0x00e3ad36U
-      /* 208 */  , 0x3ce08a10U, 0x99a1186eU, 0x738fd81dU, 0xd6ce4a63U, 0xa23e2e0aU, 0x077fbc74U, 0xed517c07U, 0x4810ee79U
-      /* 216 */  , 0x04b1b4d5U, 0xa1f026abU, 0x4bdee6d8U, 0xee9f74a6U, 0x9a6f10cfU, 0x3f2e82b1U, 0xd50042c2U, 0x7041d0bcU
-      /* 224 */  , 0xad060c8eU, 0x08479ef0U, 0xe2695e83U, 0x4728ccfdU, 0x33d8a894U, 0x96993aeaU, 0x7cb7fa99U, 0xd9f668e7U
-      /* 232 */  , 0x9557324bU, 0x3016a035U, 0xda386046U, 0x7f79f238U, 0x0b899651U, 0xaec8042fU, 0x44e6c45cU, 0xe1a75622U
-      /* 240 */  , 0xdda47104U, 0x78e5e37aU, 0x92cb2309U, 0x378ab177U, 0x437ad51eU, 0xe63b4760U, 0x0c158713U, 0xa954156dU
-      /* 248 */  , 0xe5f54fc1U, 0x40b4ddbfU, 0xaa9a1dccU, 0x0fdb8fb2U, 0x7b2bebdbU, 0xde6a79a5U, 0x3444b9d6U, 0x91052ba8U
-    }
-    ,
-    /* CRC32C table 3 for quad-bytes (little-endian), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0xdd45aab8U, 0xbf672381U, 0x62228939U, 0x7b2231f3U, 0xa6679b4bU, 0xc4451272U, 0x1900b8caU
-      /* 8 */  , 0xf64463e6U, 0x2b01c95eU, 0x49234067U, 0x9466eadfU, 0x8d665215U, 0x5023f8adU, 0x32017194U, 0xef44db2cU
-      /* 16 */  , 0xe964b13dU, 0x34211b85U, 0x560392bcU, 0x8b463804U, 0x924680ceU, 0x4f032a76U, 0x2d21a34fU, 0xf06409f7U
-      /* 24 */  , 0x1f20d2dbU, 0xc2657863U, 0xa047f15aU, 0x7d025be2U, 0x6402e328U, 0xb9474990U, 0xdb65c0a9U, 0x06206a11U
-      /* 32 */  , 0xd725148bU, 0x0a60be33U, 0x6842370aU, 0xb5079db2U, 0xac072578U, 0x71428fc0U, 0x136006f9U, 0xce25ac41U
-      /* 40 */  , 0x2161776dU, 0xfc24ddd5U, 0x9e0654ecU, 0x4343fe54U, 0x5a43469eU, 0x8706ec26U, 0xe524651fU, 0x3861cfa7U
-      /* 48 */  , 0x3e41a5b6U, 0xe3040f0eU, 0x81268637U, 0x5c632c8fU, 0x45639445U, 0x98263efdU, 0xfa04b7c4U, 0x27411d7cU
-      /* 56 */  , 0xc805c650U, 0x15406ce8U, 0x7762e5d1U, 0xaa274f69U, 0xb327f7a3U, 0x6e625d1bU, 0x0c40d422U, 0xd1057e9aU
-      /* 64 */  , 0xaba65fe7U, 0x76e3f55fU, 0x14c17c66U, 0xc984d6deU, 0xd0846e14U, 0x0dc1c4acU, 0x6fe34d95U, 0xb2a6e72dU
-      /* 72 */  , 0x5de23c01U, 0x80a796b9U, 0xe2851f80U, 0x3fc0b538U, 0x26c00df2U, 0xfb85a74aU, 0x99a72e73U, 0x44e284cbU
-      /* 80 */  , 0x42c2eedaU, 0x9f874462U, 0xfda5cd5bU, 0x20e067e3U, 0x39e0df29U, 0xe4a57591U, 0x8687fca8U, 0x5bc25610U
-      /* 88 */  , 0xb4868d3cU, 0x69c32784U, 0x0be1aebdU, 0xd6a40405U, 0xcfa4bccfU, 0x12e11677U, 0x70c39f4eU, 0xad8635f6U
-      /* 96 */  , 0x7c834b6cU, 0xa1c6e1d4U, 0xc3e468edU, 0x1ea1c255U, 0x07a17a9fU, 0xdae4d027U, 0xb8c6591eU, 0x6583f3a6U
-      /* 104 */  , 0x8ac7288aU, 0x57828232U, 0x35a00b0bU, 0xe8e5a1b3U, 0xf1e51979U, 0x2ca0b3c1U, 0x4e823af8U, 0x93c79040U
-      /* 112 */  , 0x95e7fa51U, 0x48a250e9U, 0x2a80d9d0U, 0xf7c57368U, 0xeec5cba2U, 0x3380611aU, 0x51a2e823U, 0x8ce7429bU
-      /* 120 */  , 0x63a399b7U, 0xbee6330fU, 0xdcc4ba36U, 0x0181108eU, 0x1881a844U, 0xc5c402fcU, 0xa7e68bc5U, 0x7aa3217dU
-      /* 128 */  , 0x52a0c93fU, 0x8fe56387U, 0xedc7eabeU, 0x30824006U, 0x2982f8ccU, 0xf4c75274U, 0x96e5db4dU, 0x4ba071f5U
-      /* 136 */  , 0xa4e4aad9U, 0x79a10061U, 0x1b838958U, 0xc6c623e0U, 0xdfc69b2aU, 0x02833192U, 0x60a1b8abU, 0xbde41213U
-      /* 144 */  , 0xbbc47802U, 0x6681d2baU, 0x04a35b83U, 0xd9e6f13bU, 0xc0e649f1U, 0x1da3e349U, 0x7f816a70U, 0xa2c4c0c8U
-      /* 152 */  , 0x4d801be4U, 0x90c5b15cU, 0xf2e73865U, 0x2fa292ddU, 0x36a22a17U, 0xebe780afU, 0x89c50996U, 0x5480a32eU
-      /* 160 */  , 0x8585ddb4U, 0x58c0770cU, 0x3ae2fe35U, 0xe7a7548dU, 0xfea7ec47U, 0x23e246ffU, 0x41c0cfc6U, 0x9c85657eU
-      /* 168 */  , 0x73c1be52U, 0xae8414eaU, 0xcca69dd3U, 0x11e3376bU, 0x08e38fa1U, 0xd5a62519U, 0xb784ac20U, 0x6ac10698U
-      /* 176 */  , 0x6ce16c89U, 0xb1a4c631U, 0xd3864f08U, 0x0ec3e5b0U, 0x17c35d7aU, 0xca86f7c2U, 0xa8a47efbU, 0x75e1d443U
-      /* 184 */  , 0x9aa50f6fU, 0x47e0a5d7U, 0x25c22ceeU, 0xf8878656U, 0xe1873e9cU, 0x3cc29424U, 0x5ee01d1dU, 0x83a5b7a5U
-      /* 192 */  , 0xf90696d8U, 0x24433c60U, 0x4661b559U, 0x9b241fe1U, 0x8224a72bU, 0x5f610d93U, 0x3d4384aaU, 0xe0062e12U
-      /* 200 */  , 0x0f42f53eU, 0xd2075f86U, 0xb025d6bfU, 0x6d607c07U, 0x7460c4cdU, 0xa9256e75U, 0xcb07e74cU, 0x16424df4U
-      /* 208 */  , 0x106227e5U, 0xcd278d5dU, 0xaf050464U, 0x7240aedcU, 0x6b401616U, 0xb605bcaeU, 0xd4273597U, 0x09629f2fU
-      /* 216 */  , 0xe6264403U, 0x3b63eebbU, 0x59416782U, 0x8404cd3aU, 0x9d0475f0U, 0x4041df48U, 0x22635671U, 0xff26fcc9U
-      /* 224 */  , 0x2e238253U, 0xf36628ebU, 0x9144a1d2U, 0x4c010b6aU, 0x5501b3a0U, 0x88441918U, 0xea669021U, 0x37233a99U
-      /* 232 */  , 0xd867e1b5U, 0x05224b0dU, 0x6700c234U, 0xba45688cU, 0xa345d046U, 0x7e007afeU, 0x1c22f3c7U, 0xc167597fU
-      /* 240 */  , 0xc747336eU, 0x1a0299d6U, 0x782010efU, 0xa565ba57U, 0xbc65029dU, 0x6120a825U, 0x0302211cU, 0xde478ba4U
-      /* 248 */  , 0x31035088U, 0xec46fa30U, 0x8e647309U, 0x5321d9b1U, 0x4a21617bU, 0x9764cbc3U, 0xf54642faU, 0x2803e842U
-    }
-    ,
-    /* CRC32C table 4 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x03836bf2U, 0xf7703be1U, 0xf4f35013U, 0x1f979ac7U, 0x1c14f135U, 0xe8e7a126U, 0xeb64cad4U
-      /* 8 */  , 0xcf58d98aU, 0xccdbb278U, 0x3828e26bU, 0x3bab8999U, 0xd0cf434dU, 0xd34c28bfU, 0x27bf78acU, 0x243c135eU
-      /* 16 */  , 0x6fc75e10U, 0x6c4435e2U, 0x98b765f1U, 0x9b340e03U, 0x7050c4d7U, 0x73d3af25U, 0x8720ff36U, 0x84a394c4U
-      /* 24 */  , 0xa09f879aU, 0xa31cec68U, 0x57efbc7bU, 0x546cd789U, 0xbf081d5dU, 0xbc8b76afU, 0x487826bcU, 0x4bfb4d4eU
-      /* 32 */  , 0xde8ebd20U, 0xdd0dd6d2U, 0x29fe86c1U, 0x2a7ded33U, 0xc11927e7U, 0xc29a4c15U, 0x36691c06U, 0x35ea77f4U
-      /* 40 */  , 0x11d664aaU, 0x12550f58U, 0xe6a65f4bU, 0xe52534b9U, 0x0e41fe6dU, 0x0dc2959fU, 0xf931c58cU, 0xfab2ae7eU
-      /* 48 */  , 0xb149e330U, 0xb2ca88c2U, 0x4639d8d1U, 0x45bab323U, 0xaede79f7U, 0xad5d1205U, 0x59ae4216U, 0x5a2d29e4U
-      /* 56 */  , 0x7e113abaU, 0x7d925148U, 0x8961015bU, 0x8ae26aa9U, 0x6186a07dU, 0x6205cb8fU, 0x96f69b9cU, 0x9575f06eU
-      /* 64 */  , 0xbc1d7b41U, 0xbf9e10b3U, 0x4b6d40a0U, 0x48ee2b52U, 0xa38ae186U, 0xa0098a74U, 0x54fada67U, 0x5779b195U
-      /* 72 */  , 0x7345a2cbU, 0x70c6c939U, 0x8435992aU, 0x87b6f2d8U, 0x6cd2380cU, 0x6f5153feU, 0x9ba203edU, 0x9821681fU
-      /* 80 */  , 0xd3da2551U, 0xd0594ea3U, 0x24aa1eb0U, 0x27297542U, 0xcc4dbf96U, 0xcfced464U, 0x3b3d8477U, 0x38beef85U
-      /* 88 */  , 0x1c82fcdbU, 0x1f019729U, 0xebf2c73aU, 0xe871acc8U, 0x0315661cU, 0x00960deeU, 0xf4655dfdU, 0xf7e6360fU
-      /* 96 */  , 0x6293c661U, 0x6110ad93U, 0x95e3fd80U, 0x96609672U, 0x7d045ca6U, 0x7e873754U, 0x8a746747U, 0x89f70cb5U
-      /* 104 */  , 0xadcb1febU, 0xae487419U, 0x5abb240aU, 0x59384ff8U, 0xb25c852cU, 0xb1dfeedeU, 0x452cbecdU, 0x46afd53fU
-      /* 112 */  , 0x0d549871U, 0x0ed7f383U, 0xfa24a390U, 0xf9a7c862U, 0x12c302b6U, 0x11406944U, 0xe5b33957U, 0xe63052a5U
-      /* 120 */  , 0xc20c41fbU, 0xc18f2a09U, 0x357c7a1aU, 0x36ff11e8U, 0xdd9bdb3cU, 0xde18b0ceU, 0x2aebe0ddU, 0x29688b2fU
-      /* 128 */  , 0x783bf682U, 0x7bb89d70U, 0x8f4bcd63U, 0x8cc8a691U, 0x67ac6c45U, 0x642f07b7U, 0x90dc57a4U, 0x935f3c56U
-      /* 136 */  , 0xb7632f08U, 0xb4e044faU, 0x401314e9U, 0x43907f1bU, 0xa8f4b5cfU, 0xab77de3dU, 0x5f848e2eU, 0x5c07e5dcU
-      /* 144 */  , 0x17fca892U, 0x147fc360U, 0xe08c9373U, 0xe30ff881U, 0x086b3255U, 0x0be859a7U, 0xff1b09b4U, 0xfc986246U
-      /* 152 */  , 0xd8a47118U, 0xdb271aeaU, 0x2fd44af9U, 0x2c57210bU, 0xc733ebdfU, 0xc4b0802dU, 0x3043d03eU, 0x33c0bbccU
-      /* 160 */  , 0xa6b54ba2U, 0xa5362050U, 0x51c57043U, 0x52461bb1U, 0xb922d165U, 0xbaa1ba97U, 0x4e52ea84U, 0x4dd18176U
-      /* 168 */  , 0x69ed9228U, 0x6a6ef9daU, 0x9e9da9c9U, 0x9d1ec23bU, 0x767a08efU, 0x75f9631dU, 0x810a330eU, 0x828958fcU
-      /* 176 */  , 0xc97215b2U, 0xcaf17e40U, 0x3e022e53U, 0x3d8145a1U, 0xd6e58f75U, 0xd566e487U, 0x2195b494U, 0x2216df66U
-      /* 184 */  , 0x062acc38U, 0x05a9a7caU, 0xf15af7d9U, 0xf2d99c2bU, 0x19bd56ffU, 0x1a3e3d0dU, 0xeecd6d1eU, 0xed4e06ecU
-      /* 192 */  , 0xc4268dc3U, 0xc7a5e631U, 0x3356b622U, 0x30d5ddd0U, 0xdbb11704U, 0xd8327cf6U, 0x2cc12ce5U, 0x2f424717U
-      /* 200 */  , 0x0b7e5449U, 0x08fd3fbbU, 0xfc0e6fa8U, 0xff8d045aU, 0x14e9ce8eU, 0x176aa57cU, 0xe399f56fU, 0xe01a9e9dU
-      /* 208 */  , 0xabe1d3d3U, 0xa862b821U, 0x5c91e832U, 0x5f1283c0U, 0xb4764914U, 0xb7f522e6U, 0x430672f5U, 0x40851907U
-      /* 216 */  , 0x64b90a59U, 0x673a61abU, 0x93c931b8U, 0x904a5a4aU, 0x7b2e909eU, 0x78adfb6cU, 0x8c5eab7fU, 0x8fddc08dU
-      /* 224 */  , 0x1aa830e3U, 0x192b5b11U, 0xedd80b02U, 0xee5b60f0U, 0x053faa24U, 0x06bcc1d6U, 0xf24f91c5U, 0xf1ccfa37U
-      /* 232 */  , 0xd5f0e969U, 0xd673829bU, 0x2280d288U, 0x2103b97aU, 0xca6773aeU, 0xc9e4185cU, 0x3d17484fU, 0x3e9423bdU
-      /* 240 */  , 0x756f6ef3U, 0x76ec0501U, 0x821f5512U, 0x819c3ee0U, 0x6af8f434U, 0x697b9fc6U, 0x9d88cfd5U, 0x9e0ba427U
-      /* 248 */  , 0xba37b779U, 0xb9b4dc8bU, 0x4d478c98U, 0x4ec4e76aU, 0xa5a02dbeU, 0xa623464cU, 0x52d0165fU, 0x51537dadU
-    }
-    ,
-    /* CRC32C table 5 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x7798a213U, 0xee304527U, 0x99a8e734U, 0xdc618a4eU, 0xabf9285dU, 0x3251cf69U, 0x45c96d7aU
-      /* 8 */  , 0xb8c3149dU, 0xcf5bb68eU, 0x56f351baU, 0x216bf3a9U, 0x64a29ed3U, 0x133a3cc0U, 0x8a92dbf4U, 0xfd0a79e7U
-      /* 16 */  , 0x81f1c53fU, 0xf669672cU, 0x6fc18018U, 0x1859220bU, 0x5d904f71U, 0x2a08ed62U, 0xb3a00a56U, 0xc438a845U
-      /* 24 */  , 0x3932d1a2U, 0x4eaa73b1U, 0xd7029485U, 0xa09a3696U, 0xe5535becU, 0x92cbf9ffU, 0x0b631ecbU, 0x7cfbbcd8U
-      /* 32 */  , 0x02e38b7fU, 0x757b296cU, 0xecd3ce58U, 0x9b4b6c4bU, 0xde820131U, 0xa91aa322U, 0x30b24416U, 0x472ae605U
-      /* 40 */  , 0xba209fe2U, 0xcdb83df1U, 0x5410dac5U, 0x238878d6U, 0x664115acU, 0x11d9b7bfU, 0x8871508bU, 0xffe9f298U
-      /* 48 */  , 0x83124e40U, 0xf48aec53U, 0x6d220b67U, 0x1abaa974U, 0x5f73c40eU, 0x28eb661dU, 0xb1438129U, 0xc6db233aU
-      /* 56 */  , 0x3bd15addU, 0x4c49f8ceU, 0xd5e11ffaU, 0xa279bde9U, 0xe7b0d093U, 0x90287280U, 0x098095b4U, 0x7e1837a7U
-      /* 64 */  , 0x04c617ffU, 0x735eb5ecU, 0xeaf652d8U, 0x9d6ef0cbU, 0xd8a79db1U, 0xaf3f3fa2U, 0x3697d896U, 0x410f7a85U
-      /* 72 */  , 0xbc050362U, 0xcb9da171U, 0x52354645U, 0x25ade456U, 0x6064892cU, 0x17fc2b3fU, 0x8e54cc0bU, 0xf9cc6e18U
-      /* 80 */  , 0x8537d2c0U, 0xf2af70d3U, 0x6b0797e7U, 0x1c9f35f4U, 0x5956588eU, 0x2ecefa9dU, 0xb7661da9U, 0xc0febfbaU
-      /* 88 */  , 0x3df4c65dU, 0x4a6c644eU, 0xd3c4837aU, 0xa45c2169U, 0xe1954c13U, 0x960dee00U, 0x0fa50934U, 0x783dab27U
-      /* 96 */  , 0x06259c80U, 0x71bd3e93U, 0xe815d9a7U, 0x9f8d7bb4U, 0xda4416ceU, 0xaddcb4ddU, 0x347453e9U, 0x43ecf1faU
-      /* 104 */  , 0xbee6881dU, 0xc97e2a0eU, 0x50d6cd3aU, 0x274e6f29U, 0x62870253U, 0x151fa040U, 0x8cb74774U, 0xfb2fe567U
-      /* 112 */  , 0x87d459bfU, 0xf04cfbacU, 0x69e41c98U, 0x1e7cbe8bU, 0x5bb5d3f1U, 0x2c2d71e2U, 0xb58596d6U, 0xc21d34c5U
-      /* 120 */  , 0x3f174d22U, 0x488fef31U, 0xd1270805U, 0xa6bfaa16U, 0xe376c76cU, 0x94ee657fU, 0x0d46824bU, 0x7ade2058U
-      /* 128 */  , 0xf9fac3fbU, 0x8e6261e8U, 0x17ca86dcU, 0x605224cfU, 0x259b49b5U, 0x5203eba6U, 0xcbab0c92U, 0xbc33ae81U
-      /* 136 */  , 0x4139d766U, 0x36a17575U, 0xaf099241U, 0xd8913052U, 0x9d585d28U, 0xeac0ff3bU, 0x7368180fU, 0x04f0ba1cU
-      /* 144 */  , 0x780b06c4U, 0x0f93a4d7U, 0x963b43e3U, 0xe1a3e1f0U, 0xa46a8c8aU, 0xd3f22e99U, 0x4a5ac9adU, 0x3dc26bbeU
-      /* 152 */  , 0xc0c81259U, 0xb750b04aU, 0x2ef8577eU, 0x5960f56dU, 0x1ca99817U, 0x6b313a04U, 0xf299dd30U, 0x85017f23U
-      /* 160 */  , 0xfb194884U, 0x8c81ea97U, 0x15290da3U, 0x62b1afb0U, 0x2778c2caU, 0x50e060d9U, 0xc94887edU, 0xbed025feU
-      /* 168 */  , 0x43da5c19U, 0x3442fe0aU, 0xadea193eU, 0xda72bb2dU, 0x9fbbd657U, 0xe8237444U, 0x718b9370U, 0x06133163U
-      /* 176 */  , 0x7ae88dbbU, 0x0d702fa8U, 0x94d8c89cU, 0xe3406a8fU, 0xa68907f5U, 0xd111a5e6U, 0x48b942d2U, 0x3f21e0c1U
-      /* 184 */  , 0xc22b9926U, 0xb5b33b35U, 0x2c1bdc01U, 0x5b837e12U, 0x1e4a1368U, 0x69d2b17bU, 0xf07a564fU, 0x87e2f45cU
-      /* 192 */  , 0xfd3cd404U, 0x8aa47617U, 0x130c9123U, 0x64943330U, 0x215d5e4aU, 0x56c5fc59U, 0xcf6d1b6dU, 0xb8f5b97eU
-      /* 200 */  , 0x45ffc099U, 0x3267628aU, 0xabcf85beU, 0xdc5727adU, 0x999e4ad7U, 0xee06e8c4U, 0x77ae0ff0U, 0x0036ade3U
-      /* 208 */  , 0x7ccd113bU, 0x0b55b328U, 0x92fd541cU, 0xe565f60fU, 0xa0ac9b75U, 0xd7343966U, 0x4e9cde52U, 0x39047c41U
-      /* 216 */  , 0xc40e05a6U, 0xb396a7b5U, 0x2a3e4081U, 0x5da6e292U, 0x186f8fe8U, 0x6ff72dfbU, 0xf65fcacfU, 0x81c768dcU
-      /* 224 */  , 0xffdf5f7bU, 0x8847fd68U, 0x11ef1a5cU, 0x6677b84fU, 0x23bed535U, 0x54267726U, 0xcd8e9012U, 0xba163201U
-      /* 232 */  , 0x471c4be6U, 0x3084e9f5U, 0xa92c0ec1U, 0xdeb4acd2U, 0x9b7dc1a8U, 0xece563bbU, 0x754d848fU, 0x02d5269cU
-      /* 240 */  , 0x7e2e9a44U, 0x09b63857U, 0x901edf63U, 0xe7867d70U, 0xa24f100aU, 0xd5d7b219U, 0x4c7f552dU, 0x3be7f73eU
-      /* 248 */  , 0xc6ed8ed9U, 0xb1752ccaU, 0x28ddcbfeU, 0x5f4569edU, 0x1a8c0497U, 0x6d14a684U, 0xf4bc41b0U, 0x8324e3a3U
-    }
-    ,
-    /* CRC32C table 6 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0x7e9241a5U, 0x0d526f4fU, 0x73c02eeaU, 0x1aa4de9eU, 0x64369f3bU, 0x17f6b1d1U, 0x6964f074U
-      /* 8 */  , 0xc53e5138U, 0xbbac109dU, 0xc86c3e77U, 0xb6fe7fd2U, 0xdf9a8fa6U, 0xa108ce03U, 0xd2c8e0e9U, 0xac5aa14cU
-      /* 16 */  , 0x8a7da270U, 0xf4efe3d5U, 0x872fcd3fU, 0xf9bd8c9aU, 0x90d97ceeU, 0xee4b3d4bU, 0x9d8b13a1U, 0xe3195204U
-      /* 24 */  , 0x4f43f348U, 0x31d1b2edU, 0x42119c07U, 0x3c83dda2U, 0x55e72dd6U, 0x2b756c73U, 0x58b54299U, 0x2627033cU
-      /* 32 */  , 0x14fb44e1U, 0x6a690544U, 0x19a92baeU, 0x673b6a0bU, 0x0e5f9a7fU, 0x70cddbdaU, 0x030df530U, 0x7d9fb495U
-      /* 40 */  , 0xd1c515d9U, 0xaf57547cU, 0xdc977a96U, 0xa2053b33U, 0xcb61cb47U, 0xb5f38ae2U, 0xc633a408U, 0xb8a1e5adU
-      /* 48 */  , 0x9e86e691U, 0xe014a734U, 0x93d489deU, 0xed46c87bU, 0x8422380fU, 0xfab079aaU, 0x89705740U, 0xf7e216e5U
-      /* 56 */  , 0x5bb8b7a9U, 0x252af60cU, 0x56ead8e6U, 0x28789943U, 0x411c6937U, 0x3f8e2892U, 0x4c4e0678U, 0x32dc47ddU
-      /* 64 */  , 0xd98065c7U, 0xa7122462U, 0xd4d20a88U, 0xaa404b2dU, 0xc324bb59U, 0xbdb6fafcU, 0xce76d416U, 0xb0e495b3U
-      /* 72 */  , 0x1cbe34ffU, 0x622c755aU, 0x11ec5bb0U, 0x6f7e1a15U, 0x061aea61U, 0x7888abc4U, 0x0b48852eU, 0x75dac48bU
-      /* 80 */  , 0x53fdc7b7U, 0x2d6f8612U, 0x5eafa8f8U, 0x203de95dU, 0x49591929U, 0x37cb588cU, 0x440b7666U, 0x3a9937c3U
-      /* 88 */  , 0x96c3968fU, 0xe851d72aU, 0x9b91f9c0U, 0xe503b865U, 0x8c674811U, 0xf2f509b4U, 0x8135275eU, 0xffa766fbU
-      /* 96 */  , 0xcd7b2126U, 0xb3e96083U, 0xc0294e69U, 0xbebb0fccU, 0xd7dfffb8U, 0xa94dbe1dU, 0xda8d90f7U, 0xa41fd152U
-      /* 104 */  , 0x0845701eU, 0x76d731bbU, 0x05171f51U, 0x7b855ef4U, 0x12e1ae80U, 0x6c73ef25U, 0x1fb3c1cfU, 0x6121806aU
-      /* 112 */  , 0x47068356U, 0x3994c2f3U, 0x4a54ec19U, 0x34c6adbcU, 0x5da25dc8U, 0x23301c6dU, 0x50f03287U, 0x2e627322U
-      /* 120 */  , 0x8238d26eU, 0xfcaa93cbU, 0x8f6abd21U, 0xf1f8fc84U, 0x989c0cf0U, 0xe60e4d55U, 0x95ce63bfU, 0xeb5c221aU
-      /* 128 */  , 0x4377278bU, 0x3de5662eU, 0x4e2548c4U, 0x30b70961U, 0x59d3f915U, 0x2741b8b0U, 0x5481965aU, 0x2a13d7ffU
-      /* 136 */  , 0x864976b3U, 0xf8db3716U, 0x8b1b19fcU, 0xf5895859U, 0x9ceda82dU, 0xe27fe988U, 0x91bfc762U, 0xef2d86c7U
-      /* 144 */  , 0xc90a85fbU, 0xb798c45eU, 0xc458eab4U, 0xbacaab11U, 0xd3ae5b65U, 0xad3c1ac0U, 0xdefc342aU, 0xa06e758fU
-      /* 152 */  , 0x0c34d4c3U, 0x72a69566U, 0x0166bb8cU, 0x7ff4fa29U, 0x16900a5dU, 0x68024bf8U, 0x1bc26512U, 0x655024b7U
-      /* 160 */  , 0x578c636aU, 0x291e22cfU, 0x5ade0c25U, 0x244c4d80U, 0x4d28bdf4U, 0x33bafc51U, 0x407ad2bbU, 0x3ee8931eU
-      /* 168 */  , 0x92b23252U, 0xec2073f7U, 0x9fe05d1dU, 0xe1721cb8U, 0x8816ecccU, 0xf684ad69U, 0x85448383U, 0xfbd6c226U
-      /* 176 */  , 0xddf1c11aU, 0xa36380bfU, 0xd0a3ae55U, 0xae31eff0U, 0xc7551f84U, 0xb9c75e21U, 0xca0770cbU, 0xb495316eU
-      /* 184 */  , 0x18cf9022U, 0x665dd187U, 0x159dff6dU, 0x6b0fbec8U, 0x026b4ebcU, 0x7cf90f19U, 0x0f3921f3U, 0x71ab6056U
-      /* 192 */  , 0x9af7424cU, 0xe46503e9U, 0x97a52d03U, 0xe9376ca6U, 0x80539cd2U, 0xfec1dd77U, 0x8d01f39dU, 0xf393b238U
-      /* 200 */  , 0x5fc91374U, 0x215b52d1U, 0x529b7c3bU, 0x2c093d9eU, 0x456dcdeaU, 0x3bff8c4fU, 0x483fa2a5U, 0x36ade300U
-      /* 208 */  , 0x108ae03cU, 0x6e18a199U, 0x1dd88f73U, 0x634aced6U, 0x0a2e3ea2U, 0x74bc7f07U, 0x077c51edU, 0x79ee1048U
-      /* 216 */  , 0xd5b4b104U, 0xab26f0a1U, 0xd8e6de4bU, 0xa6749feeU, 0xcf106f9aU, 0xb1822e3fU, 0xc24200d5U, 0xbcd04170U
-      /* 224 */  , 0x8e0c06adU, 0xf09e4708U, 0x835e69e2U, 0xfdcc2847U, 0x94a8d833U, 0xea3a9996U, 0x99fab77cU, 0xe768f6d9U
-      /* 232 */  , 0x4b325795U, 0x35a01630U, 0x466038daU, 0x38f2797fU, 0x5196890bU, 0x2f04c8aeU, 0x5cc4e644U, 0x2256a7e1U
-      /* 240 */  , 0x0471a4ddU, 0x7ae3e578U, 0x0923cb92U, 0x77b18a37U, 0x1ed57a43U, 0x60473be6U, 0x1387150cU, 0x6d1554a9U
-      /* 248 */  , 0xc14ff5e5U, 0xbfddb440U, 0xcc1d9aaaU, 0xb28fdb0fU, 0xdbeb2b7bU, 0xa5796adeU, 0xd6b94434U, 0xa82b0591U
-    }
-    ,
-    /* CRC32C table 7 for quad-bytes (  big-endian ), auto-generated. DO NOT MODIFY! */
-    {
-      /* 0 */    0x00000000U, 0xb8aa45ddU, 0x812367bfU, 0x39892262U, 0xf331227bU, 0x4b9b67a6U, 0x721245c4U, 0xcab80019U
-      /* 8 */  , 0xe66344f6U, 0x5ec9012bU, 0x67402349U, 0xdfea6694U, 0x1552668dU, 0xadf82350U, 0x94710132U, 0x2cdb44efU
-      /* 16 */  , 0x3db164e9U, 0x851b2134U, 0xbc920356U, 0x0438468bU, 0xce804692U, 0x762a034fU, 0x4fa3212dU, 0xf70964f0U
-      /* 24 */  , 0xdbd2201fU, 0x637865c2U, 0x5af147a0U, 0xe25b027dU, 0x28e30264U, 0x904947b9U, 0xa9c065dbU, 0x116a2006U
-      /* 32 */  , 0x8b1425d7U, 0x33be600aU, 0x0a374268U, 0xb29d07b5U, 0x782507acU, 0xc08f4271U, 0xf9066013U, 0x41ac25ceU
-      /* 40 */  , 0x6d776121U, 0xd5dd24fcU, 0xec54069eU, 0x54fe4343U, 0x9e46435aU, 0x26ec0687U, 0x1f6524e5U, 0xa7cf6138U
-      /* 48 */  , 0xb6a5413eU, 0x0e0f04e3U, 0x37862681U, 0x8f2c635cU, 0x45946345U, 0xfd3e2698U, 0xc4b704faU, 0x7c1d4127U
-      /* 56 */  , 0x50c605c8U, 0xe86c4015U, 0xd1e56277U, 0x694f27aaU, 0xa3f727b3U, 0x1b5d626eU, 0x22d4400cU, 0x9a7e05d1U
-      /* 64 */  , 0xe75fa6abU, 0x5ff5e376U, 0x667cc114U, 0xded684c9U, 0x146e84d0U, 0xacc4c10dU, 0x954de36fU, 0x2de7a6b2U
-      /* 72 */  , 0x013ce25dU, 0xb996a780U, 0x801f85e2U, 0x38b5c03fU, 0xf20dc026U, 0x4aa785fbU, 0x732ea799U, 0xcb84e244U
-      /* 80 */  , 0xdaeec242U, 0x6244879fU, 0x5bcda5fdU, 0xe367e020U, 0x29dfe039U, 0x9175a5e4U, 0xa8fc8786U, 0x1056c25bU
-      /* 88 */  , 0x3c8d86b4U, 0x8427c369U, 0xbdaee10bU, 0x0504a4d6U, 0xcfbca4cfU, 0x7716e112U, 0x4e9fc370U, 0xf63586adU
-      /* 96 */  , 0x6c4b837cU, 0xd4e1c6a1U, 0xed68e4c3U, 0x55c2a11eU, 0x9f7aa107U, 0x27d0e4daU, 0x1e59c6b8U, 0xa6f38365U
-      /* 104 */  , 0x8a28c78aU, 0x32828257U, 0x0b0ba035U, 0xb3a1e5e8U, 0x7919e5f1U, 0xc1b3a02cU, 0xf83a824eU, 0x4090c793U
-      /* 112 */  , 0x51fae795U, 0xe950a248U, 0xd0d9802aU, 0x6873c5f7U, 0xa2cbc5eeU, 0x1a618033U, 0x23e8a251U, 0x9b42e78cU
-      /* 120 */  , 0xb799a363U, 0x0f33e6beU, 0x36bac4dcU, 0x8e108101U, 0x44a88118U, 0xfc02c4c5U, 0xc58be6a7U, 0x7d21a37aU
-      /* 128 */  , 0x3fc9a052U, 0x8763e58fU, 0xbeeac7edU, 0x06408230U, 0xccf88229U, 0x7452c7f4U, 0x4ddbe596U, 0xf571a04bU
-      /* 136 */  , 0xd9aae4a4U, 0x6100a179U, 0x5889831bU, 0xe023c6c6U, 0x2a9bc6dfU, 0x92318302U, 0xabb8a160U, 0x1312e4bdU
-      /* 144 */  , 0x0278c4bbU, 0xbad28166U, 0x835ba304U, 0x3bf1e6d9U, 0xf149e6c0U, 0x49e3a31dU, 0x706a817fU, 0xc8c0c4a2U
-      /* 152 */  , 0xe41b804dU, 0x5cb1c590U, 0x6538e7f2U, 0xdd92a22fU, 0x172aa236U, 0xaf80e7ebU, 0x9609c589U, 0x2ea38054U
-      /* 160 */  , 0xb4dd8585U, 0x0c77c058U, 0x35fee23aU, 0x8d54a7e7U, 0x47eca7feU, 0xff46e223U, 0xc6cfc041U, 0x7e65859cU
-      /* 168 */  , 0x52bec173U, 0xea1484aeU, 0xd39da6ccU, 0x6b37e311U, 0xa18fe308U, 0x1925a6d5U, 0x20ac84b7U, 0x9806c16aU
-      /* 176 */  , 0x896ce16cU, 0x31c6a4b1U, 0x084f86d3U, 0xb0e5c30eU, 0x7a5dc317U, 0xc2f786caU, 0xfb7ea4a8U, 0x43d4e175U
-      /* 184 */  , 0x6f0fa59aU, 0xd7a5e047U, 0xee2cc225U, 0x568687f8U, 0x9c3e87e1U, 0x2494c23cU, 0x1d1de05eU, 0xa5b7a583U
-      /* 192 */  , 0xd89606f9U, 0x603c4324U, 0x59b56146U, 0xe11f249bU, 0x2ba72482U, 0x930d615fU, 0xaa84433dU, 0x122e06e0U
-      /* 200 */  , 0x3ef5420fU, 0x865f07d2U, 0xbfd625b0U, 0x077c606dU, 0xcdc46074U, 0x756e25a9U, 0x4ce707cbU, 0xf44d4216U
-      /* 208 */  , 0xe5276210U, 0x5d8d27cdU, 0x640405afU, 0xdcae4072U, 0x1616406bU, 0xaebc05b6U, 0x973527d4U, 0x2f9f6209U
-      /* 216 */  , 0x034426e6U, 0xbbee633bU, 0x82674159U, 0x3acd0484U, 0xf075049dU, 0x48df4140U, 0x71566322U, 0xc9fc26ffU
-      /* 224 */  , 0x5382232eU, 0xeb2866f3U, 0xd2a14491U, 0x6a0b014cU, 0xa0b30155U, 0x18194488U, 0x219066eaU, 0x993a2337U
-      /* 232 */  , 0xb5e167d8U, 0x0d4b2205U, 0x34c20067U, 0x8c6845baU, 0x46d045a3U, 0xfe7a007eU, 0xc7f3221cU, 0x7f5967c1U
-      /* 240 */  , 0x6e3347c7U, 0xd699021aU, 0xef102078U, 0x57ba65a5U, 0x9d0265bcU, 0x25a82061U, 0x1c210203U, 0xa48b47deU
-      /* 248 */  , 0x88500331U, 0x30fa46ecU, 0x0973648eU, 0xb1d92153U, 0x7b61214aU, 0xc3cb6497U, 0xfa4246f5U, 0x42e80328U
-    }
-  #endif
-  };
-
-juint* StubRoutines::ppc64::_crc_constants = NULL;
-juint* StubRoutines::ppc64::_crc32c_constants = NULL;
--- a/src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1815,25 +1815,23 @@
     // R15_esp is callers operand stack pointer, i.e. it points to the parameters.
     const Register argP    = R15_esp;
     const Register crc     = R3_ARG1;  // crc value
-    const Register data    = R4_ARG2;  // address of java byte value (kernel_crc32 needs address)
-    const Register dataLen = R5_ARG3;  // source data len (1 byte). Not used because calling the single-byte emitter.
-    const Register table   = R6_ARG4;  // address of crc32 table
-    const Register tmp     = dataLen;  // Reuse unused len register to show we don't actually need a separate tmp here.
+    const Register data    = R4_ARG2;
+    const Register table   = R5_ARG3;  // address of crc32 table
 
     BLOCK_COMMENT("CRC32_update {");
 
     // Arguments are reversed on java expression stack
 #ifdef VM_LITTLE_ENDIAN
-    __ addi(data, argP, 0+1*wordSize); // (stack) address of byte value. Emitter expects address, not value.
+    int data_offs = 0+1*wordSize;      // (stack) address of byte value. Emitter expects address, not value.
                                        // Being passed as an int, the single byte is at offset +0.
 #else
-    __ addi(data, argP, 3+1*wordSize); // (stack) address of byte value. Emitter expects address, not value.
+    int data_offs = 3+1*wordSize;      // (stack) address of byte value. Emitter expects address, not value.
                                        // Being passed from java as an int, the single byte is at offset +3.
 #endif
-    __ lwz(crc,  2*wordSize, argP);    // Current crc state, zero extend to 64 bit to have a clean register.
-
+    __ lwz(crc, 2*wordSize, argP);     // Current crc state, zero extend to 64 bit to have a clean register.
+    __ lbz(data, data_offs, argP);     // Byte from buffer, zero-extended.
     __ load_const_optimized(table, StubRoutines::crc_table_addr(), R0);
-    __ kernel_crc32_singleByte(crc, data, dataLen, table, tmp, true);
+    __ kernel_crc32_singleByteReg(crc, data, table, true);
 
     // Restore caller sp for c2i case (from compiled) and for resized sender frame (from interpreted).
     __ resize_frame_absolute(R21_sender_SP, R11_scratch1, R0);
--- a/src/hotspot/cpu/s390/frame_s390.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/s390/frame_s390.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -111,14 +111,6 @@
   return _fp;
 }
 
-// Return true if this frame is younger (more recent activation) than
-// the frame represented by id.
-inline bool frame::is_younger(intptr_t* id) const {
-  assert(this->id() != NULL && id != NULL, "NULL frame id");
-  // Stack grows towards smaller addresses on z/Architecture.
-  return this->id() < id;
-}
-
 // Return true if this frame is older (less recent activation) than
 // the frame represented by id.
 inline bool frame::is_older(intptr_t* id) const {
--- a/src/hotspot/cpu/sparc/frame_sparc.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/sparc/frame_sparc.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -57,11 +57,6 @@
 // frame.
 inline intptr_t* frame::id(void) const { return unextended_sp(); }
 
-// Relationals on frames based
-// Return true if the frame is younger (more recent activation) than the frame represented by id
-inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
-                                                    return this->id() < id ; }
-
 // Return true if the frame is older (less recent activation) than the frame represented by id
 inline bool frame::is_older(intptr_t* id) const   { assert(this->id() != NULL && id != NULL, "NULL frame id");
                                                     return this->id() > id ; }
--- a/src/hotspot/cpu/x86/frame_x86.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/frame_x86.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -133,11 +133,6 @@
 // frame.
 inline intptr_t* frame::id(void) const { return unextended_sp(); }
 
-// Relationals on frames based
-// Return true if the frame is younger (more recent activation) than the frame represented by id
-inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
-                                                    return this->id() < id ; }
-
 // Return true if the frame is older (less recent activation) than the frame represented by id
 inline bool frame::is_older(intptr_t* id) const   { assert(this->id() != NULL && id != NULL, "NULL frame id");
                                                     return this->id() > id ; }
--- a/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -592,64 +592,19 @@
 #ifndef _LP64
 void ShenandoahBarrierSetAssembler::cmpxchg_oop(MacroAssembler* masm,
                                                 Register res, Address addr, Register oldval, Register newval,
-                                                bool exchange, bool encode, Register tmp1, Register tmp2) {
+                                                bool exchange, Register tmp1, Register tmp2) {
   // Shenandoah has no 32-bit version for this.
   Unimplemented();
 }
 #else
 void ShenandoahBarrierSetAssembler::cmpxchg_oop(MacroAssembler* masm,
                                                 Register res, Address addr, Register oldval, Register newval,
-                                                bool exchange, bool encode, Register tmp1, Register tmp2) {
-  if (!ShenandoahCASBarrier) {
-#ifdef _LP64
-    if (UseCompressedOops) {
-      if (encode) {
-        __ encode_heap_oop(oldval);
-        __ mov(rscratch1, newval);
-        __ encode_heap_oop(rscratch1);
-        newval = rscratch1;
-      }
-      if (os::is_MP()) {
-        __ lock();
-      }
-      // oldval (rax) is implicitly used by this instruction
-      __ cmpxchgl(newval, addr);
-    } else
-#endif
-      {
-        if (os::is_MP()) {
-          __ lock();
-        }
-        __ cmpxchgptr(newval, addr);
-      }
-
-    if (!exchange) {
-      assert(res != NULL, "need result register");
-      __ setb(Assembler::equal, res);
-      __ movzbl(res, res);
-    }
-    return;
-  }
-
+                                                bool exchange, Register tmp1, Register tmp2) {
   assert(ShenandoahCASBarrier, "Should only be used when CAS barrier is enabled");
   assert(oldval == rax, "must be in rax for implicit use in cmpxchg");
 
   Label retry, done;
 
-  // Apply storeval barrier to newval.
-  if (encode) {
-    storeval_barrier(masm, newval, tmp1);
-  }
-
-  if (UseCompressedOops) {
-    if (encode) {
-      __ encode_heap_oop(oldval);
-      __ mov(rscratch1, newval);
-      __ encode_heap_oop(rscratch1);
-      newval = rscratch1;
-    }
-  }
-
   // Remember oldval for retry logic below
   if (UseCompressedOops) {
     __ movl(tmp1, oldval);
--- a/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -64,7 +64,6 @@
   void write_barrier(MacroAssembler* masm, Register dst);
   void write_barrier_impl(MacroAssembler* masm, Register dst);
 
-  void storeval_barrier(MacroAssembler* masm, Register dst, Register tmp);
   void storeval_barrier_impl(MacroAssembler* masm, Register dst, Register tmp);
 
   address generate_shenandoah_wb(StubCodeGenerator* cgen);
@@ -75,6 +74,7 @@
 public:
   static address shenandoah_wb();
 
+  void storeval_barrier(MacroAssembler* masm, Register dst, Register tmp);
 #ifdef COMPILER1
   void gen_pre_barrier_stub(LIR_Assembler* ce, ShenandoahPreBarrierStub* stub);
   void gen_write_barrier_stub(LIR_Assembler* ce, ShenandoahWriteBarrierStub* stub);
@@ -83,7 +83,7 @@
 
   void cmpxchg_oop(MacroAssembler* masm,
                    Register res, Address addr, Register oldval, Register newval,
-                   bool exchange, bool encode, Register tmp1, Register tmp2);
+                   bool exchange, Register tmp1, Register tmp2);
   virtual void arraycopy_prologue(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
                                   Register src, Register dst, Register count);
   virtual void arraycopy_epilogue(MacroAssembler* masm, DecoratorSet decorators, BasicType type,
--- a/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetC1_x86.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetC1_x86.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -28,20 +28,36 @@
 #include "gc/shenandoah/shenandoahBarrierSetAssembler.hpp"
 #include "gc/shenandoah/c1/shenandoahBarrierSetC1.hpp"
 
+#define __ masm->masm()->
+
 void LIR_OpShenandoahCompareAndSwap::emit_code(LIR_Assembler* masm) {
   Register addr = _addr->as_register_lo();
   Register newval = _new_value->as_register();
   Register cmpval = _cmp_value->as_register();
   Register tmp1 = _tmp1->as_register();
   Register tmp2 = _tmp2->as_register();
+  Register result = result_opr()->as_register();
   assert(cmpval == rax, "wrong register");
   assert(newval != NULL, "new val must be register");
   assert(cmpval != newval, "cmp and new values must be in different registers");
   assert(cmpval != addr, "cmp and addr must be in different registers");
   assert(newval != addr, "new value and addr must be in different registers");
-  ShenandoahBarrierSet::assembler()->cmpxchg_oop(masm->masm(), NULL, Address(addr, 0), cmpval, newval, true, true, tmp1, tmp2);
+
+  // Apply storeval barrier to newval.
+  ShenandoahBarrierSet::assembler()->storeval_barrier(masm->masm(), newval, tmp1);
+
+  if (UseCompressedOops) {
+    __ encode_heap_oop(cmpval);
+    __ mov(rscratch1, newval);
+    __ encode_heap_oop(rscratch1);
+    newval = rscratch1;
+  }
+
+  ShenandoahBarrierSet::assembler()->cmpxchg_oop(masm->masm(), result, Address(addr, 0), cmpval, newval, false, tmp1, tmp2);
 }
 
+#undef __
+
 #ifdef ASSERT
 #define __ gen->lir(__FILE__, __LINE__)->
 #else
@@ -63,12 +79,9 @@
       LIR_Opr t1 = gen->new_register(T_OBJECT);
       LIR_Opr t2 = gen->new_register(T_OBJECT);
       LIR_Opr addr = access.resolved_addr()->as_address_ptr()->base();
-
-      __ append(new LIR_OpShenandoahCompareAndSwap(addr, cmp_value.result(), new_value.result(), t1, t2, LIR_OprFact::illegalOpr));
+      LIR_Opr result = gen->new_register(T_INT);
 
-      LIR_Opr result = gen->new_register(T_INT);
-      __ cmove(lir_cond_equal, LIR_OprFact::intConst(1), LIR_OprFact::intConst(0),
-               result, T_INT);
+      __ append(new LIR_OpShenandoahCompareAndSwap(addr, cmp_value.result(), new_value.result(), t1, t2, result));
       return result;
     }
   }
--- a/src/hotspot/cpu/x86/gc/shenandoah/shenandoah_x86_64.ad	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/gc/shenandoah/shenandoah_x86_64.ad	Tue Jan 29 09:38:31 2019 -0500
@@ -83,7 +83,7 @@
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm,
                                                    $res$$Register, $mem_ptr$$Address, $oldval$$Register, $newval$$Register,
                                                    false, // swap
-                                                   false, $tmp1$$Register, $tmp2$$Register
+                                                   $tmp1$$Register, $tmp2$$Register
                                                    );
   %}
   ins_pipe( pipe_cmpxchg );
@@ -104,7 +104,7 @@
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm,
                                                    $res$$Register, $mem_ptr$$Address, $oldval$$Register, $newval$$Register,
                                                    false, // swap
-                                                   false, $tmp1$$Register, $tmp2$$Register
+                                                   $tmp1$$Register, $tmp2$$Register
                                                    );
   %}
   ins_pipe( pipe_cmpxchg );
@@ -123,7 +123,7 @@
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm,
                                                    NULL, $mem_ptr$$Address, $oldval$$Register, $newval$$Register,
                                                    true, // exchange
-                                                   false, $tmp1$$Register, $tmp2$$Register
+                                                   $tmp1$$Register, $tmp2$$Register
                                                    );
   %}
   ins_pipe( pipe_cmpxchg );
@@ -145,7 +145,7 @@
     ShenandoahBarrierSet::assembler()->cmpxchg_oop(&_masm,
                                                    NULL, $mem_ptr$$Address, $oldval$$Register, $newval$$Register,
                                                    true,  // exchange
-                                                   false, $tmp1$$Register, $tmp2$$Register
+                                                   $tmp1$$Register, $tmp2$$Register
                                                    );
   %}
   ins_pipe( pipe_cmpxchg );
--- a/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -37,8 +37,9 @@
 #include "gc/z/c1/zBarrierSetC1.hpp"
 #endif // COMPILER1
 
-#undef __
-#define __ masm->
+ZBarrierSetAssembler::ZBarrierSetAssembler() :
+    _load_barrier_slow_stub(),
+    _load_barrier_weak_slow_stub() {}
 
 #ifdef PRODUCT
 #define BLOCK_COMMENT(str) /* nothing */
@@ -46,6 +47,9 @@
 #define BLOCK_COMMENT(str) __ block_comment(str)
 #endif
 
+#undef __
+#define __ masm->
+
 static void call_vm(MacroAssembler* masm,
                     address entry_point,
                     Register arg0,
@@ -274,20 +278,21 @@
 
   Register ref = stub->ref()->as_register();
   Register ref_addr = noreg;
+  Register tmp = noreg;
 
-  if (stub->ref_addr()->is_register()) {
+  if (stub->tmp()->is_valid()) {
+    // Load address into tmp register
+    ce->leal(stub->ref_addr(), stub->tmp());
+    ref_addr = tmp = stub->tmp()->as_pointer_register();
+  } else {
     // Address already in register
-    ref_addr = stub->ref_addr()->as_pointer_register();
-  } else {
-    // Load address into tmp register
-    ce->leal(stub->ref_addr(), stub->tmp(), stub->patch_code(), stub->patch_info());
-    ref_addr = stub->tmp()->as_pointer_register();
+    ref_addr = stub->ref_addr()->as_address_ptr()->base()->as_pointer_register();
   }
 
   assert_different_registers(ref, ref_addr, noreg);
 
-  // Save rax unless it is the result register
-  if (ref != rax) {
+  // Save rax unless it is the result or tmp register
+  if (ref != rax && tmp != rax) {
     __ push(rax);
   }
 
@@ -301,9 +306,13 @@
   // Verify result
   __ verify_oop(rax, "Bad oop");
 
-  // Restore rax unless it is the result register
+  // Move result into place
   if (ref != rax) {
     __ movptr(ref, rax);
+  }
+
+  // Restore rax unless it is the result or tmp register
+  if (ref != rax && tmp != rax) {
     __ pop(rax);
   }
 
@@ -461,3 +470,11 @@
   barrier_stubs_init_inner("zgc_load_barrier_stubs", ON_STRONG_OOP_REF, _load_barrier_slow_stub);
   barrier_stubs_init_inner("zgc_load_barrier_weak_stubs", ON_WEAK_OOP_REF, _load_barrier_weak_slow_stub);
 }
+
+address ZBarrierSetAssembler::load_barrier_slow_stub(Register reg) {
+  return _load_barrier_slow_stub[reg->encoding()];
+}
+
+address ZBarrierSetAssembler::load_barrier_weak_slow_stub(Register reg) {
+  return _load_barrier_weak_slow_stub[reg->encoding()];
+}
--- a/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -33,16 +33,12 @@
 #endif // COMPILER1
 
 class ZBarrierSetAssembler : public ZBarrierSetAssemblerBase {
+private:
   address _load_barrier_slow_stub[RegisterImpl::number_of_registers];
   address _load_barrier_weak_slow_stub[RegisterImpl::number_of_registers];
 
 public:
-  ZBarrierSetAssembler() :
-    _load_barrier_slow_stub(),
-    _load_barrier_weak_slow_stub() {}
-
-  address load_barrier_slow_stub(Register reg) { return _load_barrier_slow_stub[reg->encoding()]; }
-  address load_barrier_weak_slow_stub(Register reg) { return _load_barrier_weak_slow_stub[reg->encoding()]; }
+  ZBarrierSetAssembler();
 
   virtual void load_at(MacroAssembler* masm,
                        DecoratorSet decorators,
@@ -87,6 +83,9 @@
 #endif // COMPILER1
 
   virtual void barrier_stubs_init();
+
+  address load_barrier_slow_stub(Register reg);
+  address load_barrier_weak_slow_stub(Register reg);
 };
 
 #endif // CPU_X86_GC_Z_ZBARRIERSETASSEMBLER_X86_HPP
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hotspot/cpu/x86/gc/z/z_x86_64.ad	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,155 @@
+//
+// Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
+// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+//
+// This code is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License version 2 only, as
+// published by the Free Software Foundation.
+//
+// This code is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+// version 2 for more details (a copy is included in the LICENSE file that
+// accompanied this code).
+//
+// You should have received a copy of the GNU General Public License version
+// 2 along with this work; if not, write to the Free Software Foundation,
+// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+//
+// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+// or visit www.oracle.com if you need additional information or have any
+// questions.
+//
+
+source %{
+
+#include "gc/z/zBarrierSetAssembler.hpp"
+
+static void z_load_barrier_slow_reg(MacroAssembler& _masm, Register dst, Address src, bool weak) {
+  assert(dst != r12, "Invalid register");
+  assert(dst != r15, "Invalid register");
+  assert(dst != rsp, "Invalid register");
+
+  const address stub = weak ? ZBarrierSet::assembler()->load_barrier_weak_slow_stub(dst)
+                            : ZBarrierSet::assembler()->load_barrier_slow_stub(dst);
+  __ lea(dst, src);
+  __ call(RuntimeAddress(stub));
+}
+
+%}
+
+// For XMM and YMM enabled processors
+instruct zLoadBarrierSlowRegXmmAndYmm(rRegP dst, memory src, rFlagsReg cr,
+                                      rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
+                                      rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
+                                      rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
+                                      rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15) %{
+
+  match(Set dst (LoadBarrierSlowReg src));
+  predicate(UseAVX <= 2);
+
+  effect(DEF dst, KILL cr,
+         KILL x0, KILL x1, KILL x2, KILL x3,
+         KILL x4, KILL x5, KILL x6, KILL x7,
+         KILL x8, KILL x9, KILL x10, KILL x11,
+         KILL x12, KILL x13, KILL x14, KILL x15);
+
+  format %{ "zLoadBarrierSlowRegXmmAndYmm $dst, $src" %}
+
+  ins_encode %{
+    z_load_barrier_slow_reg(_masm, $dst$$Register, $src$$Address, false /* weak */);
+  %}
+
+  ins_pipe(pipe_slow);
+%}
+
+// For ZMM enabled processors
+instruct zLoadBarrierSlowRegZmm(rRegP dst, memory src, rFlagsReg cr,
+                                rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
+                                rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
+                                rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
+                                rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15,
+                                rxmm16 x16, rxmm17 x17, rxmm18 x18, rxmm19 x19,
+                                rxmm20 x20, rxmm21 x21, rxmm22 x22, rxmm23 x23,
+                                rxmm24 x24, rxmm25 x25, rxmm26 x26, rxmm27 x27,
+                                rxmm28 x28, rxmm29 x29, rxmm30 x30, rxmm31 x31) %{
+
+  match(Set dst (LoadBarrierSlowReg src));
+  predicate(UseAVX == 3);
+
+  effect(DEF dst, KILL cr,
+         KILL x0, KILL x1, KILL x2, KILL x3,
+         KILL x4, KILL x5, KILL x6, KILL x7,
+         KILL x8, KILL x9, KILL x10, KILL x11,
+         KILL x12, KILL x13, KILL x14, KILL x15,
+         KILL x16, KILL x17, KILL x18, KILL x19,
+         KILL x20, KILL x21, KILL x22, KILL x23,
+         KILL x24, KILL x25, KILL x26, KILL x27,
+         KILL x28, KILL x29, KILL x30, KILL x31);
+
+  format %{ "zLoadBarrierSlowRegZmm $dst, $src" %}
+
+  ins_encode %{
+    z_load_barrier_slow_reg(_masm, $dst$$Register, $src$$Address, false /* weak */);
+  %}
+
+  ins_pipe(pipe_slow);
+%}
+
+// For XMM and YMM enabled processors
+instruct zLoadBarrierWeakSlowRegXmmAndYmm(rRegP dst, memory src, rFlagsReg cr,
+                                          rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
+                                          rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
+                                          rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
+                                          rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15) %{
+
+  match(Set dst (LoadBarrierWeakSlowReg src));
+  predicate(UseAVX <= 2);
+
+  effect(DEF dst, KILL cr,
+         KILL x0, KILL x1, KILL x2, KILL x3,
+         KILL x4, KILL x5, KILL x6, KILL x7,
+         KILL x8, KILL x9, KILL x10, KILL x11,
+         KILL x12, KILL x13, KILL x14, KILL x15);
+
+  format %{ "zLoadBarrierWeakSlowRegXmmAndYmm $dst, $src" %}
+
+  ins_encode %{
+    z_load_barrier_slow_reg(_masm, $dst$$Register, $src$$Address, true /* weak */);
+  %}
+
+  ins_pipe(pipe_slow);
+%}
+
+// For ZMM enabled processors
+instruct zLoadBarrierWeakSlowRegZmm(rRegP dst, memory src, rFlagsReg cr,
+                                    rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
+                                    rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
+                                    rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
+                                    rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15,
+                                    rxmm16 x16, rxmm17 x17, rxmm18 x18, rxmm19 x19,
+                                    rxmm20 x20, rxmm21 x21, rxmm22 x22, rxmm23 x23,
+                                    rxmm24 x24, rxmm25 x25, rxmm26 x26, rxmm27 x27,
+                                    rxmm28 x28, rxmm29 x29, rxmm30 x30, rxmm31 x31) %{
+
+  match(Set dst (LoadBarrierWeakSlowReg src));
+  predicate(UseAVX == 3);
+
+  effect(DEF dst, KILL cr,
+         KILL x0, KILL x1, KILL x2, KILL x3,
+         KILL x4, KILL x5, KILL x6, KILL x7,
+         KILL x8, KILL x9, KILL x10, KILL x11,
+         KILL x12, KILL x13, KILL x14, KILL x15,
+         KILL x16, KILL x17, KILL x18, KILL x19,
+         KILL x20, KILL x21, KILL x22, KILL x23,
+         KILL x24, KILL x25, KILL x26, KILL x27,
+         KILL x28, KILL x29, KILL x30, KILL x31);
+
+  format %{ "zLoadBarrierWeakSlowRegZmm $dst, $src" %}
+
+  ins_encode %{
+    z_load_barrier_slow_reg(_masm, $dst$$Register, $src$$Address, true /* weak */);
+  %}
+
+  ins_pipe(pipe_slow);
+%}
--- a/src/hotspot/cpu/x86/stubGenerator_x86_32.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/stubGenerator_x86_32.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -3709,8 +3709,6 @@
     // Round to nearest, 24-bit mode, exceptions masked
     StubRoutines::_fpu_cntrl_wrd_24    = 0x007F;
     // Round to nearest, 64-bit mode, exceptions masked
-    StubRoutines::_fpu_cntrl_wrd_64    = 0x037F;
-    // Round to nearest, 64-bit mode, exceptions masked
     StubRoutines::_mxcsr_std           = 0x1F80;
     // Note: the following two constants are 80-bit values
     //       layout is critical for correct loading by FPU.
--- a/src/hotspot/cpu/x86/stubGenerator_x86_64.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/stubGenerator_x86_64.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -5721,8 +5721,6 @@
     // Round to nearest, 24-bit mode, exceptions masked
     StubRoutines::_fpu_cntrl_wrd_24    = 0x007F;
     // Round to nearest, 64-bit mode, exceptions masked
-    StubRoutines::_fpu_cntrl_wrd_64    = 0x037F;
-    // Round to nearest, 64-bit mode, exceptions masked
     StubRoutines::_mxcsr_std           = 0x1F80;
     // Note: the following two constants are 80-bit values
     //       layout is critical for correct loading by FPU.
--- a/src/hotspot/cpu/x86/x86.ad	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/x86.ad	Tue Jan 29 09:38:31 2019 -0500
@@ -1638,6 +1638,7 @@
     // Cheap to find it by looking for screwy base.
     if (adr->is_AddP() &&
         !adr->in(AddPNode::Base)->is_top() &&
+        LP64_ONLY( off->get_long() == (int) (off->get_long()) && ) // immL32
         // Are there other uses besides address expressions?
         !is_visited(adr)) {
       address_visited.set(adr->_idx); // Flag as address_visited
--- a/src/hotspot/cpu/x86/x86_64.ad	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/cpu/x86/x86_64.ad	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+// Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
 // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 //
 // This code is free software; you can redistribute it and/or modify it
@@ -526,12 +526,6 @@
 
 %}
 
-source_hpp %{
-#if INCLUDE_ZGC
-#include "gc/z/zBarrierSetAssembler.hpp"
-#endif
-%}
-
 //----------SOURCE BLOCK-------------------------------------------------------
 // This is a block of C++ code which provides values, functions, and
 // definitions necessary in the rest of the architecture description
@@ -12711,170 +12705,6 @@
   ins_pipe(pipe_jmp);
 %}
 
-//
-// Execute ZGC load barrier (strong) slow path
-//
-
-// For XMM and YMM enabled processors
-instruct loadBarrierSlowRegXmmAndYmm(rRegP dst, memory mem, rFlagsReg cr,
-                                     rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
-                                     rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
-                                     rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
-                                     rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15) %{
-
-  match(Set dst (LoadBarrierSlowReg mem));
-  predicate(UseAVX <= 2);
-
-  effect(DEF dst, KILL cr,
-         KILL x0, KILL x1, KILL x2, KILL x3,
-         KILL x4, KILL x5, KILL x6, KILL x7,
-         KILL x8, KILL x9, KILL x10, KILL x11,
-         KILL x12, KILL x13, KILL x14, KILL x15);
-
-  format %{"LoadBarrierSlowRegXmmAndYmm $dst, $mem" %}
-  ins_encode %{
-#if INCLUDE_ZGC
-    Register d = $dst$$Register;
-    ZBarrierSetAssembler* bs = (ZBarrierSetAssembler*)BarrierSet::barrier_set()->barrier_set_assembler();
-
-    assert(d != r12, "Can't be R12!");
-    assert(d != r15, "Can't be R15!");
-    assert(d != rsp, "Can't be RSP!");
-
-    __ lea(d, $mem$$Address);
-    __ call(RuntimeAddress(bs->load_barrier_slow_stub(d)));
-#else
-    ShouldNotReachHere();
-#endif
-  %}
-  ins_pipe(pipe_slow);
-%}
-
-// For ZMM enabled processors
-instruct loadBarrierSlowRegZmm(rRegP dst, memory mem, rFlagsReg cr,
-                               rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
-                               rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
-                               rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
-                               rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15,
-                               rxmm16 x16, rxmm17 x17, rxmm18 x18, rxmm19 x19,
-                               rxmm20 x20, rxmm21 x21, rxmm22 x22, rxmm23 x23,
-                               rxmm24 x24, rxmm25 x25, rxmm26 x26, rxmm27 x27,
-                               rxmm28 x28, rxmm29 x29, rxmm30 x30, rxmm31 x31) %{
-
-  match(Set dst (LoadBarrierSlowReg mem));
-  predicate(UseAVX == 3);
-
-  effect(DEF dst, KILL cr,
-         KILL x0, KILL x1, KILL x2, KILL x3,
-         KILL x4, KILL x5, KILL x6, KILL x7,
-         KILL x8, KILL x9, KILL x10, KILL x11,
-         KILL x12, KILL x13, KILL x14, KILL x15,
-         KILL x16, KILL x17, KILL x18, KILL x19,
-         KILL x20, KILL x21, KILL x22, KILL x23,
-         KILL x24, KILL x25, KILL x26, KILL x27,
-         KILL x28, KILL x29, KILL x30, KILL x31);
-
-  format %{"LoadBarrierSlowRegZmm $dst, $mem" %}
-  ins_encode %{
-#if INCLUDE_ZGC
-    Register d = $dst$$Register;
-    ZBarrierSetAssembler* bs = (ZBarrierSetAssembler*)BarrierSet::barrier_set()->barrier_set_assembler();
-
-    assert(d != r12, "Can't be R12!");
-    assert(d != r15, "Can't be R15!");
-    assert(d != rsp, "Can't be RSP!");
-
-    __ lea(d, $mem$$Address);
-    __ call(RuntimeAddress(bs->load_barrier_slow_stub(d)));
-#else
-    ShouldNotReachHere();
-#endif
-  %}
-  ins_pipe(pipe_slow);
-%}
-
-//
-// Execute ZGC load barrier (weak) slow path
-//
-
-// For XMM and YMM enabled processors
-instruct loadBarrierWeakSlowRegXmmAndYmm(rRegP dst, memory mem, rFlagsReg cr,
-                                         rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
-                                         rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
-                                         rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
-                                         rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15) %{
-
-  match(Set dst (LoadBarrierWeakSlowReg mem));
-  predicate(UseAVX <= 2);
-
-  effect(DEF dst, KILL cr,
-         KILL x0, KILL x1, KILL x2, KILL x3,
-         KILL x4, KILL x5, KILL x6, KILL x7,
-         KILL x8, KILL x9, KILL x10, KILL x11,
-         KILL x12, KILL x13, KILL x14, KILL x15);
-
-  format %{"LoadBarrierWeakSlowRegXmmAndYmm $dst, $mem" %}
-  ins_encode %{
-#if INCLUDE_ZGC
-    Register d = $dst$$Register;
-    ZBarrierSetAssembler* bs = (ZBarrierSetAssembler*)BarrierSet::barrier_set()->barrier_set_assembler();
-
-    assert(d != r12, "Can't be R12!");
-    assert(d != r15, "Can't be R15!");
-    assert(d != rsp, "Can't be RSP!");
-
-    __ lea(d,$mem$$Address);
-    __ call(RuntimeAddress(bs->load_barrier_weak_slow_stub(d)));
-#else
-    ShouldNotReachHere();
-#endif
-  %}
-  ins_pipe(pipe_slow);
-%}
-
-// For ZMM enabled processors
-instruct loadBarrierWeakSlowRegZmm(rRegP dst, memory mem, rFlagsReg cr,
-                                   rxmm0 x0, rxmm1 x1, rxmm2 x2,rxmm3 x3,
-                                   rxmm4 x4, rxmm5 x5, rxmm6 x6, rxmm7 x7,
-                                   rxmm8 x8, rxmm9 x9, rxmm10 x10, rxmm11 x11,
-                                   rxmm12 x12, rxmm13 x13, rxmm14 x14, rxmm15 x15,
-                                   rxmm16 x16, rxmm17 x17, rxmm18 x18, rxmm19 x19,
-                                   rxmm20 x20, rxmm21 x21, rxmm22 x22, rxmm23 x23,
-                                   rxmm24 x24, rxmm25 x25, rxmm26 x26, rxmm27 x27,
-                                   rxmm28 x28, rxmm29 x29, rxmm30 x30, rxmm31 x31) %{
-
-  match(Set dst (LoadBarrierWeakSlowReg mem));
-  predicate(UseAVX == 3);
-
-  effect(DEF dst, KILL cr,
-         KILL x0, KILL x1, KILL x2, KILL x3,
-         KILL x4, KILL x5, KILL x6, KILL x7,
-         KILL x8, KILL x9, KILL x10, KILL x11,
-         KILL x12, KILL x13, KILL x14, KILL x15,
-         KILL x16, KILL x17, KILL x18, KILL x19,
-         KILL x20, KILL x21, KILL x22, KILL x23,
-         KILL x24, KILL x25, KILL x26, KILL x27,
-         KILL x28, KILL x29, KILL x30, KILL x31);
-
-  format %{"LoadBarrierWeakSlowRegZmm $dst, $mem" %}
-  ins_encode %{
-#if INCLUDE_ZGC
-    Register d = $dst$$Register;
-    ZBarrierSetAssembler* bs = (ZBarrierSetAssembler*)BarrierSet::barrier_set()->barrier_set_assembler();
-
-    assert(d != r12, "Can't be R12!");
-    assert(d != r15, "Can't be R15!");
-    assert(d != rsp, "Can't be RSP!");
-
-    __ lea(d,$mem$$Address);
-    __ call(RuntimeAddress(bs->load_barrier_weak_slow_stub(d)));
-#else
-    ShouldNotReachHere();
-#endif
-  %}
-  ins_pipe(pipe_slow);
-%}
-
 // ============================================================================
 // This name is KNOWN by the ADLC and cannot be changed.
 // The ADLC forces a 'TypeRawPtr::BOTTOM' output type
--- a/src/hotspot/os/bsd/os_bsd.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/bsd/os_bsd.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -2565,7 +2565,7 @@
 
   // managed to send the signal and switch to SUSPEND_REQUEST, now wait for SUSPENDED
   while (true) {
-    if (sr_semaphore.timedwait(0, 2 * NANOSECS_PER_MILLISEC)) {
+    if (sr_semaphore.timedwait(2)) {
       break;
     } else {
       // timeout
@@ -2599,7 +2599,7 @@
 
   while (true) {
     if (sr_notify(osthread) == 0) {
-      if (sr_semaphore.timedwait(0, 2 * NANOSECS_PER_MILLISEC)) {
+      if (sr_semaphore.timedwait(2)) {
         if (osthread->sr.is_running()) {
           return;
         }
--- a/src/hotspot/os/bsd/semaphore_bsd.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/bsd/semaphore_bsd.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,7 @@
 
 #include "precompiled/precompiled.hpp"
 #include "semaphore_bsd.hpp"
+#include "runtime/os.hpp"
 #include "utilities/debug.hpp"
 
 #include <semaphore.h>
@@ -65,29 +66,27 @@
   assert(ret == KERN_SUCCESS, "Failed to wait on semaphore");
 }
 
-int64_t OSXSemaphore::currenttime() {
-  struct timeval tv;
-  gettimeofday(&tv, NULL);
-  return (tv.tv_sec * NANOSECS_PER_SEC) + (tv.tv_usec * 1000);
+bool OSXSemaphore::trywait() {
+  return timedwait(0);
 }
 
-bool OSXSemaphore::trywait() {
-  return timedwait(0, 0);
-}
-
-bool OSXSemaphore::timedwait(unsigned int sec, int nsec) {
+bool OSXSemaphore::timedwait(int64_t millis) {
   kern_return_t kr = KERN_ABORTED;
+
+  // kernel semaphores take a relative timeout
   mach_timespec_t waitspec;
-  waitspec.tv_sec = sec;
-  waitspec.tv_nsec = nsec;
+  int secs = millis / MILLIUNITS;
+  int nsecs = (millis % MILLIUNITS) * NANOSECS_PER_MILLISEC;
+  waitspec.tv_sec = secs;
+  waitspec.tv_nsec = nsecs;
 
-  int64_t starttime = currenttime();
+  int64_t starttime = os::javaTimeMillis() * NANOSECS_PER_MILLISEC;
 
   kr = semaphore_timedwait(_semaphore, waitspec);
   while (kr == KERN_ABORTED) {
-    int64_t totalwait = (sec * NANOSECS_PER_SEC) + nsec;
-
-    int64_t current = currenttime();
+    // reduce the timout and try again
+    int64_t totalwait = millis * NANOSECS_PER_MILLISEC;
+    int64_t current = os::javaTimeMillis() * NANOSECS_PER_MILLISEC;
     int64_t passedtime = current - starttime;
 
     if (passedtime >= totalwait) {
--- a/src/hotspot/os/bsd/semaphore_bsd.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/bsd/semaphore_bsd.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -50,10 +50,9 @@
   void wait();
 
   bool trywait();
-  bool timedwait(unsigned int sec, int nsec);
 
- private:
-  static int64_t currenttime();
+  // wait until the given relative time elapses
+  bool timedwait(int64_t millis);
 };
 
 typedef OSXSemaphore SemaphoreImpl;
--- a/src/hotspot/os/linux/os_linux.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/linux/os_linux.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -2436,26 +2436,6 @@
   return CAST_FROM_FN_PTR(void*, UserHandler);
 }
 
-static struct timespec create_semaphore_timespec(unsigned int sec, int nsec) {
-  struct timespec ts;
-  // Semaphore's are always associated with CLOCK_REALTIME
-  os::Posix::clock_gettime(CLOCK_REALTIME, &ts);
-  // see os_posix.cpp for discussion on overflow checking
-  if (sec >= MAX_SECS) {
-    ts.tv_sec += MAX_SECS;
-    ts.tv_nsec = 0;
-  } else {
-    ts.tv_sec += sec;
-    ts.tv_nsec += nsec;
-    if (ts.tv_nsec >= NANOSECS_PER_SEC) {
-      ts.tv_nsec -= NANOSECS_PER_SEC;
-      ++ts.tv_sec; // note: this must be <= max_secs
-    }
-  }
-
-  return ts;
-}
-
 extern "C" {
   typedef void (*sa_handler_t)(int);
   typedef void (*sa_sigaction_t)(int, siginfo_t *, void *);
@@ -4327,7 +4307,7 @@
 
   // managed to send the signal and switch to SUSPEND_REQUEST, now wait for SUSPENDED
   while (true) {
-    if (sr_semaphore.timedwait(create_semaphore_timespec(0, 2 * NANOSECS_PER_MILLISEC))) {
+    if (sr_semaphore.timedwait(2)) {
       break;
     } else {
       // timeout
@@ -4361,7 +4341,7 @@
 
   while (true) {
     if (sr_notify(osthread) == 0) {
-      if (sr_semaphore.timedwait(create_semaphore_timespec(0, 2 * NANOSECS_PER_MILLISEC))) {
+      if (sr_semaphore.timedwait(2)) {
         if (osthread->sr.is_running()) {
           return;
         }
--- a/src/hotspot/os/posix/os_posix.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/posix/os_posix.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1619,11 +1619,9 @@
   }
 }
 
-
-// Shared pthread_mutex/cond based PlatformEvent implementation.
-// Not currently usable by Solaris.
-
-#ifndef SOLARIS
+// Shared clock/time and other supporting routines for pthread_mutex/cond
+// initialization. This is enabled on Solaris but only some of the clock/time
+// functionality is actually used there.
 
 // Shared condattr object for use with relative timed-waits. Will be associated
 // with CLOCK_MONOTONIC if available to avoid issues with time-of-day changes,
@@ -1661,11 +1659,11 @@
 
 // This means we have clockid_t, clock_gettime et al and CLOCK_MONOTONIC
 
-static int (*_clock_gettime)(clockid_t, struct timespec *);
-static int (*_clock_getres)(clockid_t, struct timespec *);
-static int (*_pthread_condattr_setclock)(pthread_condattr_t *, clockid_t);
+static int (*_clock_gettime)(clockid_t, struct timespec *) = NULL;
+static int (*_clock_getres)(clockid_t, struct timespec *) = NULL;
+static int (*_pthread_condattr_setclock)(pthread_condattr_t *, clockid_t) = NULL;
 
-static bool _use_clock_monotonic_condattr;
+static bool _use_clock_monotonic_condattr = false;
 
 // Exported clock functionality
 
@@ -1707,9 +1705,6 @@
     handle = RTLD_DEFAULT;
   }
 
-  _clock_gettime = NULL;
-  _clock_getres = NULL;
-
   int (*clock_getres_func)(clockid_t, struct timespec*) =
     (int(*)(clockid_t, struct timespec*))dlsym(handle, "clock_getres");
   int (*clock_gettime_func)(clockid_t, struct timespec*) =
@@ -1736,8 +1731,6 @@
 
   // 2. Check for pthread_condattr_setclock support.
 
-  _pthread_condattr_setclock = NULL;
-
   // libpthread is already loaded.
   int (*condattr_setclock_func)(pthread_condattr_t*, clockid_t) =
     (int (*)(pthread_condattr_t*, clockid_t))dlsym(RTLD_DEFAULT,
@@ -1750,6 +1743,7 @@
 
   pthread_init_common();
 
+#ifndef SOLARIS
   int status;
   if (_pthread_condattr_setclock != NULL && _clock_gettime != NULL) {
     if ((status = _pthread_condattr_setclock(_condAttr, CLOCK_MONOTONIC)) != 0) {
@@ -1763,18 +1757,20 @@
     } else {
       _use_clock_monotonic_condattr = true;
     }
-  } else {
-    _use_clock_monotonic_condattr = false;
   }
+#endif // !SOLARIS
+
 }
 
 void os::Posix::init_2(void) {
+#ifndef SOLARIS
   log_info(os)("Use of CLOCK_MONOTONIC is%s supported",
                (_clock_gettime != NULL ? "" : " not"));
   log_info(os)("Use of pthread_condattr_setclock is%s supported",
                (_pthread_condattr_setclock != NULL ? "" : " not"));
   log_info(os)("Relative timed-wait using pthread_cond_timedwait is associated with %s",
                _use_clock_monotonic_condattr ? "CLOCK_MONOTONIC" : "the default clock");
+#endif // !SOLARIS
 }
 
 #else // !SUPPORTS_CLOCK_MONOTONIC
@@ -1784,30 +1780,25 @@
 }
 
 void os::Posix::init_2(void) {
+#ifndef SOLARIS
   log_info(os)("Use of CLOCK_MONOTONIC is not supported");
   log_info(os)("Use of pthread_condattr_setclock is not supported");
   log_info(os)("Relative timed-wait using pthread_cond_timedwait is associated with the default clock");
+#endif // !SOLARIS
 }
 
 #endif // SUPPORTS_CLOCK_MONOTONIC
 
-os::PlatformEvent::PlatformEvent() {
-  int status = pthread_cond_init(_cond, _condAttr);
-  assert_status(status == 0, status, "cond_init");
-  status = pthread_mutex_init(_mutex, _mutexAttr);
-  assert_status(status == 0, status, "mutex_init");
-  _event   = 0;
-  _nParked = 0;
-}
-
 // Utility to convert the given timeout to an absolute timespec
-// (based on the appropriate clock) to use with pthread_cond_timewait.
+// (based on the appropriate clock) to use with pthread_cond_timewait,
+// and sem_timedwait().
 // The clock queried here must be the clock used to manage the
-// timeout of the condition variable.
+// timeout of the condition variable or semaphore.
 //
 // The passed in timeout value is either a relative time in nanoseconds
 // or an absolute time in milliseconds. A relative timeout will be
-// associated with CLOCK_MONOTONIC if available; otherwise, or if absolute,
+// associated with CLOCK_MONOTONIC if available, unless the real-time clock
+// is explicitly requested; otherwise, or if absolute,
 // the default time-of-day clock will be used.
 
 // Given time is a 64-bit value and the time_t used in the timespec is
@@ -1824,7 +1815,7 @@
 
 // Calculate a new absolute time that is "timeout" nanoseconds from "now".
 // "unit" indicates the unit of "now_part_sec" (may be nanos or micros depending
-// on which clock is being used).
+// on which clock API is being used).
 static void calc_rel_time(timespec* abstime, jlong timeout, jlong now_sec,
                           jlong now_part_sec, jlong unit) {
   time_t max_secs = now_sec + MAX_SECS;
@@ -1849,6 +1840,7 @@
 
 // Unpack the given deadline in milliseconds since the epoch, into the given timespec.
 // The current time in seconds is also passed in to enforce an upper bound as discussed above.
+// This is only used with gettimeofday, when clock_gettime is not available.
 static void unpack_abs_time(timespec* abstime, jlong deadline, jlong now_sec) {
   time_t max_secs = now_sec + MAX_SECS;
 
@@ -1865,7 +1857,18 @@
   }
 }
 
-static void to_abstime(timespec* abstime, jlong timeout, bool isAbsolute) {
+static jlong millis_to_nanos(jlong millis) {
+  // We have to watch for overflow when converting millis to nanos,
+  // but if millis is that large then we will end up limiting to
+  // MAX_SECS anyway, so just do that here.
+  if (millis / MILLIUNITS > MAX_SECS) {
+    millis = jlong(MAX_SECS) * MILLIUNITS;
+  }
+  return millis * (NANOUNITS / MILLIUNITS);
+}
+
+static void to_abstime(timespec* abstime, jlong timeout,
+                       bool isAbsolute, bool isRealtime) {
   DEBUG_ONLY(int max_secs = MAX_SECS;)
 
   if (timeout < 0) {
@@ -1874,9 +1877,14 @@
 
 #ifdef SUPPORTS_CLOCK_MONOTONIC
 
-  if (_use_clock_monotonic_condattr && !isAbsolute) {
+  clockid_t clock = CLOCK_MONOTONIC;
+  // need to ensure we have a runtime check for clock_gettime support
+  if (!isAbsolute && _clock_gettime != NULL) {
+    if (!_use_clock_monotonic_condattr || isRealtime) {
+      clock = CLOCK_REALTIME;
+    }
     struct timespec now;
-    int status = _clock_gettime(CLOCK_MONOTONIC, &now);
+    int status = _clock_gettime(clock, &now);
     assert_status(status == 0, status, "clock_gettime");
     calc_rel_time(abstime, timeout, now.tv_sec, now.tv_nsec, NANOUNITS);
     DEBUG_ONLY(max_secs += now.tv_sec;)
@@ -1906,6 +1914,19 @@
   assert(abstime->tv_nsec < NANOUNITS, "tv_nsec >= NANOUNITS");
 }
 
+// Create an absolute time 'millis' milliseconds in the future, using the
+// real-time (time-of-day) clock. Used by PosixSemaphore.
+void os::Posix::to_RTC_abstime(timespec* abstime, int64_t millis) {
+  to_abstime(abstime, millis_to_nanos(millis),
+             false /* not absolute */,
+             true  /* use real-time clock */);
+}
+
+// Shared pthread_mutex/cond based PlatformEvent implementation.
+// Not currently usable by Solaris.
+
+#ifndef SOLARIS
+
 // PlatformEvent
 //
 // Assumption:
@@ -1921,6 +1942,15 @@
 //    Having three states allows for some detection of bad usage - see
 //    comments on unpark().
 
+os::PlatformEvent::PlatformEvent() {
+  int status = pthread_cond_init(_cond, _condAttr);
+  assert_status(status == 0, status, "cond_init");
+  status = pthread_mutex_init(_mutex, _mutexAttr);
+  assert_status(status == 0, status, "mutex_init");
+  _event   = 0;
+  _nParked = 0;
+}
+
 void os::PlatformEvent::park() {       // AKA "down()"
   // Transitions for _event:
   //   -1 => -1 : illegal
@@ -1982,13 +2012,7 @@
 
   if (v == 0) { // Do this the hard way by blocking ...
     struct timespec abst;
-    // We have to watch for overflow when converting millis to nanos,
-    // but if millis is that large then we will end up limiting to
-    // MAX_SECS anyway, so just do that here.
-    if (millis / MILLIUNITS > MAX_SECS) {
-      millis = jlong(MAX_SECS) * MILLIUNITS;
-    }
-    to_abstime(&abst, millis * (NANOUNITS / MILLIUNITS), false);
+    to_abstime(&abst, millis_to_nanos(millis), false, false);
 
     int ret = OS_TIMEOUT;
     int status = pthread_mutex_lock(_mutex);
@@ -2106,7 +2130,7 @@
     return;
   }
   if (time > 0) {
-    to_abstime(&absTime, time, isAbsolute);
+    to_abstime(&absTime, time, isAbsolute, false);
   }
 
   // Enter safepoint region
--- a/src/hotspot/os/posix/os_posix.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/posix/os_posix.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -132,6 +132,8 @@
   static bool supports_monotonic_clock() { return false; }
 
 #endif
+
+  static void to_RTC_abstime(timespec* abstime, int64_t millis);
 };
 
 /*
--- a/src/hotspot/os/posix/semaphore_posix.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/posix/semaphore_posix.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -79,6 +79,12 @@
   return ret == 0;
 }
 
+bool PosixSemaphore::timedwait(int64_t millis) {
+  struct timespec ts;
+  os::Posix::to_RTC_abstime(&ts, millis);
+  return timedwait(ts);
+}
+
 bool PosixSemaphore::timedwait(struct timespec ts) {
   while (true) {
     int result = sem_timedwait(&_semaphore, &ts);
--- a/src/hotspot/os/posix/semaphore_posix.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/posix/semaphore_posix.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -45,7 +45,10 @@
   void wait();
 
   bool trywait();
+  // wait until the given absolute time is reached
   bool timedwait(struct timespec ts);
+  // wait until the given relative time elapses
+  bool timedwait(int64_t millis);
 };
 
 typedef PosixSemaphore SemaphoreImpl;
--- a/src/hotspot/os/solaris/os_solaris.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/os/solaris/os_solaris.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -2011,13 +2011,6 @@
   return CAST_FROM_FN_PTR(void*, UserHandler);
 }
 
-static struct timespec create_semaphore_timespec(unsigned int sec, int nsec) {
-  struct timespec ts;
-  unpackTime(&ts, false, (sec * NANOSECS_PER_SEC) + nsec);
-
-  return ts;
-}
-
 extern "C" {
   typedef void (*sa_handler_t)(int);
   typedef void (*sa_sigaction_t)(int, siginfo_t *, void *);
@@ -3493,7 +3486,7 @@
 
   // managed to send the signal and switch to SUSPEND_REQUEST, now wait for SUSPENDED
   while (true) {
-    if (sr_semaphore.timedwait(create_semaphore_timespec(0, 2000 * NANOSECS_PER_MILLISEC))) {
+    if (sr_semaphore.timedwait(2000)) {
       break;
     } else {
       // timeout
@@ -3527,7 +3520,7 @@
 
   while (true) {
     if (sr_notify(osthread) == 0) {
-      if (sr_semaphore.timedwait(create_semaphore_timespec(0, 2 * NANOSECS_PER_MILLISEC))) {
+      if (sr_semaphore.timedwait(2)) {
         if (osthread->sr.is_running()) {
           return;
         }
@@ -4112,6 +4105,9 @@
     Solaris::_pthread_setname_np =  // from 11.3
         (Solaris::pthread_setname_np_func_t)dlsym(handle, "pthread_setname_np");
   }
+
+  // Shared Posix initialization
+  os::Posix::init();
 }
 
 // To install functions for atexit system call
@@ -4218,6 +4214,9 @@
   // Init pset_loadavg function pointer
   init_pset_getloadavg_ptr();
 
+  // Shared Posix initialization
+  os::Posix::init_2();
+
   return JNI_OK;
 }
 
--- a/src/hotspot/share/c1/c1_LIRAssembler.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/c1/c1_LIRAssembler.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -240,7 +240,7 @@
   void align_call(LIR_Code code);
 
   void negate(LIR_Opr left, LIR_Opr dest, LIR_Opr tmp = LIR_OprFact::illegalOpr);
-  void leal(LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info);
+  void leal(LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code = lir_patch_none, CodeEmitInfo* info = NULL);
 
   void rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info);
 
--- a/src/hotspot/share/ci/ciArray.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciArray.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -73,7 +73,6 @@
 
   // What kind of ciObject is this?
   bool is_array()        { return true; }
-  bool is_java_object()  { return true; }
 };
 
 #endif // SHARE_CI_CIARRAY_HPP
--- a/src/hotspot/share/ci/ciCallProfile.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciCallProfile.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -79,17 +79,6 @@
     assert(i < _limit, "out of Call Profile MorphismLimit");
     return _receiver[i];
   }
-
-  // Rescale the current profile based on the incoming scale
-  ciCallProfile rescale(double scale) {
-    assert(scale >= 0 && scale <= 1.0, "out of range");
-    ciCallProfile call = *this;
-    call._count = (int)(call._count * scale);
-    for (int i = 0; i < _morphism; i++) {
-      call._receiver_count[i] = (int)(call._receiver_count[i] * scale);
-    }
-    return call;
-  }
 };
 
 #endif // SHARE_CI_CICALLPROFILE_HPP
--- a/src/hotspot/share/ci/ciCallSite.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciCallSite.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -32,12 +32,6 @@
 bool ciCallSite::is_constant_call_site() {
   return klass()->is_subclass_of(CURRENT_ENV->ConstantCallSite_klass());
 }
-bool ciCallSite::is_mutable_call_site() {
-  return klass()->is_subclass_of(CURRENT_ENV->MutableCallSite_klass());
-}
-bool ciCallSite::is_volatile_call_site() {
-  return klass()->is_subclass_of(CURRENT_ENV->VolatileCallSite_klass());
-}
 
 // ------------------------------------------------------------------
 // ciCallSite::get_target
--- a/src/hotspot/share/ci/ciCallSite.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciCallSite.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -38,8 +38,6 @@
   bool is_call_site() const { return true; }
 
   bool is_constant_call_site();
-  bool is_mutable_call_site();
-  bool is_volatile_call_site();
 
   // Return the target MethodHandle of this CallSite.
   ciMethodHandle* get_target() const;
--- a/src/hotspot/share/ci/ciEnv.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciEnv.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -915,8 +915,15 @@
   return JavaThread::current()->thread_state() == _thread_in_vm;
 }
 
+bool ciEnv::system_dictionary_modification_counter_changed_locked() {
+  assert_locked_or_safepoint(Compile_lock);
+  return _system_dictionary_modification_counter != SystemDictionary::number_of_modifications();
+}
+
 bool ciEnv::system_dictionary_modification_counter_changed() {
-  return _system_dictionary_modification_counter != SystemDictionary::number_of_modifications();
+  VM_ENTRY_MARK;
+  MutexLocker ml(Compile_lock, THREAD); // lock with safepoint check
+  return system_dictionary_modification_counter_changed_locked();
 }
 
 // ------------------------------------------------------------------
@@ -927,7 +934,7 @@
 void ciEnv::validate_compile_task_dependencies(ciMethod* target) {
   if (failing())  return;  // no need for further checks
 
-  bool counter_changed = system_dictionary_modification_counter_changed();
+  bool counter_changed = system_dictionary_modification_counter_changed_locked();
   Dependencies::DepType result = dependencies()->validate_dependencies(_task, counter_changed);
   if (result != Dependencies::end_marker) {
     if (result == Dependencies::call_site_target_value) {
--- a/src/hotspot/share/ci/ciEnv.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciEnv.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -292,6 +292,8 @@
   // respect to method dependencies (e.g. concurrent class loading).
   void validate_compile_task_dependencies(ciMethod* target);
 
+  // Call internally when Compile_lock is already held.
+  bool system_dictionary_modification_counter_changed_locked();
 public:
   enum {
     MethodCompilable,
--- a/src/hotspot/share/ci/ciMethodData.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciMethodData.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -208,15 +208,17 @@
   // Snapshot the data -- actually, take an approximate snapshot of
   // the data.  Any concurrently executing threads may be changing the
   // data as we copy it.
-  Copy::disjoint_words((HeapWord*) mdo,
-                       (HeapWord*) &_orig,
-                       sizeof(_orig) / HeapWordSize);
+  Copy::disjoint_words_atomic((HeapWord*) mdo,
+                              (HeapWord*) &_orig,
+                              sizeof(_orig) / HeapWordSize);
   Arena* arena = CURRENT_ENV->arena();
   _data_size = mdo->data_size();
   _extra_data_size = mdo->extra_data_size();
   int total_size = _data_size + _extra_data_size;
   _data = (intptr_t *) arena->Amalloc(total_size);
-  Copy::disjoint_words((HeapWord*) mdo->data_base(), (HeapWord*) _data, total_size / HeapWordSize);
+  Copy::disjoint_words_atomic((HeapWord*) mdo->data_base(),
+                              (HeapWord*) _data,
+                              total_size / HeapWordSize);
 
   // Traverse the profile data, translating any oops into their
   // ci equivalents.
@@ -535,10 +537,6 @@
   set_bits(_eflags, f);
 }
 
-void ciMethodData::clear_eflag(MethodData::EscapeFlag f) {
-  clear_bits(_eflags, f);
-}
-
 bool ciMethodData::eflag_set(MethodData::EscapeFlag f) const {
   return mask_bits(_eflags, f) != 0;
 }
--- a/src/hotspot/share/ci/ciMethodData.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciMethodData.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -271,11 +271,6 @@
     }
   }
 
-  intptr_t argument_type(int i) const {
-    assert(has_arguments(), "no arg type profiling data");
-    return args()->type(i);
-  }
-
   ciKlass* valid_argument_type(int i) const {
     assert(has_arguments(), "no arg type profiling data");
     return args()->valid_type(i);
@@ -315,11 +310,6 @@
   ciBranchData(DataLayout* layout) : BranchData(layout) {};
 };
 
-class ciArrayData : public ArrayData {
-public:
-  ciArrayData(DataLayout* layout) : ArrayData(layout) {};
-};
-
 class ciMultiBranchData : public MultiBranchData {
 public:
   ciMultiBranchData(DataLayout* layout) : MultiBranchData(layout) {};
@@ -471,10 +461,6 @@
 
   ciArgInfoData *arg_info() const;
 
-  address data_base() const {
-    return (address) _data;
-  }
-
   void prepare_metadata();
   void load_extra_data();
   ciProfileData* bci_to_extra_data(int bci, ciMethod* m, bool& two_free_slots);
@@ -574,7 +560,6 @@
   void update_escape_info();
 
   void set_eflag(MethodData::EscapeFlag f);
-  void clear_eflag(MethodData::EscapeFlag f);
   bool eflag_set(MethodData::EscapeFlag f) const;
 
   void set_arg_local(int i);
--- a/src/hotspot/share/ci/ciNullObject.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciNullObject.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -42,9 +42,6 @@
   void print_impl(outputStream* st);
 
 public:
-  // Is this ciObject a Java Language Object?  That is,
-  // is the ciObject an instance or an array
-  bool is_java_object() { return true; }
 
   // What kind of ciObject is this?
   bool is_null_object() const { return true; }
--- a/src/hotspot/share/ci/ciObject.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciObject.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -115,7 +115,6 @@
   // What kind of ciObject is this?
   virtual bool is_null_object()       const { return false; }
   virtual bool is_call_site()         const { return false; }
-  virtual bool is_cpcache()           const { return false; }
   virtual bool is_instance()                { return false; }
   virtual bool is_member_name()       const { return false; }
   virtual bool is_method_handle()     const { return false; }
--- a/src/hotspot/share/ci/ciStreams.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciStreams.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -224,14 +224,6 @@
 }
 
 // ------------------------------------------------------------------
-// ciBytecodeStream::get_constant_cache_index
-// Return the CP cache index, or -1 if there isn't any.
-int ciBytecodeStream::get_constant_cache_index() const {
-  // work-alike for Bytecode_loadconstant::cache_index()
-  return has_cache_index() ? get_constant_raw_index() : -1;
-}
-
-// ------------------------------------------------------------------
 // ciBytecodeStream::get_constant
 //
 // If this bytecode is one of the ldc variants, get the referenced
@@ -318,19 +310,6 @@
 }
 
 // ------------------------------------------------------------------
-// ciBytecodeStream::get_field_signature_index
-//
-// Get the constant pool index of the signature of the field
-// referenced by the current bytecode.  Used for generating
-// deoptimization information.
-int ciBytecodeStream::get_field_signature_index() {
-  VM_ENTRY_MARK;
-  ConstantPool* cpool = _holder->get_instanceKlass()->constants();
-  int nt_index = cpool->name_and_type_ref_index_at(get_field_index());
-  return cpool->signature_ref_index_at(nt_index);
-}
-
-// ------------------------------------------------------------------
 // ciBytecodeStream::get_method_index
 //
 // If this is a method invocation bytecode, get the constant pool
@@ -474,13 +453,3 @@
   )
 }
 
-// ------------------------------------------------------------------
-// ciBytecodeStream::get_resolved_references
-ciObjArray* ciBytecodeStream::get_resolved_references() {
-    VM_ENTRY_MARK;
-    // Get the constant pool.
-  ConstantPool*        cpool   = _holder->get_instanceKlass()->constants();
-
-  // Create a resolved references array and return it.
-  return CURRENT_ENV->get_object(cpool->resolved_references())->as_obj_array();
-  }
--- a/src/hotspot/share/ci/ciStreams.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciStreams.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -70,12 +70,6 @@
     _start = _pc = base; _end = base + size;
   }
 
-  void assert_wide(bool require_wide) const {
-    if (require_wide)
-         { assert(is_wide(),  "must be a wide instruction"); }
-    else { assert(!is_wide(), "must not be a wide instruction"); }
-  }
-
   Bytecode bytecode() const { return Bytecode(this, _bc_start); }
   Bytecode next_bytecode() const { return Bytecode(this, _pc); }
 
@@ -155,10 +149,6 @@
     return bytecode().get_index_u1(cur_bc_raw());
   }
 
-  int get_index_u1_cpcache() const {
-    return bytecode().get_index_u1_cpcache(cur_bc_raw());
-  }
-
   // Get a byte index following this bytecode.
   // If prefixed with a wide bytecode, get a wide index.
   int get_index() const {
@@ -218,16 +208,12 @@
   int get_int_table( int index ) const {
     return Bytes::get_Java_u4((address)&_table_base[index]); }
 
-  // For tableswitch - get length of offset part
-  int get_tableswitch_length()  { return get_int_table(2)-get_int_table(1)+1; }
-
   int get_dest_table( int index ) const {
     return cur_bci() + get_int_table(index); }
 
   // --- Constant pool access ---
   int get_constant_raw_index() const;
   int get_constant_pool_index() const;
-  int get_constant_cache_index() const;
   int get_field_index();
   int get_method_index();
 
@@ -255,7 +241,6 @@
 
   ciInstanceKlass* get_declared_field_holder();
   int      get_field_holder_index();
-  int      get_field_signature_index();
 
   ciMethod*     get_method(bool& will_link, ciSignature* *declared_signature_result);
   bool          has_appendix();
@@ -266,8 +251,6 @@
   int           get_method_holder_index();
   int           get_method_signature_index(const constantPoolHandle& cpool);
 
-  // Get the resolved references arrays from the constant pool
-  ciObjArray* get_resolved_references();
 };
 
 
--- a/src/hotspot/share/ci/ciTypeFlow.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciTypeFlow.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -2427,22 +2427,6 @@
 }
 
 // ------------------------------------------------------------------
-// ciTypeFlow::PostOrderLoops::next
-//
-// Advance to next loop tree using a postorder, left-to-right traversal.
-void ciTypeFlow::PostorderLoops::next() {
-  assert(!done(), "must not be done.");
-  if (_current->sibling() != NULL) {
-    _current = _current->sibling();
-    while (_current->child() != NULL) {
-      _current = _current->child();
-    }
-  } else {
-    _current = _current->parent();
-  }
-}
-
-// ------------------------------------------------------------------
 // ciTypeFlow::PreOrderLoops::next
 //
 // Advance to next loop tree using a preorder, left-to-right traversal.
--- a/src/hotspot/share/ci/ciTypeFlow.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciTypeFlow.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -765,22 +765,6 @@
     void print(outputStream* st = tty, int indent = 0) const PRODUCT_RETURN;
   };
 
-  // Postorder iteration over the loop tree.
-  class PostorderLoops : public StackObj {
-  private:
-    Loop* _root;
-    Loop* _current;
-  public:
-    PostorderLoops(Loop* root) : _root(root), _current(root) {
-      while (_current->child() != NULL) {
-        _current = _current->child();
-      }
-    }
-    bool done() { return _current == NULL; }  // Finished iterating?
-    void next();                            // Advance to next loop
-    Loop* current() { return _current; }      // Return current loop.
-  };
-
   // Preorder iteration over the loop tree.
   class PreorderLoops : public StackObj {
   private:
@@ -857,7 +841,6 @@
   int start_block_num() const       { return 0; }
   Block* rpo_at(int rpo) const      { assert(0 <= rpo && rpo < block_count(), "out of bounds");
                                       return _block_map[rpo]; }
-  int next_pre_order()              { return _next_pre_order; }
   int inc_next_pre_order()          { return _next_pre_order++; }
 
 private:
--- a/src/hotspot/share/ci/ciUtilities.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciUtilities.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -42,13 +42,6 @@
 }
 
 // ------------------------------------------------------------------
-// basictype_to_char
-const char basictype_to_char(BasicType t) {
-  char c = type2char(t);
-  return c ? c : 'X';
-}
-
-// ------------------------------------------------------------------
 // card_table_base
 jbyte *ci_card_table_address() {
   BarrierSet* bs = BarrierSet::barrier_set();
--- a/src/hotspot/share/ci/ciUtilities.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/ci/ciUtilities.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -49,7 +49,6 @@
 }
 
 const char* basictype_to_str(BasicType t);
-const char  basictype_to_char(BasicType t);
 
 jbyte *ci_card_table_address();
 template <typename T> T ci_card_table_address_as() {
--- a/src/hotspot/share/classfile/classFileParser.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/classFileParser.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -2120,12 +2120,7 @@
       if (!privileged)              break;  // only allow in privileged code
       return _method_LambdaForm_Compiled;
     }
-    case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_LambdaForm_Hidden_signature): {
-      if (_location != _in_method)  break;  // only allow for methods
-      if (!privileged)              break;  // only allow in privileged code
-      return _method_Hidden;
-    }
-    case vmSymbols::VM_SYMBOL_ENUM_NAME(java_security_AccessController_Hidden_signature): {
+    case vmSymbols::VM_SYMBOL_ENUM_NAME(jdk_internal_vm_annotation_Hidden_signature): {
       if (_location != _in_method)  break;  // only allow for methods
       if (!privileged)              break;  // only allow in privileged code
       return _method_Hidden;
--- a/src/hotspot/share/classfile/classLoader.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/classLoader.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1724,7 +1724,7 @@
 
   {
     MutexLocker ml(Module_lock, THREAD);
-    ModuleEntry* jb_module = null_cld_modules->locked_create_entry_or_null(Handle(),
+    ModuleEntry* jb_module = null_cld_modules->locked_create_entry(Handle(),
                                false, vmSymbols::java_base(), NULL, NULL, null_cld);
     if (jb_module == NULL) {
       vm_exit_during_initialization("Unable to create ModuleEntry for " JAVA_BASE_NAME);
--- a/src/hotspot/share/classfile/defaultMethods.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/defaultMethods.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -988,7 +988,7 @@
   for (int index = 0; index < new_size; index++ ) {
     total_default_methods->at_put(index, new_methods->at(index));
   }
-  Method::sort_methods(total_default_methods, false, false);
+  Method::sort_methods(total_default_methods, /*set_idnums=*/false);
 
   klass->set_default_methods(total_default_methods);
 }
--- a/src/hotspot/share/classfile/javaClasses.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/javaClasses.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -578,7 +578,7 @@
 }
 
 int java_lang_String::utf8_length(oop java_string, typeArrayOop value) {
-  assert(oopDesc::equals_raw(value, java_lang_String::value(java_string)),
+  assert(oopDesc::equals(value, java_lang_String::value(java_string)),
          "value must be same as java_lang_String::value(java_string)");
   int length = java_lang_String::length(java_string, value);
   if (length == 0) {
@@ -610,7 +610,7 @@
 }
 
 char* java_lang_String::as_utf8_string(oop java_string, typeArrayOop value, char* buf, int buflen) {
-  assert(oopDesc::equals_raw(value, java_lang_String::value(java_string)),
+  assert(oopDesc::equals(value, java_lang_String::value(java_string)),
          "value must be same as java_lang_String::value(java_string)");
   int     length = java_lang_String::length(java_string, value);
   bool is_latin1 = java_lang_String::is_latin1(java_string);
@@ -642,7 +642,7 @@
 }
 
 char* java_lang_String::as_utf8_string(oop java_string, typeArrayOop value, int start, int len, char* buf, int buflen) {
-  assert(oopDesc::equals_raw(value, java_lang_String::value(java_string)),
+  assert(oopDesc::equals(value, java_lang_String::value(java_string)),
          "value must be same as java_lang_String::value(java_string)");
   assert(start + len <= java_lang_String::length(java_string), "just checking");
   bool is_latin1 = java_lang_String::is_latin1(java_string);
--- a/src/hotspot/share/classfile/javaClasses.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/javaClasses.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -74,7 +74,7 @@
 int java_lang_String::length(oop java_string, typeArrayOop value) {
   assert(initialized, "Must be initialized");
   assert(is_instance(java_string), "must be java_string");
-  assert(oopDesc::equals_raw(value, java_lang_String::value(java_string)),
+  assert(oopDesc::equals(value, java_lang_String::value(java_string)),
          "value must be same as java_lang_String::value(java_string)");
   if (value == NULL) {
     return 0;
--- a/src/hotspot/share/classfile/moduleEntry.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/moduleEntry.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -398,23 +398,22 @@
   Hashtable<Symbol*, mtModule>::add_entry(index, (HashtableEntry<Symbol*, mtModule>*)new_entry);
 }
 
-ModuleEntry* ModuleEntryTable::locked_create_entry_or_null(Handle module_handle,
-                                                           bool is_open,
-                                                           Symbol* module_name,
-                                                           Symbol* module_version,
-                                                           Symbol* module_location,
-                                                           ClassLoaderData* loader_data) {
-  assert(module_name != NULL, "ModuleEntryTable locked_create_entry_or_null should never be called for unnamed module.");
+// Create an entry in the class loader's module_entry_table.  It is the
+// caller's responsibility to ensure that the entry has not already been
+// created.
+ModuleEntry* ModuleEntryTable::locked_create_entry(Handle module_handle,
+                                                   bool is_open,
+                                                   Symbol* module_name,
+                                                   Symbol* module_version,
+                                                   Symbol* module_location,
+                                                   ClassLoaderData* loader_data) {
+  assert(module_name != NULL, "ModuleEntryTable locked_create_entry should never be called for unnamed module.");
   assert(Module_lock->owned_by_self(), "should have the Module_lock");
-  // Check if module already exists.
-  if (lookup_only(module_name) != NULL) {
-    return NULL;
-  } else {
-    ModuleEntry* entry = new_entry(compute_hash(module_name), module_handle, is_open, module_name,
-                                   module_version, module_location, loader_data);
-    add_entry(index_for(module_name), entry);
-    return entry;
-  }
+  assert(lookup_only(module_name) == NULL, "Module already exists");
+  ModuleEntry* entry = new_entry(compute_hash(module_name), module_handle, is_open, module_name,
+                                 module_version, module_location, loader_data);
+  add_entry(index_for(module_name), entry);
+  return entry;
 }
 
 // lookup_only by Symbol* to find a ModuleEntry.
--- a/src/hotspot/share/classfile/moduleEntry.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/moduleEntry.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -236,14 +236,14 @@
     return (ModuleEntry*)Hashtable<Symbol*, mtModule>::bucket(i);
   }
 
-  // Create module in loader's module entry table, if already exists then
-  // return null.  Assume Module_lock has been locked by caller.
-  ModuleEntry* locked_create_entry_or_null(Handle module_handle,
-                                           bool is_open,
-                                           Symbol* module_name,
-                                           Symbol* module_version,
-                                           Symbol* module_location,
-                                           ClassLoaderData* loader_data);
+  // Create module in loader's module entry table.  Assume Module_lock
+  // has been locked by caller.
+  ModuleEntry* locked_create_entry(Handle module_handle,
+                                   bool is_open,
+                                   Symbol* module_name,
+                                   Symbol* module_version,
+                                   Symbol* module_location,
+                                   ClassLoaderData* loader_data);
 
   // Only lookup module within loader's module entry table.  The table read is lock-free.
   ModuleEntry* lookup_only(Symbol* name);
@@ -253,7 +253,10 @@
 
   // Special handling for java.base
   static ModuleEntry* javabase_moduleEntry()                   { return _javabase_module; }
-  static void set_javabase_moduleEntry(ModuleEntry* java_base) { _javabase_module = java_base; }
+  static void set_javabase_moduleEntry(ModuleEntry* java_base) {
+    assert(_javabase_module == NULL, "_javabase_module is already defined");
+    _javabase_module = java_base;
+  }
 
   static bool javabase_defined() { return ((_javabase_module != NULL) &&
                                            (_javabase_module->module() != NULL)); }
--- a/src/hotspot/share/classfile/modules.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/modules.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
@@ -206,13 +206,12 @@
       package_table->verify_javabase_packages(pkg_list);
 
       // loop through and add any new packages for java.base
-      PackageEntry* pkg;
       for (int x = 0; x < pkg_list->length(); x++) {
         // Some of java.base's packages were added early in bootstrapping, ignore duplicates.
-        if (package_table->lookup_only(pkg_list->at(x)) == NULL) {
-          pkg = package_table->locked_create_entry_or_null(pkg_list->at(x), ModuleEntryTable::javabase_moduleEntry());
-          assert(pkg != NULL, "Unable to create a " JAVA_BASE_NAME " package entry");
-        }
+        package_table->locked_create_entry_if_not_exist(pkg_list->at(x),
+                                                        ModuleEntryTable::javabase_moduleEntry());
+        assert(package_table->locked_lookup_only(pkg_list->at(x)) != NULL,
+               "Unable to create a " JAVA_BASE_NAME " package entry");
         // Unable to have a GrowableArray of TempNewSymbol.  Must decrement the refcount of
         // the Symbol* that was created above for each package. The refcount was incremented
         // by SymbolTable::new_symbol and as well by the PackageEntry creation.
@@ -388,7 +387,7 @@
 
       // Check that none of the packages exist in the class loader's package table.
       for (int x = 0; x < pkg_list->length(); x++) {
-        existing_pkg = package_table->lookup_only(pkg_list->at(x));
+        existing_pkg = package_table->locked_lookup_only(pkg_list->at(x));
         if (existing_pkg != NULL) {
           // This could be because the module was already defined.  If so,
           // report that error instead of the package error.
@@ -402,20 +401,17 @@
 
     // Add the module and its packages.
     if (!dupl_modules && existing_pkg == NULL) {
-      // Create the entry for this module in the class loader's module entry table.
-      ModuleEntry* module_entry = module_table->locked_create_entry_or_null(module_handle,
+      if (module_table->lookup_only(module_symbol) == NULL) {
+        // Create the entry for this module in the class loader's module entry table.
+        ModuleEntry* module_entry = module_table->locked_create_entry(module_handle,
                                     (is_open == JNI_TRUE), module_symbol,
                                     version_symbol, location_symbol, loader_data);
+        assert(module_entry != NULL, "module_entry creation failed");
 
-      if (module_entry == NULL) {
-        dupl_modules = true;
-      } else {
         // Add the packages.
         assert(pkg_list->length() == 0 || package_table != NULL, "Bad package table");
-        PackageEntry* pkg;
         for (int y = 0; y < pkg_list->length(); y++) {
-          pkg = package_table->locked_create_entry_or_null(pkg_list->at(y), module_entry);
-          assert(pkg != NULL, "Unable to create a module's package entry");
+          package_table->locked_create_entry(pkg_list->at(y), module_entry);
 
           // Unable to have a GrowableArray of TempNewSymbol.  Must decrement the refcount of
           // the Symbol* that was created above for each package. The refcount was incremented
@@ -425,6 +421,8 @@
 
         // Store pointer to ModuleEntry record in java.lang.Module object.
         java_lang_Module::set_module_entry(module_handle(), module_entry);
+      } else {
+         dupl_modules = true;
       }
     }
   }  // Release the lock
--- a/src/hotspot/share/classfile/packageEntry.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/packageEntry.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -211,23 +211,28 @@
   Hashtable<Symbol*, mtModule>::add_entry(index, (HashtableEntry<Symbol*, mtModule>*)new_entry);
 }
 
-// Create package in loader's package entry table and return the entry.
-// If entry already exists, return null.  Assume Module lock was taken by caller.
-PackageEntry* PackageEntryTable::locked_create_entry_or_null(Symbol* name, ModuleEntry* module) {
+// Create package entry in loader's package entry table.  Assume Module lock
+// was taken by caller.
+void PackageEntryTable::locked_create_entry(Symbol* name, ModuleEntry* module) {
   assert(Module_lock->owned_by_self(), "should have the Module_lock");
-  // Check if package already exists.  Return NULL if it does.
-  if (lookup_only(name) != NULL) {
-    return NULL;
-  } else {
-    PackageEntry* entry = new_entry(compute_hash(name), name, module);
-    add_entry(index_for(name), entry);
-    return entry;
+  assert(locked_lookup_only(name) == NULL, "Package entry already exists");
+  PackageEntry* entry = new_entry(compute_hash(name), name, module);
+  add_entry(index_for(name), entry);
+}
+
+// Create package entry in loader's package entry table if it does not already
+// exist.  Assume Module lock was taken by caller.
+void PackageEntryTable::locked_create_entry_if_not_exist(Symbol* name, ModuleEntry* module) {
+  assert(Module_lock->owned_by_self(), "should have the Module_lock");
+  // Check if package entry already exists.  If not, create it.
+  if (locked_lookup_only(name) == NULL) {
+    locked_create_entry(name, module);
   }
 }
 
 PackageEntry* PackageEntryTable::lookup(Symbol* name, ModuleEntry* module) {
   MutexLocker ml(Module_lock);
-  PackageEntry* p = lookup_only(name);
+  PackageEntry* p = locked_lookup_only(name);
   if (p != NULL) {
     return p;
   } else {
@@ -239,7 +244,13 @@
 }
 
 PackageEntry* PackageEntryTable::lookup_only(Symbol* name) {
-  MutexLockerEx ml(Module_lock->owned_by_self() ? NULL : Module_lock);
+  assert(!Module_lock->owned_by_self(), "should not have the Module_lock - use locked_lookup_only");
+  MutexLockerEx ml(Module_lock);
+  return locked_lookup_only(name);
+}
+
+PackageEntry* PackageEntryTable::locked_lookup_only(Symbol* name) {
+  assert(Module_lock->owned_by_self(), "should have the Module_lock");
   int index = index_for(name);
   for (PackageEntry* p = bucket(index); p != NULL; p = p->next()) {
     if (p->name()->fast_compare(name) == 0) {
--- a/src/hotspot/share/classfile/packageEntry.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/packageEntry.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -246,16 +246,26 @@
     return (PackageEntry*)Hashtable<Symbol*, mtModule>::bucket(i);
   }
 
-  // Create package in loader's package entry table and return the entry.
-  // If entry already exists, return null.  Assume Module lock was taken by caller.
-  PackageEntry* locked_create_entry_or_null(Symbol* name, ModuleEntry* module);
+  // Create package entry in loader's package entry table.  Assume Module
+  // lock was taken by caller.
+  void locked_create_entry(Symbol* name, ModuleEntry* module);
 
-  // lookup Package with loader's package entry table, if not found add
+  // Create package entry in loader's package entry table if it does not
+  // already exist.  Assume Module lock was taken by caller.
+  void locked_create_entry_if_not_exist(Symbol* name, ModuleEntry* module);
+
+  // Lookup Package with loader's package entry table, add it if not found.
+  // This will acquire the Module lock.
   PackageEntry* lookup(Symbol* name, ModuleEntry* module);
 
   // Only lookup Package within loader's package entry table.
+  // This will acquire the Module lock.
   PackageEntry* lookup_only(Symbol* Package);
 
+  // Only lookup Package within loader's package entry table.  Assume Module lock
+  // was taken by caller.
+  PackageEntry* locked_lookup_only(Symbol* Package);
+
   void verify_javabase_packages(GrowableArray<Symbol*> *pkg_list);
 
   // purge dead weak references out of exported list
--- a/src/hotspot/share/classfile/stringTable.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/stringTable.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -376,68 +376,11 @@
   } while(true);
 }
 
-// GC support
-class StringTableIsAliveCounter : public BoolObjectClosure {
-  BoolObjectClosure* _real_boc;
- public:
-  size_t _count;
-  size_t _count_total;
-  StringTableIsAliveCounter(BoolObjectClosure* boc) : _real_boc(boc), _count(0),
-                                                      _count_total(0) {}
-  bool do_object_b(oop obj) {
-    bool ret = _real_boc->do_object_b(obj);
-    if (!ret) {
-      ++_count;
-    }
-    ++_count_total;
-    return ret;
-  }
-};
-
-void StringTable::unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f,
-                                    size_t* processed, size_t* removed) {
-  DoNothingClosure dnc;
-  assert(is_alive != NULL, "No closure");
-  StringTableIsAliveCounter stiac(is_alive);
-  OopClosure* tmp = f != NULL ? f : &dnc;
-
-  StringTable::the_table()->_weak_handles->weak_oops_do(&stiac, tmp);
-
-  // This is the serial case without ParState.
-  // Just set the correct number and check for a cleaning phase.
-  the_table()->_uncleaned_items_count = stiac._count;
-  StringTable::the_table()->check_concurrent_work();
-
-  if (processed != NULL) {
-    *processed = stiac._count_total;
-  }
-  if (removed != NULL) {
-    *removed = stiac._count;
-  }
-}
-
 void StringTable::oops_do(OopClosure* f) {
   assert(f != NULL, "No closure");
   StringTable::the_table()->_weak_handles->oops_do(f);
 }
 
-void StringTable::possibly_parallel_unlink(
-   OopStorage::ParState<false, false>* _par_state_string, BoolObjectClosure* cl,
-   size_t* processed, size_t* removed)
-{
-  DoNothingClosure dnc;
-  assert(cl != NULL, "No closure");
-  StringTableIsAliveCounter stiac(cl);
-
-  _par_state_string->weak_oops_do(&stiac, &dnc);
-
-  // Accumulate the dead strings.
-  the_table()->add_items_to_clean(stiac._count);
-
-  *processed = stiac._count_total;
-  *removed = stiac._count;
-}
-
 void StringTable::possibly_parallel_oops_do(
    OopStorage::ParState<false /* concurrent */, false /* const */>*
    _par_state_string, OopClosure* f)
--- a/src/hotspot/share/classfile/stringTable.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/stringTable.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -128,20 +128,10 @@
     the_table()->add_items_to_clean(ndead);
   }
 
-  //   Delete pointers to otherwise-unreachable objects.
-  static void unlink(BoolObjectClosure* cl) {
-    unlink_or_oops_do(cl);
-  }
-  static void unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f = NULL,
-                                size_t* processed = NULL, size_t* removed = NULL);
-
   // Serially invoke "f->do_oop" on the locations of all oops in the table.
   static void oops_do(OopClosure* f);
 
   // Possibly parallel versions of the above
-  static void possibly_parallel_unlink(
-     OopStorage::ParState<false /* concurrent */, false /* const*/>* par_state_string,
-     BoolObjectClosure* cl, size_t* processed, size_t* removed);
   static void possibly_parallel_oops_do(
      OopStorage::ParState<false /* concurrent */, false /* const*/>* par_state_string,
      OopClosure* f);
--- a/src/hotspot/share/classfile/vmSymbols.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/classfile/vmSymbols.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -278,9 +278,10 @@
                                                                                                   \
   /* Intrinsic Annotation (JDK 9 and above) */                                                    \
   template(jdk_internal_HotSpotIntrinsicCandidate_signature, "Ljdk/internal/HotSpotIntrinsicCandidate;") \
+  template(jdk_internal_vm_annotation_DontInline_signature,  "Ljdk/internal/vm/annotation/DontInline;")  \
   template(jdk_internal_vm_annotation_ForceInline_signature, "Ljdk/internal/vm/annotation/ForceInline;") \
-  template(jdk_internal_vm_annotation_DontInline_signature,  "Ljdk/internal/vm/annotation/DontInline;")  \
-  template(jdk_internal_vm_annotation_Stable_signature,      "Ljdk/internal/vm/annotation/Stable;")      \
+  template(jdk_internal_vm_annotation_Hidden_signature,      "Ljdk/internal/vm/annotation/Hidden;") \
+  template(jdk_internal_vm_annotation_Stable_signature,      "Ljdk/internal/vm/annotation/Stable;") \
                                                                                                   \
   /* Support for JSR 292 & invokedynamic (JDK 1.7 and above) */                                   \
   template(java_lang_invoke_CallSite,                 "java/lang/invoke/CallSite")                \
@@ -304,9 +305,7 @@
   template(java_lang_invoke_LambdaForm,               "java/lang/invoke/LambdaForm")              \
   template(java_lang_invoke_InjectedProfile_signature, "Ljava/lang/invoke/InjectedProfile;")      \
   template(java_lang_invoke_LambdaForm_Compiled_signature, "Ljava/lang/invoke/LambdaForm$Compiled;") \
-  template(java_lang_invoke_LambdaForm_Hidden_signature, "Ljava/lang/invoke/LambdaForm$Hidden;")  \
   template(java_lang_invoke_MethodHandleNatives_CallSiteContext_signature, "Ljava/lang/invoke/MethodHandleNatives$CallSiteContext;") \
-  template(java_security_AccessController_Hidden_signature, "Ljava/security/AccessController$Hidden;")  \
   /* internal up-calls made only by the JVM, via class sun.invoke.MethodHandleNatives: */         \
   template(findMethodHandleType_name,                 "findMethodHandleType")                     \
   template(findMethodHandleType_signature,       "(Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;") \
--- a/src/hotspot/share/code/nmethod.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/code/nmethod.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1100,7 +1100,11 @@
          "must be at safepoint");
 
   // Unregister must be done before the state change
-  Universe::heap()->unregister_nmethod(this);
+  {
+    MutexLockerEx ml(SafepointSynchronize::is_at_safepoint() ? NULL : CodeCache_lock,
+                     Mutex::_no_safepoint_check_flag);
+    Universe::heap()->unregister_nmethod(this);
+  }
 
   // Log the unloading.
   log_state_change();
--- a/src/hotspot/share/gc/cms/cmsHeap.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/cms/cmsHeap.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -225,15 +225,11 @@
                                 ScanningOption so,
                                 bool only_strong_roots,
                                 OopsInGenClosure* root_closure,
-                                CLDClosure* cld_closure,
-                                OopStorage::ParState<false, false>* par_state_string) {
+                                CLDClosure* cld_closure) {
   MarkingCodeBlobClosure mark_code_closure(root_closure, !CodeBlobToOopClosure::FixRelocations);
   CLDClosure* weak_cld_closure = only_strong_roots ? NULL : cld_closure;
 
   process_roots(scope, so, root_closure, cld_closure, weak_cld_closure, &mark_code_closure);
-  if (!only_strong_roots) {
-    process_string_table_roots(scope, root_closure, par_state_string);
-  }
 
   if (young_gen_as_roots &&
       _process_strong_tasks->try_claim_task(GCH_PS_younger_gens)) {
--- a/src/hotspot/share/gc/cms/cmsHeap.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/cms/cmsHeap.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -91,8 +91,7 @@
                          ScanningOption so,
                          bool only_strong_roots,
                          OopsInGenClosure* root_closure,
-                         CLDClosure* cld_closure,
-                         OopStorage::ParState<false, false>* par_state_string = NULL);
+                         CLDClosure* cld_closure);
 
   GCMemoryManager* old_manager() const { return _old_manager; }
 
--- a/src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -4333,8 +4333,7 @@
                           GenCollectedHeap::ScanningOption(_collector->CMSCollector::roots_scanning_options()),
                           _collector->should_unload_classes(),
                           &par_mri_cl,
-                          &cld_closure,
-                          &_par_state_string);
+                          &cld_closure);
 
   assert(_collector->should_unload_classes()
          || (_collector->CMSCollector::roots_scanning_options() & GenCollectedHeap::SO_AllCodeCache),
@@ -4464,8 +4463,7 @@
                           GenCollectedHeap::ScanningOption(_collector->CMSCollector::roots_scanning_options()),
                           _collector->should_unload_classes(),
                           &par_mrias_cl,
-                          NULL,     // The dirty klasses will be handled below
-                          &_par_state_string);
+                          NULL);     // The dirty klasses will be handled below
 
   assert(_collector->should_unload_classes()
          || (_collector->CMSCollector::roots_scanning_options() & GenCollectedHeap::SO_AllCodeCache),
@@ -5277,12 +5275,6 @@
       // Clean up unreferenced symbols in symbol table.
       SymbolTable::unlink();
     }
-
-    {
-      GCTraceTime(Debug, gc, phases) t("Scrub String Table", _gc_timer_cm);
-      // Delete entries for dead interned strings.
-      StringTable::unlink(&_is_alive_closure);
-    }
   }
 
   // Restore any preserved marks as a result of mark stack or
--- a/src/hotspot/share/gc/cms/parNewGeneration.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/cms/parNewGeneration.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -606,8 +606,7 @@
   heap->young_process_roots(_strong_roots_scope,
                            &par_scan_state.to_space_root_closure(),
                            &par_scan_state.older_gen_closure(),
-                           &cld_scan_closure,
-                           &_par_state_string);
+                           &cld_scan_closure);
 
   par_scan_state.end_strong_roots();
 
--- a/src/hotspot/share/gc/g1/dirtyCardQueue.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/dirtyCardQueue.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -25,6 +25,7 @@
 #include "precompiled.hpp"
 #include "gc/g1/dirtyCardQueue.hpp"
 #include "gc/g1/g1CollectedHeap.inline.hpp"
+#include "gc/g1/g1FreeIdSet.hpp"
 #include "gc/g1/g1RemSet.hpp"
 #include "gc/g1/g1ThreadLocalData.hpp"
 #include "gc/g1/heapRegionRemSet.hpp"
@@ -55,72 +56,6 @@
   }
 };
 
-// Represents a set of free small integer ids.
-class FreeIdSet : public CHeapObj<mtGC> {
-  enum {
-    end_of_list = UINT_MAX,
-    claimed = UINT_MAX - 1
-  };
-
-  uint _size;
-  Monitor* _mon;
-
-  uint* _ids;
-  uint _hd;
-  uint _waiters;
-  uint _claimed;
-
-public:
-  FreeIdSet(uint size, Monitor* mon);
-  ~FreeIdSet();
-
-  // Returns an unclaimed parallel id (waiting for one to be released if
-  // necessary).
-  uint claim_par_id();
-
-  void release_par_id(uint id);
-};
-
-FreeIdSet::FreeIdSet(uint size, Monitor* mon) :
-  _size(size), _mon(mon), _hd(0), _waiters(0), _claimed(0)
-{
-  guarantee(size != 0, "must be");
-  _ids = NEW_C_HEAP_ARRAY(uint, size, mtGC);
-  for (uint i = 0; i < size - 1; i++) {
-    _ids[i] = i+1;
-  }
-  _ids[size-1] = end_of_list; // end of list.
-}
-
-FreeIdSet::~FreeIdSet() {
-  FREE_C_HEAP_ARRAY(uint, _ids);
-}
-
-uint FreeIdSet::claim_par_id() {
-  MutexLockerEx x(_mon, Mutex::_no_safepoint_check_flag);
-  while (_hd == end_of_list) {
-    _waiters++;
-    _mon->wait(Mutex::_no_safepoint_check_flag);
-    _waiters--;
-  }
-  uint res = _hd;
-  _hd = _ids[res];
-  _ids[res] = claimed;  // For debugging.
-  _claimed++;
-  return res;
-}
-
-void FreeIdSet::release_par_id(uint id) {
-  MutexLockerEx x(_mon, Mutex::_no_safepoint_check_flag);
-  assert(_ids[id] == claimed, "Precondition.");
-  _ids[id] = _hd;
-  _hd = id;
-  _claimed--;
-  if (_waiters > 0) {
-    _mon->notify_all();
-  }
-}
-
 DirtyCardQueue::DirtyCardQueue(DirtyCardQueueSet* qset, bool permanent) :
   // Dirty card queues are always active, so we create them with their
   // active field set to true.
@@ -144,6 +79,10 @@
   _all_active = true;
 }
 
+DirtyCardQueueSet::~DirtyCardQueueSet() {
+  delete _free_ids;
+}
+
 // Determines how many mutator threads can process the buffers in parallel.
 uint DirtyCardQueueSet::num_par_ids() {
   return (uint)os::initial_active_processor_count();
@@ -156,7 +95,7 @@
   PtrQueueSet::initialize(cbl_mon, allocator);
   _shared_dirty_card_queue.set_lock(lock);
   if (init_free_ids) {
-    _free_ids = new FreeIdSet(num_par_ids(), cbl_mon);
+    _free_ids = new G1FreeIdSet(0, num_par_ids());
   }
 }
 
--- a/src/hotspot/share/gc/g1/dirtyCardQueue.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/dirtyCardQueue.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -28,8 +28,8 @@
 #include "gc/shared/ptrQueue.hpp"
 #include "memory/allocation.hpp"
 
-class FreeIdSet;
 class DirtyCardQueueSet;
+class G1FreeIdSet;
 class JavaThread;
 class Monitor;
 
@@ -103,8 +103,7 @@
 
   bool mut_process_buffer(BufferNode* node);
 
-  // Protected by the _cbl_mon.
-  FreeIdSet* _free_ids;
+  G1FreeIdSet* _free_ids;
 
   // The number of completed buffers processed by mutator and rs thread,
   // respectively.
@@ -118,6 +117,7 @@
 
 public:
   DirtyCardQueueSet(bool notify_when_complete = true);
+  ~DirtyCardQueueSet();
 
   void initialize(Monitor* cbl_mon,
                   BufferNode::Allocator* allocator,
--- a/src/hotspot/share/gc/g1/g1CollectedHeap.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1CollectedHeap.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -3362,24 +3362,54 @@
 
 void G1CollectedHeap::complete_cleaning(BoolObjectClosure* is_alive,
                                         bool class_unloading_occurred) {
-  uint n_workers = workers()->active_workers();
-
-  G1StringDedupUnlinkOrOopsDoClosure dedup_closure(is_alive, NULL, false);
-  ParallelCleaningTask g1_unlink_task(is_alive, &dedup_closure, n_workers, class_unloading_occurred);
-  workers()->run_task(&g1_unlink_task);
+  uint num_workers = workers()->active_workers();
+  ParallelCleaningTask unlink_task(is_alive, num_workers, class_unloading_occurred, false);
+  workers()->run_task(&unlink_task);
 }
 
-void G1CollectedHeap::partial_cleaning(BoolObjectClosure* is_alive,
-                                       bool process_strings,
-                                       bool process_string_dedup) {
-  if (!process_strings && !process_string_dedup) {
-    // Nothing to clean.
-    return;
+// Clean string dedup data structures.
+// Ideally we would prefer to use a StringDedupCleaningTask here, but we want to
+// record the durations of the phases. Hence the almost-copy.
+class G1StringDedupCleaningTask : public AbstractGangTask {
+  BoolObjectClosure* _is_alive;
+  OopClosure* _keep_alive;
+  G1GCPhaseTimes* _phase_times;
+
+public:
+  G1StringDedupCleaningTask(BoolObjectClosure* is_alive,
+                            OopClosure* keep_alive,
+                            G1GCPhaseTimes* phase_times) :
+    AbstractGangTask("Partial Cleaning Task"),
+    _is_alive(is_alive),
+    _keep_alive(keep_alive),
+    _phase_times(phase_times)
+  {
+    assert(G1StringDedup::is_enabled(), "String deduplication disabled.");
+    StringDedup::gc_prologue(true);
   }
 
-  G1StringDedupUnlinkOrOopsDoClosure dedup_closure(is_alive, NULL, false);
-  StringCleaningTask g1_unlink_task(is_alive, process_string_dedup ? &dedup_closure : NULL, process_strings);
-  workers()->run_task(&g1_unlink_task);
+  ~G1StringDedupCleaningTask() {
+    StringDedup::gc_epilogue();
+  }
+
+  void work(uint worker_id) {
+    StringDedupUnlinkOrOopsDoClosure cl(_is_alive, _keep_alive);
+    {
+      G1GCParPhaseTimesTracker x(_phase_times, G1GCPhaseTimes::StringDedupQueueFixup, worker_id);
+      StringDedupQueue::unlink_or_oops_do(&cl);
+    }
+    {
+      G1GCParPhaseTimesTracker x(_phase_times, G1GCPhaseTimes::StringDedupTableFixup, worker_id);
+      StringDedupTable::unlink_or_oops_do(&cl, worker_id);
+    }
+  }
+};
+
+void G1CollectedHeap::string_dedup_cleaning(BoolObjectClosure* is_alive,
+                                            OopClosure* keep_alive,
+                                            G1GCPhaseTimes* phase_times) {
+  G1StringDedupCleaningTask cl(is_alive, keep_alive, phase_times);
+  workers()->run_task(&cl);
 }
 
 class G1RedirtyLoggedCardsTask : public AbstractGangTask {
@@ -3911,11 +3941,6 @@
   // not copied during the pause.
   process_discovered_references(per_thread_states);
 
-  // FIXME
-  // CM's reference processing also cleans up the string table.
-  // Should we do that here also? We could, but it is a serial operation
-  // and could significantly increase the pause time.
-
   G1STWIsAliveClosure is_alive(this);
   G1KeepAliveClosure keep_alive(this);
 
@@ -3923,12 +3948,12 @@
                               g1_policy()->phase_times()->weak_phase_times());
 
   if (G1StringDedup::is_enabled()) {
-    double fixup_start = os::elapsedTime();
-
-    G1StringDedup::unlink_or_oops_do(&is_alive, &keep_alive, true, g1_policy()->phase_times());
-
-    double fixup_time_ms = (os::elapsedTime() - fixup_start) * 1000.0;
-    g1_policy()->phase_times()->record_string_dedup_fixup_time(fixup_time_ms);
+    double string_dedup_time_ms = os::elapsedTime();
+
+    string_dedup_cleaning(&is_alive, &keep_alive, g1_policy()->phase_times());
+
+    double string_cleanup_time_ms = (os::elapsedTime() - string_dedup_time_ms) * 1000.0;
+    g1_policy()->phase_times()->record_string_deduplication_time(string_cleanup_time_ms);
   }
 
   if (evacuation_failed()) {
--- a/src/hotspot/share/gc/g1/g1CollectedHeap.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1CollectedHeap.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1332,14 +1332,12 @@
   // after a full GC.
   void rebuild_strong_code_roots();
 
-  // Partial cleaning used when class unloading is disabled.
-  // Let the caller choose what structures to clean out:
-  // - StringTable
-  // - StringDeduplication structures
-  void partial_cleaning(BoolObjectClosure* is_alive, bool unlink_strings, bool unlink_string_dedup);
+  // Partial cleaning of VM internal data structures.
+  void string_dedup_cleaning(BoolObjectClosure* is_alive,
+                             OopClosure* keep_alive,
+                             G1GCPhaseTimes* phase_times = NULL);
 
-  // Complete cleaning used when class unloading is enabled.
-  // Cleans out all structures handled by partial_cleaning and also the CodeCache.
+  // Performs cleaning of data structures after class unloading.
   void complete_cleaning(BoolObjectClosure* is_alive, bool class_unloading_occurred);
 
   // Redirty logged cards in the refinement queue.
--- a/src/hotspot/share/gc/g1/g1ConcurrentMark.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1ConcurrentMark.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1655,11 +1655,9 @@
     GCTraceTime(Debug, gc, phases) debug("Class Unloading", _gc_timer_cm);
     bool purged_classes = SystemDictionary::do_unloading(_gc_timer_cm);
     _g1h->complete_cleaning(&g1_is_alive, purged_classes);
-  } else {
-    GCTraceTime(Debug, gc, phases) debug("Cleanup", _gc_timer_cm);
-    // No need to clean string table as it is treated as strong roots when
-    // class unloading is disabled.
-    _g1h->partial_cleaning(&g1_is_alive, false, G1StringDedup::is_enabled());
+  } else if (StringDedup::is_enabled()) {
+    GCTraceTime(Debug, gc, phases) debug("String Deduplication", _gc_timer_cm);
+    _g1h->string_dedup_cleaning(&g1_is_alive, NULL);
   }
 }
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hotspot/share/gc/g1/g1FreeIdSet.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,104 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#include "precompiled.hpp"
+#include "gc/g1/g1FreeIdSet.hpp"
+#include "memory/allocation.inline.hpp"
+#include "runtime/atomic.hpp"
+#include "utilities/debug.hpp"
+#include "utilities/globalDefinitions.hpp"
+#include "utilities/macros.hpp"
+
+G1FreeIdSet::G1FreeIdSet(uint start, uint size) :
+  _sem(size),          // counting semaphore for available ids
+  _next(NULL),         // array of "next" indices
+  _start(start),       // first id value
+  _size(size),         // number of available ids
+  _head_index_mask(0), // mask for extracting index from a _head value.
+  _head(0)             // low part: index; high part: update counter
+{
+  assert(size != 0, "precondition");
+  assert(start <= (UINT_MAX - size),
+         "start (%u) + size (%u) overflow: ", start, size);
+  // 2^shift must be greater than size. Equal is not permitted, because
+  // size is the "end of list" value, and can be the index part of _head.
+  uint shift = log2_intptr((uintptr_t)size) + 1;
+  assert(shift <= (BitsPerWord / 2), "excessive size %u", size);
+  _head_index_mask = (uintx(1) << shift) - 1;
+  assert(size <= _head_index_mask, "invariant");
+  _next = NEW_C_HEAP_ARRAY(uint, size, mtGC);
+  for (uint i = 0; i < size; ++i) {
+    _next[i] = i + 1;
+  }
+}
+
+G1FreeIdSet::~G1FreeIdSet() {
+  FREE_C_HEAP_ARRAY(uint, _next);
+}
+
+uint G1FreeIdSet::head_index(uintx head) const {
+  return head & _head_index_mask;
+}
+
+uintx G1FreeIdSet::make_head(uint index, uintx old_head) const {
+  // Include incremented old update counter to avoid ABA problem.
+  return index | ((old_head & ~_head_index_mask) + 1 + _head_index_mask);
+}
+
+const uint Claimed = UINT_MAX;
+
+uint G1FreeIdSet::claim_par_id() {
+  _sem.wait();
+  // Semaphore gate permits passage by no more than the number of
+  // available ids, so there must be one that we can claim.  But there
+  // may be multiple threads trying to claim ids at the same time.
+  uintx old_head = Atomic::load(&_head);
+  uint index;
+  while (true) {
+    index = head_index(old_head);
+    assert(index < _size, "invariant");
+    uintx new_head = make_head(_next[index], old_head);
+    new_head = Atomic::cmpxchg(new_head, &_head, old_head);
+    if (new_head == old_head) break;
+    old_head = new_head;
+  }
+  DEBUG_ONLY(_next[index] = Claimed;)
+  return _start + index;
+}
+
+void G1FreeIdSet::release_par_id(uint id) {
+  uint index = id - _start;
+  assert(index < _size, "invalid id %u", id);
+  assert(_next[index] == Claimed, "precondition");
+  uintx old_head = Atomic::load(&_head);
+  while (true) {
+    _next[index] = head_index(old_head);
+    uintx new_head = make_head(index, old_head);
+    new_head = Atomic::cmpxchg(new_head, &_head, old_head);
+    if (new_head == old_head) break;
+    old_head = new_head;
+  }
+  // Now that id has been released, permit another thread through the gate.
+  _sem.signal();
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hotspot/share/gc/g1/g1FreeIdSet.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,65 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#ifndef SHARE_GC_G1_G1FREEIDSET_HPP
+#define SHARE_GC_G1_G1FREEIDSET_HPP
+
+#include "memory/allocation.hpp"
+#include "runtime/semaphore.hpp"
+#include "utilities/globalDefinitions.hpp"
+
+// Represents a set of small integer ids, from which elements can be
+// temporarily allocated for exclusive use.  The ids are in a
+// contiguous range from 'start' to 'start + size'.  Used to obtain a
+// distinct worker_id value for a mutator thread that doesn't normally
+// have such an id.
+class G1FreeIdSet : public CHeapObj<mtGC> {
+  Semaphore _sem;
+  uint* _next;
+  uint _start;
+  uint _size;
+  uintx _head_index_mask;
+  volatile uintx _head;
+
+  uint head_index(uintx head) const;
+  uintx make_head(uint index, uintx old_head) const;
+
+  // Noncopyable.
+  G1FreeIdSet(const G1FreeIdSet&);
+  G1FreeIdSet& operator=(const G1FreeIdSet&);
+
+public:
+  G1FreeIdSet(uint start, uint size);
+  ~G1FreeIdSet();
+
+  // Returns an unclaimed parallel id (waiting for one to be released if
+  // necessary).  Must not safepoint while holding a claimed id.
+  uint claim_par_id();
+
+  void release_par_id(uint id);
+
+  struct TestSupport;           // For unit test access.
+};
+
+#endif // SHARE_GC_G1_G1FREEIDSET_HPP
--- a/src/hotspot/share/gc/g1/g1FullCollector.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1FullCollector.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -224,10 +224,10 @@
     // Unload classes and purge the SystemDictionary.
     bool purged_class = SystemDictionary::do_unloading(scope()->timer());
     _heap->complete_cleaning(&_is_alive, purged_class);
-  } else {
-    GCTraceTime(Debug, gc, phases) debug("Phase 1: String and Symbol Tables Cleanup", scope()->timer());
-    // If no class unloading just clean out strings.
-    _heap->partial_cleaning(&_is_alive, true, G1StringDedup::is_enabled());
+  } else if (G1StringDedup::is_enabled()) {
+    GCTraceTime(Debug, gc, phases) debug("Phase 1: String Dedup Cleanup", scope()->timer());
+    // If no class unloading just clean out string deduplication data.
+    _heap->string_dedup_cleaning(&_is_alive, NULL);
   }
 
   scope()->tracer()->report_object_count_after_gc(&_is_alive);
--- a/src/hotspot/share/gc/g1/g1FullGCAdjustTask.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1FullGCAdjustTask.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -86,7 +86,7 @@
     _weak_proc_task(collector->workers()),
     _hrclaimer(collector->workers()),
     _adjust(),
-    _adjust_string_dedup(NULL, &_adjust, G1StringDedup::is_enabled()) {
+    _string_dedup_cleaning_task(NULL, &_adjust, false) {
   // Need cleared claim bits for the roots processing
   ClassLoaderDataGraph::clear_claimed_marks();
 }
@@ -110,15 +110,10 @@
 
   CLDToOopClosure adjust_cld(&_adjust, ClassLoaderData::_claim_strong);
   CodeBlobToOopClosure adjust_code(&_adjust, CodeBlobToOopClosure::FixRelocations);
-  _root_processor.process_all_roots(
-      &_adjust,
-      &adjust_cld,
-      &adjust_code);
+  _root_processor.process_all_roots(&_adjust, &adjust_cld, &adjust_code);
 
-  // Adjust string dedup if enabled.
-  if (G1StringDedup::is_enabled()) {
-    G1StringDedup::parallel_unlink(&_adjust_string_dedup, worker_id);
-  }
+  // Adjust string dedup data structures.
+  _string_dedup_cleaning_task.work(worker_id);
 
   // Now adjust pointers region by region
   G1AdjustRegionClosure blk(collector()->mark_bitmap(), worker_id);
--- a/src/hotspot/share/gc/g1/g1FullGCAdjustTask.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1FullGCAdjustTask.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -30,6 +30,7 @@
 #include "gc/g1/g1RootProcessor.hpp"
 #include "gc/g1/g1StringDedup.hpp"
 #include "gc/g1/heapRegionManager.hpp"
+#include "gc/shared/parallelCleaning.hpp"
 #include "gc/shared/weakProcessorPhaseTimes.hpp"
 #include "gc/shared/weakProcessor.hpp"
 #include "utilities/ticks.hpp"
@@ -42,7 +43,7 @@
   WeakProcessor::Task      _weak_proc_task;
   HeapRegionClaimer        _hrclaimer;
   G1AdjustClosure          _adjust;
-  G1StringDedupUnlinkOrOopsDoClosure _adjust_string_dedup;
+  StringDedupCleaningTask  _string_dedup_cleaning_task;
 
 public:
   G1FullGCAdjustTask(G1FullCollector* collector);
--- a/src/hotspot/share/gc/g1/g1FullGCMarkTask.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1FullGCMarkTask.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -49,15 +49,13 @@
   MarkingCodeBlobClosure code_closure(marker->mark_closure(), !CodeBlobToOopClosure::FixRelocations);
 
   if (ClassUnloading) {
-    _root_processor.process_strong_roots(
-        marker->mark_closure(),
-        marker->cld_closure(),
-        &code_closure);
+    _root_processor.process_strong_roots(marker->mark_closure(),
+                                         marker->cld_closure(),
+                                         &code_closure);
   } else {
-    _root_processor.process_all_roots_no_string_table(
-        marker->mark_closure(),
-        marker->cld_closure(),
-        &code_closure);
+    _root_processor.process_all_roots(marker->mark_closure(),
+                                      marker->cld_closure(),
+                                      &code_closure);
   }
 
   // Mark stack is populated, now process and drain it.
--- a/src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -53,7 +53,6 @@
 
   // Root scanning phases
   _gc_par_phases[ThreadRoots] = new WorkerDataArray<double>(max_gc_threads, "Thread Roots (ms):");
-  _gc_par_phases[StringTableRoots] = new WorkerDataArray<double>(max_gc_threads, "StringTable Roots (ms):");
   _gc_par_phases[UniverseRoots] = new WorkerDataArray<double>(max_gc_threads, "Universe Roots (ms):");
   _gc_par_phases[JNIRoots] = new WorkerDataArray<double>(max_gc_threads, "JNI Handles Roots (ms):");
   _gc_par_phases[ObjectSynchronizerRoots] = new WorkerDataArray<double>(max_gc_threads, "ObjectSynchronizer Roots (ms):");
@@ -136,7 +135,7 @@
   _cur_strong_code_root_purge_time_ms = 0.0;
   _cur_evac_fail_recalc_used = 0.0;
   _cur_evac_fail_remove_self_forwards = 0.0;
-  _cur_string_dedup_fixup_time_ms = 0.0;
+  _cur_string_deduplication_time_ms = 0.0;
   _cur_prepare_tlab_time_ms = 0.0;
   _cur_resize_tlab_time_ms = 0.0;
   _cur_derived_pointer_table_update_time_ms = 0.0;
@@ -290,12 +289,12 @@
   }
 }
 
-void G1GCPhaseTimes::debug_phase(WorkerDataArray<double>* phase) const {
+void G1GCPhaseTimes::debug_phase(WorkerDataArray<double>* phase, uint extra_indent) const {
   LogTarget(Debug, gc, phases) lt;
   if (lt.is_enabled()) {
     ResourceMark rm;
     LogStream ls(lt);
-    log_phase(phase, 2, &ls, true);
+    log_phase(phase, 2 + extra_indent, &ls, true);
   }
 }
 
@@ -417,7 +416,7 @@
                         _recorded_total_free_cset_time_ms +
                         _cur_fast_reclaim_humongous_time_ms +
                         _cur_expand_heap_time_ms +
-                        _cur_string_dedup_fixup_time_ms;
+                        _cur_string_deduplication_time_ms;
 
   info_time("Post Evacuate Collection Set", sum_ms);
 
@@ -430,9 +429,9 @@
   _weak_phase_times.log_print(2);
 
   if (G1StringDedup::is_enabled()) {
-    debug_time("String Dedup Fixup", _cur_string_dedup_fixup_time_ms);
-    debug_phase(_gc_par_phases[StringDedupQueueFixup]);
-    debug_phase(_gc_par_phases[StringDedupTableFixup]);
+    debug_time("String Deduplication", _cur_string_deduplication_time_ms);
+    debug_phase(_gc_par_phases[StringDedupQueueFixup], 1);
+    debug_phase(_gc_par_phases[StringDedupTableFixup], 1);
   }
 
   if (G1CollectedHeap::heap()->evacuation_failed()) {
@@ -497,7 +496,6 @@
       "GCWorkerStart",
       "ExtRootScan",
       "ThreadRoots",
-      "StringTableRoots",
       "UniverseRoots",
       "JNIRoots",
       "ObjectSynchronizerRoots",
--- a/src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -48,7 +48,6 @@
     GCWorkerStart,
     ExtRootScan,
     ThreadRoots,
-    StringTableRoots,
     UniverseRoots,
     JNIRoots,
     ObjectSynchronizerRoots,
@@ -104,8 +103,6 @@
  private:
   // Markers for grouping the phases in the GCPhases enum above
   static const int GCMainParPhasesLast = GCWorkerEnd;
-  static const int StringDedupPhasesFirst = StringDedupQueueFixup;
-  static const int StringDedupPhasesLast = StringDedupTableFixup;
 
   WorkerDataArray<double>* _gc_par_phases[GCParPhasesSentinel];
 
@@ -134,7 +131,7 @@
   double _cur_evac_fail_recalc_used;
   double _cur_evac_fail_remove_self_forwards;
 
-  double _cur_string_dedup_fixup_time_ms;
+  double _cur_string_deduplication_time_ms;
 
   double _cur_prepare_tlab_time_ms;
   double _cur_resize_tlab_time_ms;
@@ -187,7 +184,7 @@
   void details(T* phase, const char* indent) const;
 
   void log_phase(WorkerDataArray<double>* phase, uint indent, outputStream* out, bool print_sum) const;
-  void debug_phase(WorkerDataArray<double>* phase) const;
+  void debug_phase(WorkerDataArray<double>* phase, uint extra_indent = 0) const;
   void trace_phase(WorkerDataArray<double>* phase, bool print_sum = true) const;
 
   void info_time(const char* name, double value) const;
@@ -272,8 +269,8 @@
     _cur_evac_fail_remove_self_forwards = ms;
   }
 
-  void record_string_dedup_fixup_time(double ms) {
-    _cur_string_dedup_fixup_time_ms = ms;
+  void record_string_deduplication_time(double ms) {
+    _cur_string_deduplication_time_ms = ms;
   }
 
   void record_ref_proc_time(double ms) {
--- a/src/hotspot/share/gc/g1/g1HeapVerifier.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1HeapVerifier.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -490,9 +490,7 @@
 
   {
     G1RootProcessor root_processor(_g1h, 1);
-    root_processor.process_all_roots(&rootsCl,
-                                     &cldCl,
-                                     &blobsCl);
+    root_processor.process_all_roots(&rootsCl, &cldCl, &blobsCl);
   }
 
   bool failures = rootsCl.failures() || codeRootsCl.failures();
--- a/src/hotspot/share/gc/g1/g1RootProcessor.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1RootProcessor.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -90,7 +90,6 @@
   }
 
   process_vm_roots(closures, phase_times, worker_i);
-  process_string_table_roots(closures, phase_times, worker_i);
 
   {
     // Now the CM ref_processor roots.
@@ -188,34 +187,17 @@
 
 void G1RootProcessor::process_all_roots(OopClosure* oops,
                                         CLDClosure* clds,
-                                        CodeBlobClosure* blobs,
-                                        bool process_string_table) {
+                                        CodeBlobClosure* blobs) {
   AllRootsClosures closures(oops, clds);
 
   process_java_roots(&closures, NULL, 0);
   process_vm_roots(&closures, NULL, 0);
 
-  if (process_string_table) {
-    process_string_table_roots(&closures, NULL, 0);
-  }
   process_code_cache_roots(blobs, NULL, 0);
 
   _process_strong_tasks.all_tasks_completed(n_workers());
 }
 
-void G1RootProcessor::process_all_roots(OopClosure* oops,
-                                        CLDClosure* clds,
-                                        CodeBlobClosure* blobs) {
-  process_all_roots(oops, clds, blobs, true);
-}
-
-void G1RootProcessor::process_all_roots_no_string_table(OopClosure* oops,
-                                                        CLDClosure* clds,
-                                                        CodeBlobClosure* blobs) {
-  assert(!ClassUnloading, "Should only be used when class unloading is disabled");
-  process_all_roots(oops, clds, blobs, false);
-}
-
 void G1RootProcessor::process_java_roots(G1RootClosures* closures,
                                          G1GCPhaseTimes* phase_times,
                                          uint worker_i) {
@@ -295,16 +277,6 @@
   }
 }
 
-void G1RootProcessor::process_string_table_roots(G1RootClosures* closures,
-                                                 G1GCPhaseTimes* phase_times,
-                                                 uint worker_i) {
-  assert(closures->weak_oops() != NULL, "Should only be called when all roots are processed");
-  G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::StringTableRoots, worker_i);
-  // All threads execute the following. A specific chunk of buckets
-  // from the StringTable are the individual tasks.
-  StringTable::possibly_parallel_oops_do(&_par_state_string, closures->weak_oops());
-}
-
 void G1RootProcessor::process_code_cache_roots(CodeBlobClosure* code_closure,
                                                G1GCPhaseTimes* phase_times,
                                                uint worker_i) {
--- a/src/hotspot/share/gc/g1/g1RootProcessor.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1RootProcessor.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -75,11 +75,6 @@
   void worker_has_discovered_all_strong_classes();
   void wait_until_all_strong_classes_discovered();
 
-  void process_all_roots(OopClosure* oops,
-                         CLDClosure* clds,
-                         CodeBlobClosure* blobs,
-                         bool process_string_table);
-
   void process_java_roots(G1RootClosures* closures,
                           G1GCPhaseTimes* phase_times,
                           uint worker_i);
@@ -88,10 +83,6 @@
                         G1GCPhaseTimes* phase_times,
                         uint worker_i);
 
-  void process_string_table_roots(G1RootClosures* closures,
-                                  G1GCPhaseTimes* phase_times,
-                                  uint worker_i);
-
   void process_code_cache_roots(CodeBlobClosure* code_closure,
                                 G1GCPhaseTimes* phase_times,
                                 uint worker_i);
@@ -101,7 +92,7 @@
 
   // Apply correct closures from pss to the strongly and weakly reachable roots in the system
   // in a single pass.
-  // Record and report timing measurements for sub phases using the worker_i
+  // Record and report timing measurements for sub phases using worker_id.
   void evacuate_roots(G1ParScanThreadState* pss, uint worker_id);
 
   // Apply oops, clds and blobs to all strongly reachable roots in the system
@@ -114,13 +105,6 @@
                          CLDClosure* clds,
                          CodeBlobClosure* blobs);
 
-  // Apply oops, clds and blobs to strongly and weakly reachable roots in the system,
-  // the only thing different from process_all_roots is that we skip the string table
-  // to avoid keeping every string live when doing class unloading.
-  void process_all_roots_no_string_table(OopClosure* oops,
-                                         CLDClosure* clds,
-                                         CodeBlobClosure* blobs);
-
   // Number of worker threads used by the root processor.
   uint n_workers() const;
 };
--- a/src/hotspot/share/gc/g1/g1StringDedup.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1StringDedup.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -89,53 +89,3 @@
   }
 }
 
-void G1StringDedup::oops_do(OopClosure* keep_alive) {
-  assert(is_enabled(), "String deduplication not enabled");
-  unlink_or_oops_do(NULL, keep_alive, true /* allow_resize_and_rehash */);
-}
-
-void G1StringDedup::parallel_unlink(G1StringDedupUnlinkOrOopsDoClosure* unlink, uint worker_id) {
-  assert(is_enabled(), "String deduplication not enabled");
-  StringDedupQueue::unlink_or_oops_do(unlink);
-  StringDedupTable::unlink_or_oops_do(unlink, worker_id);
-}
-
-//
-// Task for parallel unlink_or_oops_do() operation on the deduplication queue
-// and table.
-//
-class G1StringDedupUnlinkOrOopsDoTask : public AbstractGangTask {
-private:
-  G1StringDedupUnlinkOrOopsDoClosure _cl;
-  G1GCPhaseTimes* _phase_times;
-
-public:
-  G1StringDedupUnlinkOrOopsDoTask(BoolObjectClosure* is_alive,
-                                  OopClosure* keep_alive,
-                                  bool allow_resize_and_rehash,
-                                  G1GCPhaseTimes* phase_times) :
-    AbstractGangTask("G1StringDedupUnlinkOrOopsDoTask"),
-    _cl(is_alive, keep_alive, allow_resize_and_rehash), _phase_times(phase_times) { }
-
-  virtual void work(uint worker_id) {
-    {
-      G1GCParPhaseTimesTracker x(_phase_times, G1GCPhaseTimes::StringDedupQueueFixup, worker_id);
-      StringDedupQueue::unlink_or_oops_do(&_cl);
-    }
-    {
-      G1GCParPhaseTimesTracker x(_phase_times, G1GCPhaseTimes::StringDedupTableFixup, worker_id);
-      StringDedupTable::unlink_or_oops_do(&_cl, worker_id);
-    }
-  }
-};
-
-void G1StringDedup::unlink_or_oops_do(BoolObjectClosure* is_alive,
-                                      OopClosure* keep_alive,
-                                      bool allow_resize_and_rehash,
-                                      G1GCPhaseTimes* phase_times) {
-  assert(is_enabled(), "String deduplication not enabled");
-
-  G1StringDedupUnlinkOrOopsDoTask task(is_alive, keep_alive, allow_resize_and_rehash, phase_times);
-  G1CollectedHeap* g1h = G1CollectedHeap::heap();
-  g1h->workers()->run_task(&task);
-}
--- a/src/hotspot/share/gc/g1/g1StringDedup.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/g1/g1StringDedup.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -78,35 +78,6 @@
   static void enqueue_from_mark(oop java_string, uint worker_id);
   static void enqueue_from_evacuation(bool from_young, bool to_young,
                                       unsigned int queue, oop java_string);
-
-  static void oops_do(OopClosure* keep_alive);
-  static void parallel_unlink(G1StringDedupUnlinkOrOopsDoClosure* unlink, uint worker_id);
-  static void unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* keep_alive,
-                                bool allow_resize_and_rehash, G1GCPhaseTimes* phase_times = NULL);
-};
-
-//
-// This closure encapsulates the state and the closures needed when scanning
-// the deduplication queue and table during the unlink_or_oops_do() operation.
-// A single instance of this closure is created and then shared by all worker
-// threads participating in the scan.
-//
-class G1StringDedupUnlinkOrOopsDoClosure : public StringDedupUnlinkOrOopsDoClosure {
-public:
-  G1StringDedupUnlinkOrOopsDoClosure(BoolObjectClosure* is_alive,
-                                     OopClosure* keep_alive,
-                                     bool allow_resize_and_rehash) :
-    StringDedupUnlinkOrOopsDoClosure(is_alive, keep_alive) {
-      if (G1StringDedup::is_enabled()) {
-        G1StringDedup::gc_prologue(allow_resize_and_rehash);
-      }
-    }
-
-  ~G1StringDedupUnlinkOrOopsDoClosure() {
-    if (G1StringDedup::is_enabled()) {
-      G1StringDedup::gc_epilogue();
-    }
-  }
 };
 
 #endif // SHARE_GC_G1_G1STRINGDEDUP_HPP
--- a/src/hotspot/share/gc/parallel/psMarkSweep.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/parallel/psMarkSweep.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -567,12 +567,6 @@
   }
 
   {
-    GCTraceTime(Debug, gc, phases) t("Scrub String Table", _gc_timer);
-    // Delete entries for dead interned strings.
-    StringTable::unlink(is_alive_closure());
-  }
-
-  {
     GCTraceTime(Debug, gc, phases) t("Scrub Symbol Table", _gc_timer);
     // Clean up unreferenced symbols in symbol table.
     SymbolTable::unlink();
@@ -630,7 +624,6 @@
   CodeBlobToOopClosure adjust_from_blobs(adjust_pointer_closure(), CodeBlobToOopClosure::FixRelocations);
   CodeCache::blobs_do(&adjust_from_blobs);
   AOTLoader::oops_do(adjust_pointer_closure());
-  StringTable::oops_do(adjust_pointer_closure());
   ref_processor()->weak_oops_do(adjust_pointer_closure());
   PSScavenge::reference_processor()->weak_oops_do(adjust_pointer_closure());
 
--- a/src/hotspot/share/gc/parallel/psParallelCompact.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/parallel/psParallelCompact.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -2185,12 +2185,6 @@
   }
 
   {
-    GCTraceTime(Debug, gc, phases) t("Scrub String Table", &_gc_timer);
-    // Delete entries for dead interned strings.
-    StringTable::unlink(is_alive_closure());
-  }
-
-  {
     GCTraceTime(Debug, gc, phases) t("Scrub Symbol Table", &_gc_timer);
     // Clean up unreferenced symbols in symbol table.
     SymbolTable::unlink();
@@ -2226,7 +2220,6 @@
   CodeBlobToOopClosure adjust_from_blobs(&oop_closure, CodeBlobToOopClosure::FixRelocations);
   CodeCache::blobs_do(&adjust_from_blobs);
   AOTLoader::oops_do(&oop_closure);
-  StringTable::oops_do(&oop_closure);
   ref_processor()->weak_oops_do(&oop_closure);
   // Roots were visited so references into the young gen in roots
   // may have been scanned.  Process them also.
--- a/src/hotspot/share/gc/parallel/psScavenge.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/parallel/psScavenge.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -430,12 +430,6 @@
       WeakProcessor::weak_oops_do(&_is_alive_closure, &root_closure);
     }
 
-    {
-      GCTraceTime(Debug, gc, phases) tm("Scrub String Table", &_gc_timer);
-      // Unlink any dead interned Strings and process the remaining live ones.
-      StringTable::unlink_or_oops_do(&_is_alive_closure, &root_closure);
-    }
-
     // Verify that usage of root_closure didn't copy any objects.
     assert(promotion_manager->stacks_empty(),"stacks should be empty at this point");
 
--- a/src/hotspot/share/gc/serial/genMarkSweep.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/serial/genMarkSweep.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -240,12 +240,6 @@
   }
 
   {
-    GCTraceTime(Debug, gc, phases) t("Scrub String Table", gc_timer());
-    // Delete entries for dead interned strings.
-    StringTable::unlink(&is_alive);
-  }
-
-  {
     GCTraceTime(Debug, gc, phases) t("Scrub Symbol Table", gc_timer());
     // Clean up unreferenced symbols in symbol table.
     SymbolTable::unlink();
--- a/src/hotspot/share/gc/shared/c1/barrierSetC1.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/c1/barrierSetC1.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -62,9 +62,13 @@
 
   if (resolve_in_register) {
     LIR_Opr resolved_addr = gen->new_pointer_register();
-    __ leal(addr_opr, resolved_addr);
-    resolved_addr = LIR_OprFact::address(new LIR_Address(resolved_addr, access.type()));
-    return resolved_addr;
+    if (needs_patching) {
+      __ leal(addr_opr, resolved_addr, lir_patch_normal, access.patch_emit_info());
+      access.clear_decorators(C1_NEEDS_PATCHING);
+    } else {
+      __ leal(addr_opr, resolved_addr);
+    }
+    return LIR_OprFact::address(new LIR_Address(resolved_addr, access.type()));
   } else {
     return addr_opr;
   }
--- a/src/hotspot/share/gc/shared/c1/barrierSetC1.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/c1/barrierSetC1.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -92,17 +92,18 @@
     load_offset();
   }
 
-  LIRGenerator* gen() const            { return _gen; }
-  CodeEmitInfo*& patch_emit_info()     { return _patch_emit_info; }
-  CodeEmitInfo*& access_emit_info()    { return _access_emit_info; }
-  LIRAddressOpr& base()                { return _base; }
-  LIRAddressOpr& offset()              { return _offset; }
-  BasicType type() const               { return _type; }
-  LIR_Opr resolved_addr() const        { return _resolved_addr; }
-  void set_resolved_addr(LIR_Opr addr) { _resolved_addr = addr; }
-  bool is_oop() const                  { return _type == T_ARRAY || _type == T_OBJECT; }
-  DecoratorSet decorators() const      { return _decorators; }
-  bool is_raw() const                  { return (_decorators & AS_RAW) != 0; }
+  LIRGenerator* gen() const              { return _gen; }
+  CodeEmitInfo*& patch_emit_info()       { return _patch_emit_info; }
+  CodeEmitInfo*& access_emit_info()      { return _access_emit_info; }
+  LIRAddressOpr& base()                  { return _base; }
+  LIRAddressOpr& offset()                { return _offset; }
+  BasicType type() const                 { return _type; }
+  LIR_Opr resolved_addr() const          { return _resolved_addr; }
+  void set_resolved_addr(LIR_Opr addr)   { _resolved_addr = addr; }
+  bool is_oop() const                    { return _type == T_ARRAY || _type == T_OBJECT; }
+  DecoratorSet decorators() const        { return _decorators; }
+  void clear_decorators(DecoratorSet ds) { _decorators &= ~ds; }
+  bool is_raw() const                    { return (_decorators & AS_RAW) != 0; }
 };
 
 // The BarrierSetC1 class is the main entry point for the GC backend of the Access API in C1.
--- a/src/hotspot/share/gc/shared/genCollectedHeap.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/genCollectedHeap.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -849,33 +849,14 @@
   }
 }
 
-void GenCollectedHeap::process_string_table_roots(StrongRootsScope* scope,
-                                                  OopClosure* root_closure,
-                                                  OopStorage::ParState<false, false>* par_state_string) {
-  assert(root_closure != NULL, "Must be set");
-  // All threads execute the following. A specific chunk of buckets
-  // from the StringTable are the individual tasks.
-
-  // Either we should be single threaded or have a ParState
-  assert((scope->n_threads() <= 1) || par_state_string != NULL, "Parallel but no ParState");
-
-  if (scope->n_threads() > 1) {
-    StringTable::possibly_parallel_oops_do(par_state_string, root_closure);
-  } else {
-    StringTable::oops_do(root_closure);
-  }
-}
-
 void GenCollectedHeap::young_process_roots(StrongRootsScope* scope,
                                            OopsInGenClosure* root_closure,
                                            OopsInGenClosure* old_gen_closure,
-                                           CLDClosure* cld_closure,
-                                           OopStorage::ParState<false, false>* par_state_string) {
+                                           CLDClosure* cld_closure) {
   MarkingCodeBlobClosure mark_code_closure(root_closure, CodeBlobToOopClosure::FixRelocations);
 
   process_roots(scope, SO_ScavengeCodeCache, root_closure,
                 cld_closure, cld_closure, &mark_code_closure);
-  process_string_table_roots(scope, root_closure, par_state_string);
 
   if (_process_strong_tasks->try_claim_task(GCH_PS_younger_gens)) {
     root_closure->reset_generation();
@@ -895,19 +876,11 @@
                                           ScanningOption so,
                                           bool only_strong_roots,
                                           OopsInGenClosure* root_closure,
-                                          CLDClosure* cld_closure,
-                                          OopStorage::ParState<false, false>* par_state_string) {
+                                          CLDClosure* cld_closure) {
   MarkingCodeBlobClosure mark_code_closure(root_closure, is_adjust_phase);
   CLDClosure* weak_cld_closure = only_strong_roots ? NULL : cld_closure;
 
   process_roots(scope, so, root_closure, cld_closure, weak_cld_closure, &mark_code_closure);
-  if (is_adjust_phase) {
-    // We never treat the string table as roots during marking
-    // for the full gc, so we only need to process it during
-    // the adjust phase.
-    process_string_table_roots(scope, root_closure, par_state_string);
-  }
-
   _process_strong_tasks->all_tasks_completed(scope->n_threads());
 }
 
--- a/src/hotspot/share/gc/shared/genCollectedHeap.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/genCollectedHeap.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -400,10 +400,6 @@
                      CLDClosure* weak_cld_closure,
                      CodeBlobToOopClosure* code_roots);
 
-  void process_string_table_roots(StrongRootsScope* scope,
-                                  OopClosure* root_closure,
-                                  OopStorage::ParState<false, false>* par_state_string);
-
   // Accessor for memory state verification support
   NOT_PRODUCT(
     virtual size_t skip_header_HeapWords() { return 0; }
@@ -416,16 +412,14 @@
   void young_process_roots(StrongRootsScope* scope,
                            OopsInGenClosure* root_closure,
                            OopsInGenClosure* old_gen_closure,
-                           CLDClosure* cld_closure,
-                           OopStorage::ParState<false, false>* par_state_string = NULL);
+                           CLDClosure* cld_closure);
 
   void full_process_roots(StrongRootsScope* scope,
                           bool is_adjust_phase,
                           ScanningOption so,
                           bool only_strong_roots,
                           OopsInGenClosure* root_closure,
-                          CLDClosure* cld_closure,
-                          OopStorage::ParState<false, false>* par_state_string = NULL);
+                          CLDClosure* cld_closure);
 
   // Apply "root_closure" to all the weak roots of the system.
   // These include JNI weak roots, string table,
--- a/src/hotspot/share/gc/shared/owstTaskTerminator.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/owstTaskTerminator.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Red Hat, Inc. All rights reserved.
+ * Copyright (c) 2018, 2019, Red Hat, Inc. All rights reserved.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
@@ -38,15 +38,17 @@
   // Single worker, done
   if (_n_threads == 1) {
     _offered_termination = 1;
+    assert(!peek_in_queue_set(), "Precondition");
     return true;
   }
 
   _blocker->lock_without_safepoint_check();
+  _offered_termination++;
   // All arrived, done
-  _offered_termination++;
   if (_offered_termination == _n_threads) {
     _blocker->notify_all();
     _blocker->unlock();
+    assert(!peek_in_queue_set(), "Precondition");
     return true;
   }
 
@@ -59,6 +61,7 @@
 
       if (do_spin_master_work(terminator)) {
         assert(_offered_termination == _n_threads, "termination condition");
+        assert(!peek_in_queue_set(), "Precondition");
         return true;
       } else {
         _blocker->lock_without_safepoint_check();
@@ -68,12 +71,14 @@
 
       if (_offered_termination == _n_threads) {
         _blocker->unlock();
+        assert(!peek_in_queue_set(), "Precondition");
         return true;
       }
     }
 
     size_t tasks = tasks_in_queue_set();
     if (exit_termination(tasks, terminator)) {
+      assert_lock_strong(_blocker);
       _offered_termination--;
       _blocker->unlock();
       return false;
@@ -153,19 +158,24 @@
       _total_peeks++;
 #endif
     size_t tasks = tasks_in_queue_set();
-    if (exit_termination(tasks, terminator)) {
+    bool exit = exit_termination(tasks, terminator);
+    {
       MonitorLockerEx locker(_blocker, Mutex::_no_safepoint_check_flag);
-      if (tasks >= _offered_termination - 1) {
-        locker.notify_all();
-      } else {
-        for (; tasks > 1; tasks--) {
-          locker.notify();
+      // Termination condition reached
+      if (_offered_termination == _n_threads) {
+        _spin_master = NULL;
+        return true;
+      } else if (exit) {
+        if (tasks >= _offered_termination - 1) {
+          locker.notify_all();
+        } else {
+          for (; tasks > 1; tasks--) {
+            locker.notify();
+          }
         }
+        _spin_master = NULL;
+        return false;
       }
-      _spin_master = NULL;
-      return false;
-    } else if (_offered_termination == _n_threads) {
-      return true;
     }
   }
 }
--- a/src/hotspot/share/gc/shared/owstTaskTerminator.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/owstTaskTerminator.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Red Hat, Inc. All rights reserved.
+ * Copyright (c) 2018, 2019, Red Hat, Inc. All rights reserved.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
@@ -55,6 +55,7 @@
   }
 
   virtual ~OWSTTaskTerminator() {
+    assert(_spin_master == NULL, "Should have been reset");
     assert(_blocker != NULL, "Can not be NULL");
     delete _blocker;
   }
--- a/src/hotspot/share/gc/shared/parallelCleaning.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/parallelCleaning.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -31,48 +31,35 @@
 #include "memory/resourceArea.hpp"
 #include "logging/log.hpp"
 
-StringCleaningTask::StringCleaningTask(BoolObjectClosure* is_alive, StringDedupUnlinkOrOopsDoClosure* dedup_closure, bool process_strings) :
-  AbstractGangTask("String Unlinking"),
-  _is_alive(is_alive),
-  _dedup_closure(dedup_closure),
-  _par_state_string(StringTable::weak_storage()),
-  _initial_string_table_size((int) StringTable::the_table()->table_size()),
-  _process_strings(process_strings), _strings_processed(0), _strings_removed(0) {
+StringDedupCleaningTask::StringDedupCleaningTask(BoolObjectClosure* is_alive,
+                                                 OopClosure* keep_alive,
+                                                 bool resize_table) :
+  AbstractGangTask("String Dedup Cleaning"),
+  _dedup_closure(is_alive, keep_alive) {
 
-  if (process_strings) {
-    StringTable::reset_dead_counter();
+  if (StringDedup::is_enabled()) {
+    StringDedup::gc_prologue(resize_table);
   }
 }
 
-StringCleaningTask::~StringCleaningTask() {
-  log_info(gc, stringtable)(
-      "Cleaned string table, "
-      "strings: " SIZE_FORMAT " processed, " SIZE_FORMAT " removed",
-      strings_processed(), strings_removed());
-  if (_process_strings) {
-    StringTable::finish_dead_counter();
+StringDedupCleaningTask::~StringDedupCleaningTask() {
+  if (StringDedup::is_enabled()) {
+    StringDedup::gc_epilogue();
   }
 }
 
-void StringCleaningTask::work(uint worker_id) {
-  size_t strings_processed = 0;
-  size_t strings_removed = 0;
-  if (_process_strings) {
-    StringTable::possibly_parallel_unlink(&_par_state_string, _is_alive, &strings_processed, &strings_removed);
-    Atomic::add(strings_processed, &_strings_processed);
-    Atomic::add(strings_removed, &_strings_removed);
-  }
-  if (_dedup_closure != NULL) {
-    StringDedup::parallel_unlink(_dedup_closure, worker_id);
+void StringDedupCleaningTask::work(uint worker_id) {
+  if (StringDedup::is_enabled()) {
+    StringDedup::parallel_unlink(&_dedup_closure, worker_id);
   }
 }
 
 CodeCacheUnloadingTask::CodeCacheUnloadingTask(uint num_workers, BoolObjectClosure* is_alive, bool unloading_occurred) :
-      _unloading_scope(is_alive),
-      _unloading_occurred(unloading_occurred),
-      _num_workers(num_workers),
-      _first_nmethod(NULL),
-      _claimed_nmethod(NULL) {
+  _unloading_scope(is_alive),
+  _unloading_occurred(unloading_occurred),
+  _num_workers(num_workers),
+  _first_nmethod(NULL),
+  _claimed_nmethod(NULL) {
   // Get first alive nmethod
   CompiledMethodIterator iter(CompiledMethodIterator::only_alive);
   if(iter.next()) {
@@ -175,10 +162,12 @@
 }
 
 ParallelCleaningTask::ParallelCleaningTask(BoolObjectClosure* is_alive,
-  StringDedupUnlinkOrOopsDoClosure* dedup_closure, uint num_workers, bool unloading_occurred) :
+                                           uint num_workers,
+                                           bool unloading_occurred,
+                                           bool resize_dedup_table) :
   AbstractGangTask("Parallel Cleaning"),
   _unloading_occurred(unloading_occurred),
-  _string_task(is_alive, StringDedup::is_enabled() ? dedup_closure : NULL, true),
+  _string_dedup_task(is_alive, NULL, resize_dedup_table),
   _code_cache_task(num_workers, is_alive, unloading_occurred),
   _klass_cleaning_task() {
 }
@@ -188,8 +177,8 @@
   // Do first pass of code cache cleaning.
   _code_cache_task.work(worker_id);
 
-  // Clean the Strings and Symbols.
-  _string_task.work(worker_id);
+  // Clean the string dedup data structures.
+  _string_dedup_task.work(worker_id);
 
   // Clean all klasses that were not unloaded.
   // The weak metadata in klass doesn't need to be
--- a/src/hotspot/share/gc/shared/parallelCleaning.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/parallelCleaning.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -33,27 +33,14 @@
 
 class ParallelCleaningTask;
 
-class StringCleaningTask : public AbstractGangTask {
-private:
-  BoolObjectClosure* _is_alive;
-  StringDedupUnlinkOrOopsDoClosure * const _dedup_closure;
-
-  OopStorage::ParState<false /* concurrent */, false /* const */> _par_state_string;
-
-  int _initial_string_table_size;
-
-  bool            _process_strings;
-  volatile size_t _strings_processed;
-  volatile size_t _strings_removed;
+class StringDedupCleaningTask : public AbstractGangTask {
+  StringDedupUnlinkOrOopsDoClosure _dedup_closure;
 
 public:
-  StringCleaningTask(BoolObjectClosure* is_alive, StringDedupUnlinkOrOopsDoClosure* dedup_closure, bool process_strings);
-  ~StringCleaningTask();
+  StringDedupCleaningTask(BoolObjectClosure* is_alive, OopClosure* keep_alive, bool resize_table);
+  ~StringDedupCleaningTask();
 
   void work(uint worker_id);
-
-  size_t strings_processed() const { return _strings_processed; }
-  size_t strings_removed()   const { return _strings_removed; }
 };
 
 class CodeCacheUnloadingTask {
@@ -100,18 +87,21 @@
   void work();
 };
 
-// To minimize the remark pause times, the tasks below are done in parallel.
+// Do cleanup of some weakly held data in the same parallel task.
+// Assumes a non-moving context.
 class ParallelCleaningTask : public AbstractGangTask {
 private:
-  bool                        _unloading_occurred;
-  StringCleaningTask          _string_task;
-  CodeCacheUnloadingTask      _code_cache_task;
-  KlassCleaningTask           _klass_cleaning_task;
+  bool                    _unloading_occurred;
+  StringDedupCleaningTask _string_dedup_task;
+  CodeCacheUnloadingTask  _code_cache_task;
+  KlassCleaningTask       _klass_cleaning_task;
 
 public:
   // The constructor is run in the VMThread.
-  ParallelCleaningTask(BoolObjectClosure* is_alive, StringDedupUnlinkOrOopsDoClosure* dedup_closure,
-    uint num_workers, bool unloading_occurred);
+  ParallelCleaningTask(BoolObjectClosure* is_alive,
+                       uint num_workers,
+                       bool unloading_occurred,
+                       bool resize_dedup_table);
 
   void work(uint worker_id);
 };
--- a/src/hotspot/share/gc/shared/stringdedup/stringDedup.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/stringdedup/stringDedup.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -53,7 +53,6 @@
   StringDedupTable::deduplicate(java_string, &dummy);
 }
 
-
 void StringDedup::parallel_unlink(StringDedupUnlinkOrOopsDoClosure* unlink, uint worker_id) {
   assert(is_enabled(), "String deduplication not enabled");
   StringDedupQueue::unlink_or_oops_do(unlink);
@@ -80,5 +79,8 @@
 
 StringDedupUnlinkOrOopsDoClosure::StringDedupUnlinkOrOopsDoClosure(BoolObjectClosure* is_alive,
                                                                    OopClosure* keep_alive) :
-  _is_alive(is_alive), _keep_alive(keep_alive) {
+  _always_true(),
+  _do_nothing(),
+  _is_alive(is_alive != NULL ? is_alive : &_always_true),
+  _keep_alive(keep_alive != NULL ? keep_alive : &_do_nothing) {
 }
--- a/src/hotspot/share/gc/shared/stringdedup/stringDedup.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/stringdedup/stringDedup.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -113,30 +113,18 @@
 // the deduplication queue and table during the unlink_or_oops_do() operation.
 //
 class StringDedupUnlinkOrOopsDoClosure : public StackObj {
-private:
+  AlwaysTrueClosure   _always_true;
+  DoNothingClosure    _do_nothing;
   BoolObjectClosure*  _is_alive;
   OopClosure*         _keep_alive;
 
 public:
   StringDedupUnlinkOrOopsDoClosure(BoolObjectClosure* is_alive,
-                                     OopClosure* keep_alive);
+                                   OopClosure* keep_alive);
 
-  // Applies and returns the result from the is_alive closure, or
-  // returns true if no such closure was provided.
-  bool is_alive(oop o) {
-    if (_is_alive != NULL) {
-      return _is_alive->do_object_b(o);
-    }
-    return true;
-  }
+  bool is_alive(oop o) { return _is_alive->do_object_b(o); }
 
-  // Applies the keep_alive closure, or does nothing if no such
-  // closure was provided.
-  void keep_alive(oop* p) {
-    if (_keep_alive != NULL) {
-      _keep_alive->do_oop(p);
-    }
-  }
+  void keep_alive(oop* p) { _keep_alive->do_oop(p); }
 };
 
 #endif // SHARE_GC_SHARED_STRINGDEDUP_STRINGDEDUP_HPP
--- a/src/hotspot/share/gc/shared/taskqueue.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/taskqueue.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -118,6 +118,11 @@
   _queue_set(queue_set),
   _offered_termination(0) {}
 
+ParallelTaskTerminator::~ParallelTaskTerminator() {
+  assert(_offered_termination == 0 || !peek_in_queue_set(), "Precondition");
+  assert(_offered_termination == 0 || _offered_termination == _n_threads, "Terminated or aborted" );
+}
+
 bool ParallelTaskTerminator::peek_in_queue_set() {
   return _queue_set->peek();
 }
@@ -162,6 +167,7 @@
     assert(_offered_termination <= _n_threads, "Invariant");
     // Are all threads offering termination?
     if (_offered_termination == _n_threads) {
+      assert(!peek_in_queue_set(), "Precondition");
       return true;
     } else {
       // Look for more work.
@@ -211,9 +217,7 @@
 #endif
       if (peek_in_queue_set() ||
           (terminator != NULL && terminator->should_exit_termination())) {
-        Atomic::dec(&_offered_termination);
-        assert(_offered_termination < _n_threads, "Invariant");
-        return false;
+        return complete_or_exit_termination();
       }
     }
   }
@@ -229,6 +233,23 @@
 }
 #endif
 
+bool ParallelTaskTerminator::complete_or_exit_termination() {
+  // If termination is ever reached, terminator should stay in such state,
+  // so that all threads see the same state
+  uint current_offered = _offered_termination;
+  uint expected_value;
+  do {
+    if (current_offered == _n_threads) {
+      assert(!peek_in_queue_set(), "Precondition");
+      return true;
+    }
+    expected_value = current_offered;
+  } while ((current_offered = Atomic::cmpxchg(current_offered - 1, &_offered_termination, current_offered)) != expected_value);
+
+  assert(_offered_termination < _n_threads, "Invariant");
+  return false;
+}
+
 void ParallelTaskTerminator::reset_for_reuse() {
   if (_offered_termination != 0) {
     assert(_offered_termination == _n_threads,
--- a/src/hotspot/share/gc/shared/taskqueue.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/taskqueue.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -451,7 +451,10 @@
 protected:
   uint _n_threads;
   TaskQueueSetSuper* _queue_set;
+
+  DEFINE_PAD_MINUS_SIZE(0, DEFAULT_CACHE_LINE_SIZE, 0);
   volatile uint _offered_termination;
+  DEFINE_PAD_MINUS_SIZE(1, DEFAULT_CACHE_LINE_SIZE, sizeof(volatile uint));
 
 #ifdef TRACESPINNING
   static uint _total_yields;
@@ -464,11 +467,18 @@
   virtual void yield();
   void sleep(uint millis);
 
+  // Called when exiting termination is requested.
+  // When the request is made, terminator may have already terminated
+  // (e.g. all threads are arrived and offered termination). In this case,
+  // it should ignore the request and complete the termination.
+  // Return true if termination is completed. Otherwise, return false.
+  bool complete_or_exit_termination();
 public:
 
   // "n_threads" is the number of threads to be terminated.  "queue_set" is a
   // queue sets of work queues of other threads.
   ParallelTaskTerminator(uint n_threads, TaskQueueSetSuper* queue_set);
+  virtual ~ParallelTaskTerminator();
 
   // The current thread has no work, and is ready to terminate if everyone
   // else is.  If returns "true", all threads are terminated.  If returns
--- a/src/hotspot/share/gc/shared/weakProcessor.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/weakProcessor.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,9 +23,9 @@
  */
 
 #include "precompiled.hpp"
+#include "classfile/stringTable.hpp"
 #include "gc/shared/oopStorage.inline.hpp"
 #include "gc/shared/oopStorageParState.inline.hpp"
-#include "gc/shared/weakProcessor.hpp"
 #include "gc/shared/weakProcessor.inline.hpp"
 #include "gc/shared/weakProcessorPhases.hpp"
 #include "gc/shared/weakProcessorPhaseTimes.hpp"
@@ -35,13 +35,19 @@
 #include "utilities/macros.hpp"
 
 void WeakProcessor::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* keep_alive) {
+  StringTable::reset_dead_counter();
+  CountingIsAliveClosure<BoolObjectClosure> cl(is_alive);
   FOR_EACH_WEAK_PROCESSOR_PHASE(phase) {
     if (WeakProcessorPhases::is_serial(phase)) {
-      WeakProcessorPhases::processor(phase)(is_alive, keep_alive);
+      WeakProcessorPhases::processor(phase)(&cl, keep_alive);
     } else {
-      WeakProcessorPhases::oop_storage(phase)->weak_oops_do(is_alive, keep_alive);
+      WeakProcessorPhases::oop_storage(phase)->weak_oops_do(&cl, keep_alive);
+    }
+    if (WeakProcessorPhases::is_stringtable(phase)) {
+      StringTable::inc_dead_counter(cl.num_dead());
     }
   }
+  StringTable::finish_dead_counter();
 }
 
 void WeakProcessor::oops_do(OopClosure* closure) {
@@ -93,6 +99,7 @@
     OopStorage* storage = WeakProcessorPhases::oop_storage(phase);
     new (states++) StorageState(storage, _nworkers);
   }
+  StringTable::reset_dead_counter();
 }
 
 WeakProcessor::Task::Task(uint nworkers) :
@@ -122,6 +129,7 @@
     }
     FREE_C_HEAP_ARRAY(StorageState, _storage_states);
   }
+  StringTable::finish_dead_counter();
 }
 
 void WeakProcessor::GangTask::work(uint worker_id) {
--- a/src/hotspot/share/gc/shared/weakProcessor.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/weakProcessor.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -25,6 +25,7 @@
 #ifndef SHARE_GC_SHARED_WEAKPROCESSOR_INLINE_HPP
 #define SHARE_GC_SHARED_WEAKPROCESSOR_INLINE_HPP
 
+#include "classfile/stringTable.hpp"
 #include "gc/shared/oopStorage.inline.hpp"
 #include "gc/shared/oopStorageParState.inline.hpp"
 #include "gc/shared/weakProcessor.hpp"
@@ -36,6 +37,27 @@
 class BoolObjectClosure;
 class OopClosure;
 
+template<typename T>
+class CountingIsAliveClosure : public BoolObjectClosure {
+  T* _inner;
+
+  size_t _num_dead;
+  size_t _num_total;
+
+public:
+  CountingIsAliveClosure(T* cl) : _inner(cl), _num_dead(0), _num_total(0) { }
+
+  virtual bool do_object_b(oop obj) {
+    bool result = _inner->do_object_b(obj);
+    _num_dead += !result;
+    _num_total++;
+    return result;
+  }
+
+  size_t num_dead() const { return _num_dead; }
+  size_t num_total() const { return _num_total; }
+};
+
 template<typename IsAlive, typename KeepAlive>
 void WeakProcessor::Task::work(uint worker_id,
                                IsAlive* is_alive,
@@ -45,16 +67,26 @@
          worker_id, _nworkers);
 
   FOR_EACH_WEAK_PROCESSOR_PHASE(phase) {
+    CountingIsAliveClosure<IsAlive> cl(is_alive);
     if (WeakProcessorPhases::is_serial(phase)) {
       uint serial_index = WeakProcessorPhases::serial_index(phase);
       if (_serial_phases_done.try_claim_task(serial_index)) {
         WeakProcessorPhaseTimeTracker pt(_phase_times, phase);
-        WeakProcessorPhases::processor(phase)(is_alive, keep_alive);
+        WeakProcessorPhases::processor(phase)(&cl, keep_alive);
+        if (_phase_times != NULL) {
+          _phase_times->record_phase_items(phase, cl.num_dead(), cl.num_total());
+        }
       }
     } else {
       WeakProcessorPhaseTimeTracker pt(_phase_times, phase, worker_id);
       uint storage_index = WeakProcessorPhases::oop_storage_index(phase);
-      _storage_states[storage_index].weak_oops_do(is_alive, keep_alive);
+      _storage_states[storage_index].weak_oops_do(&cl, keep_alive);
+      if (_phase_times != NULL) {
+        _phase_times->record_worker_items(worker_id, phase, cl.num_dead(), cl.num_total());
+      }
+    }
+    if (WeakProcessorPhases::is_stringtable(phase)) {
+      StringTable::inc_dead_counter(cl.num_dead());
     }
   }
 
--- a/src/hotspot/share/gc/shared/weakProcessorPhaseTimes.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/weakProcessorPhaseTimes.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -49,6 +49,7 @@
 
 #ifdef ASSERT
 static bool is_initialized_time(double t) { return t >= 0.0; }
+static bool is_initialized_items(size_t i) { return i != 0; }
 #endif // ASSERT
 
 static void reset_times(double* times, size_t ntimes) {
@@ -57,28 +58,43 @@
   }
 }
 
+static void reset_items(size_t* items, size_t nitems) {
+  for (size_t i = 0; i < nitems; ++i) {
+    items[i] = 0;
+  }
+}
+
 WeakProcessorPhaseTimes::WeakProcessorPhaseTimes(uint max_threads) :
   _max_threads(max_threads),
   _active_workers(0),
   _total_time_sec(uninitialized_time),
-  _worker_phase_times_sec()
+  _worker_data(),
+  _worker_dead_items(),
+  _worker_total_items()
 {
   assert(_max_threads > 0, "max_threads must not be zero");
 
   reset_times(_phase_times_sec, ARRAY_SIZE(_phase_times_sec));
+  reset_items(_phase_dead_items, ARRAY_SIZE(_phase_dead_items));
+  reset_items(_phase_total_items, ARRAY_SIZE(_phase_total_items));
 
   if (_max_threads > 1) {
-    WorkerDataArray<double>** wpt = _worker_phase_times_sec;
+    WorkerDataArray<double>** wpt = _worker_data;
     FOR_EACH_WEAK_PROCESSOR_OOP_STORAGE_PHASE(phase) {
       const char* description = WeakProcessorPhases::description(phase);
-      *wpt++ = new WorkerDataArray<double>(_max_threads, description);
+      *wpt = new WorkerDataArray<double>(_max_threads, description);
+      (*wpt)->link_thread_work_items(new WorkerDataArray<size_t>(_max_threads, "Dead"), DeadItems);
+      (*wpt)->link_thread_work_items(new WorkerDataArray<size_t>(_max_threads, "Total"), TotalItems);
+      wpt++;
     }
   }
 }
 
 WeakProcessorPhaseTimes::~WeakProcessorPhaseTimes() {
-  for (size_t i = 0; i < ARRAY_SIZE(_worker_phase_times_sec); ++i) {
-    delete _worker_phase_times_sec[i];
+  for (size_t i = 0; i < ARRAY_SIZE(_worker_data); ++i) {
+    delete _worker_data[i];
+    delete _worker_dead_items[i];
+    delete _worker_total_items[i];
   }
 }
 
@@ -100,9 +116,11 @@
   _active_workers = 0;
   _total_time_sec = uninitialized_time;
   reset_times(_phase_times_sec, ARRAY_SIZE(_phase_times_sec));
+  reset_items(_phase_dead_items, ARRAY_SIZE(_phase_dead_items));
+  reset_items(_phase_total_items, ARRAY_SIZE(_phase_total_items));
   if (_max_threads > 1) {
-    for (size_t i = 0; i < ARRAY_SIZE(_worker_phase_times_sec); ++i) {
-      _worker_phase_times_sec[i]->reset();
+    for (size_t i = 0; i < ARRAY_SIZE(_worker_data); ++i) {
+      _worker_data[i]->reset();
     }
   }
 }
@@ -129,10 +147,20 @@
   _phase_times_sec[phase_index(phase)] = time_sec;
 }
 
+void WeakProcessorPhaseTimes::record_phase_items(WeakProcessorPhase phase, size_t num_dead, size_t num_total) {
+  uint p = phase_index(phase);
+  assert(!is_initialized_items(_phase_dead_items[p]),
+         "Already set dead items for phase %u", p);
+  assert(!is_initialized_items(_phase_total_items[p]),
+         "Already set total items for phase %u", p);
+  _phase_dead_items[p] = num_dead;
+  _phase_total_items[p] = num_total;
+}
+
 WorkerDataArray<double>* WeakProcessorPhaseTimes::worker_data(WeakProcessorPhase phase) const {
   assert_oop_storage_phase(phase);
   assert(active_workers() > 1, "No worker data when single-threaded");
-  return _worker_phase_times_sec[WeakProcessorPhases::oop_storage_index(phase)];
+  return _worker_data[WeakProcessorPhases::oop_storage_index(phase)];
 }
 
 double WeakProcessorPhaseTimes::worker_time_sec(uint worker_id, WeakProcessorPhase phase) const {
@@ -155,6 +183,18 @@
   }
 }
 
+void WeakProcessorPhaseTimes::record_worker_items(uint worker_id,
+                                                  WeakProcessorPhase phase,
+                                                  size_t num_dead,
+                                                  size_t num_total) {
+  if (active_workers() == 1) {
+    record_phase_items(phase, num_dead, num_total);
+  } else {
+    worker_data(phase)->set_or_add_thread_work_item(worker_id, num_dead, DeadItems);
+    worker_data(phase)->set_or_add_thread_work_item(worker_id, num_total, TotalItems);
+  }
+}
+
 static double elapsed_time_sec(Ticks start_time, Ticks end_time) {
   return (end_time - start_time).seconds();
 }
@@ -223,6 +263,16 @@
                         indent_str(indent),
                         WeakProcessorPhases::description(phase),
                         phase_time_sec(phase) * MILLIUNITS);
+
+  log_debug(gc, phases)("%s%s: " SIZE_FORMAT,
+                        indent_str(indent + 1),
+                        "Dead",
+                        _phase_dead_items[phase_index(phase)]);
+
+  log_debug(gc, phases)("%s%s: " SIZE_FORMAT,
+                        indent_str(indent + 1),
+                        "Total",
+                        _phase_total_items[phase_index(phase)]);
 }
 
 void WeakProcessorPhaseTimes::log_mt_phase_summary(WeakProcessorPhase phase,
@@ -231,27 +281,36 @@
   LogStream ls(lt);
   ls.print("%s", indents[indent]);
   worker_data(phase)->print_summary_on(&ls, true);
+  log_mt_phase_details(worker_data(phase), indent + 1);
+
+  for (uint i = 0; i < worker_data(phase)->MaxThreadWorkItems; i++) {
+    WorkerDataArray<size_t>* work_items = worker_data(phase)->thread_work_items(i);
+    if (work_items != NULL) {
+      ls.print("%s", indents[indent + 1]);
+      work_items->print_summary_on(&ls, true);
+      log_mt_phase_details(work_items, indent + 1);
+    }
+  }
 }
 
-void WeakProcessorPhaseTimes::log_mt_phase_details(WeakProcessorPhase phase,
+template <typename T>
+void WeakProcessorPhaseTimes::log_mt_phase_details(WorkerDataArray<T>* data,
                                                    uint indent) const {
   LogTarget(Trace, gc, phases) lt;
-  LogStream ls(lt);
-  ls.print("%s", indents[indent]);
-  worker_data(phase)->print_details_on(&ls);
+  if (lt.is_enabled()) {
+    LogStream ls(lt);
+    ls.print("%s", indents[indent]);
+    data->print_details_on(&ls);
+  }
 }
 
 void WeakProcessorPhaseTimes::log_print_phases(uint indent) const {
   if (log_is_enabled(Debug, gc, phases)) {
-    bool details_enabled = log_is_enabled(Trace, gc, phases);
     FOR_EACH_WEAK_PROCESSOR_PHASE(phase) {
       if (is_serial_phase(phase) || (active_workers() == 1)) {
         log_st_phase(phase, indent);
       } else {
         log_mt_phase_summary(phase, indent);
-        if (details_enabled) {
-          log_mt_phase_details(phase, indent + 1);
-        }
       }
     }
   }
--- a/src/hotspot/share/gc/shared/weakProcessorPhaseTimes.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/weakProcessorPhaseTimes.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -33,6 +33,10 @@
 template<typename T> class WorkerDataArray;
 
 class WeakProcessorPhaseTimes : public CHeapObj<mtGC> {
+  enum {
+    DeadItems,
+    TotalItems
+  };
   uint _max_threads;
   uint _active_workers;
 
@@ -43,15 +47,20 @@
   // processed by multiple threads are unused, as are entries for
   // unexecuted phases.
   double _phase_times_sec[WeakProcessorPhases::phase_count];
+  size_t _phase_dead_items[WeakProcessorPhases::phase_count];
+  size_t _phase_total_items[WeakProcessorPhases::phase_count];
 
-  // Per-worker times, if multiple threads used and the phase was executed.
-  WorkerDataArray<double>* _worker_phase_times_sec[WeakProcessorPhases::oop_storage_phase_count];
+  // Per-worker times and linked items, if multiple threads used and the phase was executed.
+  WorkerDataArray<double>* _worker_data[WeakProcessorPhases::oop_storage_phase_count];
+  WorkerDataArray<size_t>* _worker_dead_items[WeakProcessorPhases::oop_storage_phase_count];
+  WorkerDataArray<size_t>* _worker_total_items[WeakProcessorPhases::oop_storage_phase_count];
 
   WorkerDataArray<double>* worker_data(WeakProcessorPhase phase) const;
 
   void log_st_phase(WeakProcessorPhase phase, uint indent) const;
   void log_mt_phase_summary(WeakProcessorPhase phase, uint indent) const;
-  void log_mt_phase_details(WeakProcessorPhase phase, uint indent) const;
+  template <typename T>
+  void log_mt_phase_details(WorkerDataArray<T>* data, uint indent) const;
 
 public:
   WeakProcessorPhaseTimes(uint max_threads);
@@ -67,7 +76,9 @@
 
   void record_total_time_sec(double time_sec);
   void record_phase_time_sec(WeakProcessorPhase phase, double time_sec);
+  void record_phase_items(WeakProcessorPhase phase, size_t num_dead, size_t num_total);
   void record_worker_time_sec(uint worker_id, WeakProcessorPhase phase, double time_sec);
+  void record_worker_items(uint worker_id, WeakProcessorPhase phase, size_t num_dead, size_t num_total);
 
   void reset();
 
--- a/src/hotspot/share/gc/shared/weakProcessorPhases.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/weakProcessorPhases.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
  */
 
 #include "precompiled.hpp"
+#include "classfile/stringTable.hpp"
 #include "classfile/systemDictionary.hpp"
 #include "gc/shared/weakProcessorPhases.hpp"
 #include "runtime/jniHandles.hpp"
@@ -78,6 +79,7 @@
   JVMTI_ONLY(case jvmti: return "JVMTI weak processing";)
   JFR_ONLY(case jfr: return "JFR weak processing";)
   case jni: return "JNI weak processing";
+  case stringtable: return "StringTable weak processing";
   case vm: return "VM weak processing";
   default:
     ShouldNotReachHere();
@@ -98,9 +100,14 @@
 OopStorage* WeakProcessorPhases::oop_storage(Phase phase) {
   switch (phase) {
   case jni: return JNIHandles::weak_global_handles();
+  case stringtable: return StringTable::weak_storage();
   case vm: return SystemDictionary::vm_weak_oop_storage();
   default:
     ShouldNotReachHere();
     return NULL;
   }
 }
+
+bool WeakProcessorPhases::is_stringtable(Phase phase) {
+  return phase == stringtable;
+}
--- a/src/hotspot/share/gc/shared/weakProcessorPhases.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shared/weakProcessorPhases.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -44,6 +44,7 @@
 
     // OopStorage phases.
     jni,
+    stringtable,
     vm
   };
 
@@ -65,6 +66,8 @@
   static const char* description(Phase phase);
   static Processor processor(Phase phase); // Precondition: is_serial(phase)
   static OopStorage* oop_storage(Phase phase); // Precondition: is_oop_storage(phase)
+
+  static bool is_stringtable(Phase phase);
 };
 
 typedef WeakProcessorPhases::Phase WeakProcessorPhase;
--- a/src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -777,11 +777,19 @@
     if (adr->bottom_type()->is_ptr_to_narrowoop()) {
       Node *newval_enc = kit->gvn().transform(new EncodePNode(new_val, new_val->bottom_type()->make_narrowoop()));
       Node *oldval_enc = kit->gvn().transform(new EncodePNode(expected_val, expected_val->bottom_type()->make_narrowoop()));
-      load_store = kit->gvn().transform(new ShenandoahCompareAndExchangeNNode(kit->control(), mem, adr, newval_enc, oldval_enc, adr_type, value_type->make_narrowoop(), mo));
+      if (ShenandoahCASBarrier) {
+        load_store = kit->gvn().transform(new ShenandoahCompareAndExchangeNNode(kit->control(), mem, adr, newval_enc, oldval_enc, adr_type, value_type->make_narrowoop(), mo));
+      } else {
+        load_store = kit->gvn().transform(new CompareAndExchangeNNode(kit->control(), mem, adr, newval_enc, oldval_enc, adr_type, value_type->make_narrowoop(), mo));
+      }
     } else
 #endif
     {
-      load_store = kit->gvn().transform(new ShenandoahCompareAndExchangePNode(kit->control(), mem, adr, new_val, expected_val, adr_type, value_type->is_oopptr(), mo));
+      if (ShenandoahCASBarrier) {
+        load_store = kit->gvn().transform(new ShenandoahCompareAndExchangePNode(kit->control(), mem, adr, new_val, expected_val, adr_type, value_type->is_oopptr(), mo));
+      } else {
+        load_store = kit->gvn().transform(new CompareAndExchangePNode(kit->control(), mem, adr, new_val, expected_val, adr_type, value_type->is_oopptr(), mo));
+      }
     }
 
     access.set_raw_access(load_store);
@@ -815,18 +823,34 @@
     if (adr->bottom_type()->is_ptr_to_narrowoop()) {
       Node *newval_enc = kit->gvn().transform(new EncodePNode(new_val, new_val->bottom_type()->make_narrowoop()));
       Node *oldval_enc = kit->gvn().transform(new EncodePNode(expected_val, expected_val->bottom_type()->make_narrowoop()));
-      if (is_weak_cas) {
-        load_store = kit->gvn().transform(new ShenandoahWeakCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
+      if (ShenandoahCASBarrier) {
+        if (is_weak_cas) {
+          load_store = kit->gvn().transform(new ShenandoahWeakCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
+        } else {
+          load_store = kit->gvn().transform(new ShenandoahCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
+        }
       } else {
-        load_store = kit->gvn().transform(new ShenandoahCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
+        if (is_weak_cas) {
+          load_store = kit->gvn().transform(new WeakCompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
+        } else {
+          load_store = kit->gvn().transform(new CompareAndSwapNNode(kit->control(), mem, adr, newval_enc, oldval_enc, mo));
+        }
       }
     } else
 #endif
     {
-      if (is_weak_cas) {
-        load_store = kit->gvn().transform(new ShenandoahWeakCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
+      if (ShenandoahCASBarrier) {
+        if (is_weak_cas) {
+          load_store = kit->gvn().transform(new ShenandoahWeakCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
+        } else {
+          load_store = kit->gvn().transform(new ShenandoahCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
+        }
       } else {
-        load_store = kit->gvn().transform(new ShenandoahCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
+        if (is_weak_cas) {
+          load_store = kit->gvn().transform(new WeakCompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
+        } else {
+          load_store = kit->gvn().transform(new CompareAndSwapPNode(kit->control(), mem, adr, new_val, expected_val, mo));
+        }
       }
     }
     access.set_raw_access(load_store);
--- a/src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1024,6 +1024,9 @@
         "sha512_implCompressMB",
         { { TypeFunc::Parms, ShenandoahLoad },  { TypeFunc::Parms+1, ShenandoahStore },   { -1, ShenandoahNone },
           { -1,  ShenandoahNone},                 { -1,  ShenandoahNone},                 { -1,  ShenandoahNone} },
+        "encodeBlock",
+        { { TypeFunc::Parms, ShenandoahLoad },  { TypeFunc::Parms+3, ShenandoahStore },   { -1, ShenandoahNone },
+          { -1,  ShenandoahNone},                 { -1,  ShenandoahNone},                 { -1,  ShenandoahNone} },
       };
 
       if (call->is_call_to_arraycopystub()) {
--- a/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1923,8 +1923,7 @@
                             ShenandoahPhaseTimings::full_gc_purge_par :
                             ShenandoahPhaseTimings::purge_par);
     uint active = _workers->active_workers();
-    StringDedupUnlinkOrOopsDoClosure dedup_cl(is_alive, NULL);
-    ParallelCleaningTask unlink_task(is_alive, &dedup_cl, active, purged_class);
+    ParallelCleaningTask unlink_task(is_alive, active, purged_class, true);
     _workers->run_task(&unlink_task);
   }
 
--- a/src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -78,7 +78,6 @@
   WeakProcessor::oops_do(oops);
   ObjectSynchronizer::oops_do(oops);
   SystemDictionary::oops_do(oops);
-  StringTable::oops_do(oops);
 
   if (ShenandoahStringDedup::is_enabled()) {
     ShenandoahStringDedup::oops_do_slow(oops);
@@ -209,13 +208,6 @@
       ObjectSynchronizer::oops_do(strong_roots);
     }
   }
-
-  // All threads execute the following. A specific chunk of buckets
-  // from the StringTable are the individual tasks.
-  if (weak_roots != NULL) {
-    ShenandoahWorkerTimingsTracker timer(worker_times, ShenandoahPhaseTimings::StringTableRoots, worker_id);
-    StringTable::possibly_parallel_oops_do(&_par_state_string, weak_roots);
-  }
 }
 
 uint ShenandoahRootProcessor::n_workers() const {
--- a/src/hotspot/share/gc/z/c1/zBarrierSetC1.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/c1/zBarrierSetC1.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -36,24 +36,17 @@
     _ref_addr(access.resolved_addr()),
     _ref(ref),
     _tmp(LIR_OprFact::illegalOpr),
-    _patch_info(access.patch_emit_info()),
     _runtime_stub(runtime_stub) {
 
+  assert(_ref_addr->is_address(), "Must be an address");
+  assert(_ref->is_register(), "Must be a register");
+
   // Allocate tmp register if needed
-  if (!_ref_addr->is_register()) {
-    assert(_ref_addr->is_address(), "Must be an address");
-    if (_ref_addr->as_address_ptr()->index()->is_valid() ||
-        _ref_addr->as_address_ptr()->disp() != 0) {
-      // Has index or displacement, need tmp register to load address into
-      _tmp = access.gen()->new_pointer_register();
-    } else {
-      // No index or displacement, address available in base register
-      _ref_addr = _ref_addr->as_address_ptr()->base();
-    }
+  if (_ref_addr->as_address_ptr()->index()->is_valid() ||
+      _ref_addr->as_address_ptr()->disp() != 0) {
+    // Has index or displacement, need tmp register to load address into
+    _tmp = access.gen()->new_pointer_register();
   }
-
-  assert(_ref->is_register(), "Must be a register");
-  assert(_ref_addr->is_register() != _tmp->is_register(), "Only one should be a register");
 }
 
 DecoratorSet ZLoadBarrierStubC1::decorators() const {
@@ -72,28 +65,14 @@
   return _tmp;
 }
 
-LIR_PatchCode ZLoadBarrierStubC1::patch_code() const {
-  return (_decorators & C1_NEEDS_PATCHING) != 0 ? lir_patch_normal : lir_patch_none;
-}
-
-CodeEmitInfo*& ZLoadBarrierStubC1::patch_info() {
-  return _patch_info;
-}
-
 address ZLoadBarrierStubC1::runtime_stub() const {
   return _runtime_stub;
 }
 
 void ZLoadBarrierStubC1::visit(LIR_OpVisitState* visitor) {
-  if (_patch_info != NULL) {
-    visitor->do_slow_case(_patch_info);
-  } else {
-    visitor->do_slow_case();
-  }
-
+  visitor->do_slow_case();
   visitor->do_input(_ref_addr);
   visitor->do_output(_ref);
-
   if (_tmp->is_valid()) {
     visitor->do_temp(_tmp);
   }
@@ -174,6 +153,14 @@
   __ branch_destination(stub->continuation());
 }
 
+LIR_Opr ZBarrierSetC1::resolve_address(LIRAccess& access, bool resolve_in_register) {
+  // We must resolve in register when patching. This is to avoid
+  // having a patch area in the load barrier stub, since the call
+  // into the runtime to patch will not have the proper oop map.
+  const bool patch_before_barrier = barrier_needed(access) && (access.decorators() & C1_NEEDS_PATCHING) != 0;
+  return BarrierSetC1::resolve_address(access, resolve_in_register || patch_before_barrier);
+}
+
 #undef __
 
 void ZBarrierSetC1::load_at_resolved(LIRAccess& access, LIR_Opr result) {
--- a/src/hotspot/share/gc/z/c1/zBarrierSetC1.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/c1/zBarrierSetC1.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -32,12 +32,11 @@
 
 class ZLoadBarrierStubC1 : public CodeStub {
 private:
-  DecoratorSet  _decorators;
-  LIR_Opr       _ref_addr;
-  LIR_Opr       _ref;
-  LIR_Opr       _tmp;
-  CodeEmitInfo* _patch_info;
-  address       _runtime_stub;
+  DecoratorSet _decorators;
+  LIR_Opr      _ref_addr;
+  LIR_Opr      _ref;
+  LIR_Opr      _tmp;
+  address      _runtime_stub;
 
 public:
   ZLoadBarrierStubC1(LIRAccess& access, LIR_Opr ref, address runtime_stub);
@@ -46,8 +45,6 @@
   LIR_Opr ref() const;
   LIR_Opr ref_addr() const;
   LIR_Opr tmp() const;
-  LIR_PatchCode patch_code() const;
-  CodeEmitInfo*& patch_info();
   address runtime_stub() const;
 
   virtual void emit_code(LIR_Assembler* ce);
@@ -67,6 +64,7 @@
   void load_barrier(LIRAccess& access, LIR_Opr result) const;
 
 protected:
+  virtual LIR_Opr resolve_address(LIRAccess& access, bool resolve_in_register);
   virtual void load_at_resolved(LIRAccess& access, LIR_Opr result);
   virtual LIR_Opr atomic_xchg_at_resolved(LIRAccess& access, LIRItem& value);
   virtual LIR_Opr atomic_cmpxchg_at_resolved(LIRAccess& access, LIRItem& cmp_value, LIRItem& new_value);
--- a/src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -37,8 +37,8 @@
 #include "gc/z/zThreadLocalData.hpp"
 #include "gc/z/zBarrierSetRuntime.hpp"
 
-ZBarrierSetC2State::ZBarrierSetC2State(Arena* comp_arena)
-  : _load_barrier_nodes(new (comp_arena) GrowableArray<LoadBarrierNode*>(comp_arena, 8,  0, NULL)) {}
+ZBarrierSetC2State::ZBarrierSetC2State(Arena* comp_arena) :
+    _load_barrier_nodes(new (comp_arena) GrowableArray<LoadBarrierNode*>(comp_arena, 8,  0, NULL)) {}
 
 int ZBarrierSetC2State::load_barrier_count() const {
   return _load_barrier_nodes->length();
@@ -123,7 +123,7 @@
 
 void ZBarrierSetC2::find_dominating_barriers(PhaseIterGVN& igvn) {
   // Look for dominating barriers on the same address only once all
-  // other loop opts are over: loop opts may cause a safepoint to be
+  // other loop opts are over. Loop opts may cause a safepoint to be
   // inserted between a barrier and its dominating barrier.
   Compile* C = Compile::current();
   ZBarrierSetC2* bs = (ZBarrierSetC2*)BarrierSet::barrier_set()->barrier_set_c2();
@@ -1010,8 +1010,6 @@
 
   assert(is_gc_barrier_node(result_phi), "sanity");
   assert(step_over_gc_barrier(result_phi) == in_val, "sanity");
-
-  return;
 }
 
 bool ZBarrierSetC2::expand_barriers(Compile* C, PhaseIterGVN& igvn) const {
@@ -1036,7 +1034,9 @@
       }
       expand_loadbarrier_node(&macro, n);
       assert(s->load_barrier_count() < load_barrier_count, "must have deleted a node from load barrier list");
-      if (C->failing())  return true;
+      if (C->failing()) {
+        return true;
+      }
     }
     while (s->load_barrier_count() > 0) {
       int load_barrier_count = s->load_barrier_count();
@@ -1045,12 +1045,17 @@
       assert(!n->can_be_eliminated(), "should have been processed already");
       expand_loadbarrier_node(&macro, n);
       assert(s->load_barrier_count() < load_barrier_count, "must have deleted a node from load barrier list");
-      if (C->failing())  return true;
+      if (C->failing()) {
+        return true;
+      }
     }
     igvn.set_delay_transform(false);
     igvn.optimize();
-    if (C->failing())  return true;
+    if (C->failing()) {
+      return true;
+    }
   }
+
   return false;
 }
 
@@ -1061,31 +1066,33 @@
   Compile* C = Compile::current();
 
   LoadBarrierNode* lb2 = lb->has_dominating_barrier(phase, false, last_round);
-  if (lb2 != NULL) {
-    if (lb->in(LoadBarrierNode::Oop) != lb2->in(LoadBarrierNode::Oop)) {
-      assert(lb->in(LoadBarrierNode::Address) == lb2->in(LoadBarrierNode::Address), "");
-      igvn.replace_input_of(lb, LoadBarrierNode::Similar, lb2->proj_out(LoadBarrierNode::Oop));
-      C->set_major_progress();
-    } else  {
-      // That transformation may cause the Similar edge on dominated load barriers to be invalid
-      lb->fix_similar_in_uses(&igvn);
+  if (lb2 == NULL) {
+    return false;
+  }
+
+  if (lb->in(LoadBarrierNode::Oop) != lb2->in(LoadBarrierNode::Oop)) {
+    assert(lb->in(LoadBarrierNode::Address) == lb2->in(LoadBarrierNode::Address), "Invalid address");
+    igvn.replace_input_of(lb, LoadBarrierNode::Similar, lb2->proj_out(LoadBarrierNode::Oop));
+    C->set_major_progress();
+    return false;
+  }
 
-      Node* val = lb->proj_out(LoadBarrierNode::Oop);
-      assert(lb2->has_true_uses(), "");
-      assert(lb2->in(LoadBarrierNode::Oop) == lb->in(LoadBarrierNode::Oop), "");
+  // That transformation may cause the Similar edge on dominated load barriers to be invalid
+  lb->fix_similar_in_uses(&igvn);
 
-      phase->lazy_update(lb, lb->in(LoadBarrierNode::Control));
-      phase->lazy_replace(lb->proj_out(LoadBarrierNode::Control), lb->in(LoadBarrierNode::Control));
-      igvn.replace_node(val, lb2->proj_out(LoadBarrierNode::Oop));
+  Node* val = lb->proj_out(LoadBarrierNode::Oop);
+  assert(lb2->has_true_uses(), "Invalid uses");
+  assert(lb2->in(LoadBarrierNode::Oop) == lb->in(LoadBarrierNode::Oop), "Invalid oop");
+  phase->lazy_update(lb, lb->in(LoadBarrierNode::Control));
+  phase->lazy_replace(lb->proj_out(LoadBarrierNode::Control), lb->in(LoadBarrierNode::Control));
+  igvn.replace_node(val, lb2->proj_out(LoadBarrierNode::Oop));
 
-      return true;
-    }
-  }
-  return false;
+  return true;
 }
 
 static Node* find_dominating_memory(PhaseIdealLoop* phase, Node* mem, Node* dom, int i) {
   assert(dom->is_Region() || i == -1, "");
+
   Node* m = mem;
   while(phase->is_dominator(dom, phase->has_ctrl(m) ? phase->get_ctrl(m) : m->in(0))) {
     if (m->is_Mem()) {
@@ -1111,6 +1118,7 @@
       ShouldNotReachHere();
     }
   }
+
   return m;
 }
 
@@ -1390,35 +1398,33 @@
   return false;
 }
 
-static void optimize_load_barrier(PhaseIdealLoop* phase, LoadBarrierNode* lb, bool last_round) {
-  Compile* C = Compile::current();
+void ZBarrierSetC2::loop_optimize_gc_barrier(PhaseIdealLoop* phase, Node* node, bool last_round) {
+  if (!Compile::current()->directive()->ZOptimizeLoadBarriersOption) {
+    return;
+  }
 
-  if (!C->directive()->ZOptimizeLoadBarriersOption) {
+  if (!node->is_LoadBarrier()) {
+    return;
+  }
+
+  if (!node->as_LoadBarrier()->has_true_uses()) {
     return;
   }
 
-  if (lb->has_true_uses()) {
-    if (replace_with_dominating_barrier(phase, lb, last_round)) {
-      return;
-    }
-
-    if (split_barrier_thru_phi(phase, lb)) {
-      return;
-    }
+  if (replace_with_dominating_barrier(phase, node->as_LoadBarrier(), last_round)) {
+    return;
+  }
 
-    if (move_out_of_loop(phase, lb)) {
-      return;
-    }
+  if (split_barrier_thru_phi(phase, node->as_LoadBarrier())) {
+    return;
+  }
 
-    if (common_barriers(phase, lb)) {
-      return;
-    }
+  if (move_out_of_loop(phase, node->as_LoadBarrier())) {
+    return;
   }
-}
 
-void ZBarrierSetC2::loop_optimize_gc_barrier(PhaseIdealLoop* phase, Node* node, bool last_round) {
-  if (node->is_LoadBarrier()) {
-    optimize_load_barrier(phase, node->as_LoadBarrier(), last_round);
+  if (common_barriers(phase, node->as_LoadBarrier())) {
+    return;
   }
 }
 
@@ -1453,26 +1459,23 @@
 }
 
 bool ZBarrierSetC2::final_graph_reshaping(Compile* compile, Node* n, uint opcode) const {
-  bool handled;
-  switch (opcode) {
-    case Op_LoadBarrierSlowReg:
-    case Op_LoadBarrierWeakSlowReg:
+  if (opcode != Op_LoadBarrierSlowReg &&
+      opcode != Op_LoadBarrierWeakSlowReg) {
+    return false;
+  }
+
 #ifdef ASSERT
-      if (VerifyOptoOopOffsets) {
-        MemNode* mem  = n->as_Mem();
-        // Check to see if address types have grounded out somehow.
-        const TypeInstPtr* tp = mem->in(MemNode::Address)->bottom_type()->isa_instptr();
-        ciInstanceKlass* k = tp->klass()->as_instance_klass();
-        bool oop_offset_is_sane = k->contains_field_offset(tp->offset());
-        assert(!tp || oop_offset_is_sane, "");
-      }
+  if (VerifyOptoOopOffsets) {
+    MemNode* mem  = n->as_Mem();
+    // Check to see if address types have grounded out somehow.
+    const TypeInstPtr* tp = mem->in(MemNode::Address)->bottom_type()->isa_instptr();
+    ciInstanceKlass* k = tp->klass()->as_instance_klass();
+    bool oop_offset_is_sane = k->contains_field_offset(tp->offset());
+    assert(!tp || oop_offset_is_sane, "");
+  }
 #endif
-      handled = true;
-      break;
-    default:
-      handled = false;
-  }
-  return handled;
+
+  return true;
 }
 
 bool ZBarrierSetC2::matcher_find_shared_visit(Matcher* matcher, Matcher::MStack& mstack, Node* n, uint opcode, bool& mem_op, int& mem_addr_idx) const {
@@ -1483,6 +1486,7 @@
     mem_addr_idx = TypeFunc::Parms + 1;
     return true;
   }
+
   return false;
 }
 
@@ -1606,37 +1610,35 @@
     case Op_LoadBarrierWeakSlowReg:
       conn_graph->add_objload_to_connection_graph(n, delayed_worklist);
       return true;
+
     case Op_Proj:
-      if (n->as_Proj()->_con == LoadBarrierNode::Oop && n->in(0)->is_LoadBarrier()) {
-        conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, n->in(0)->in(LoadBarrierNode::Oop),
-                                           delayed_worklist);
-        return true;
+      if (n->as_Proj()->_con != LoadBarrierNode::Oop || !n->in(0)->is_LoadBarrier()) {
+        return false;
       }
-    default:
-      break;
+      conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, n->in(0)->in(LoadBarrierNode::Oop), delayed_worklist);
+      return true;
   }
+
   return false;
 }
 
 bool ZBarrierSetC2::escape_add_final_edges(ConnectionGraph* conn_graph, PhaseGVN* gvn, Node* n, uint opcode) const {
   switch (opcode) {
     case Op_LoadBarrierSlowReg:
-    case Op_LoadBarrierWeakSlowReg: {
-      const Type *t = gvn->type(n);
-      if (t->make_ptr() != NULL) {
-        Node *adr = n->in(MemNode::Address);
-        conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, adr, NULL);
-        return true;
+    case Op_LoadBarrierWeakSlowReg:
+      if (gvn->type(n)->make_ptr() == NULL) {
+        return false;
       }
-    }
-    case Op_Proj: {
-      if (n->as_Proj()->_con == LoadBarrierNode::Oop && n->in(0)->is_LoadBarrier()) {
-        conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, n->in(0)->in(LoadBarrierNode::Oop), NULL);
-        return true;
+      conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, n->in(MemNode::Address), NULL);
+      return true;
+
+    case Op_Proj:
+      if (n->as_Proj()->_con != LoadBarrierNode::Oop || !n->in(0)->is_LoadBarrier()) {
+        return false;
       }
-    }
-    default:
-      break;
+      conn_graph->add_local_var_and_edge(n, PointsToNode::NoEscape, n->in(0)->in(LoadBarrierNode::Oop), NULL);
+      return true;
   }
+
   return false;
 }
--- a/src/hotspot/share/gc/z/c2/zBarrierSetC2.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/c2/zBarrierSetC2.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -31,7 +31,7 @@
 
 class LoadBarrierNode : public MultiNode {
 private:
-  bool _weak;
+  bool _weak;               // On strong or weak oop reference
   bool _writeback;          // Controls if the barrier writes the healed oop back to memory
                             // A swap on a memory location must never write back the healed oop
   bool _oop_reload_allowed; // Controls if the barrier are allowed to reload the oop from memory
@@ -104,8 +104,8 @@
                          const TypePtr *at,
                          const TypePtr* t,
                          MemOrd mo,
-                         ControlDependency control_dependency = DependsOnlyOnTest)
-    : LoadPNode(c, mem, adr, at, t, mo, control_dependency) {
+                         ControlDependency control_dependency = DependsOnlyOnTest) :
+      LoadPNode(c, mem, adr, at, t, mo, control_dependency) {
     init_class_id(Class_LoadBarrierSlowReg);
   }
 
@@ -128,8 +128,8 @@
                              const TypePtr *at,
                              const TypePtr* t,
                              MemOrd mo,
-                             ControlDependency control_dependency = DependsOnlyOnTest)
-    : LoadPNode(c, mem, adr, at, t, mo, control_dependency) {
+                             ControlDependency control_dependency = DependsOnlyOnTest) :
+      LoadPNode(c, mem, adr, at, t, mo, control_dependency) {
     init_class_id(Class_LoadBarrierWeakSlowReg);
   }
 
@@ -221,7 +221,6 @@
 
   virtual bool escape_add_to_con_graph(ConnectionGraph* conn_graph, PhaseGVN* gvn, Unique_Node_List* delayed_worklist, Node* n, uint opcode) const;
   virtual bool escape_add_final_edges(ConnectionGraph* conn_graph, PhaseGVN* gvn, Node* n, uint opcode) const;
-
 };
 
 #endif // SHARE_GC_Z_C2_ZBARRIERSETC2_HPP
--- a/src/hotspot/share/gc/z/zDriver.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/zDriver.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,7 +24,6 @@
 #include "precompiled.hpp"
 #include "gc/shared/gcId.hpp"
 #include "gc/shared/gcLocker.hpp"
-#include "gc/shared/gcVMOperations.hpp"
 #include "gc/shared/isGCActiveMark.hpp"
 #include "gc/z/zCollectedHeap.hpp"
 #include "gc/z/zDriver.hpp"
@@ -45,7 +44,6 @@
 static const ZStatPhaseConcurrent ZPhaseConcurrentProcessNonStrongReferences("Concurrent Process Non-Strong References");
 static const ZStatPhaseConcurrent ZPhaseConcurrentResetRelocationSet("Concurrent Reset Relocation Set");
 static const ZStatPhaseConcurrent ZPhaseConcurrentDestroyDetachedPages("Concurrent Destroy Detached Pages");
-static const ZStatPhasePause      ZPhasePauseVerify("Pause Verify");
 static const ZStatPhaseConcurrent ZPhaseConcurrentSelectRelocationSet("Concurrent Select Relocation Set");
 static const ZStatPhaseConcurrent ZPhaseConcurrentPrepareRelocationSet("Concurrent Prepare Relocation Set");
 static const ZStatPhasePause      ZPhasePauseRelocateStart("Pause Relocate Start");
@@ -53,41 +51,26 @@
 static const ZStatCriticalPhase   ZCriticalPhaseGCLockerStall("GC Locker Stall", false /* verbose */);
 static const ZStatSampler         ZSamplerJavaThreads("System", "Java Threads", ZStatUnitThreads);
 
-class ZOperationClosure : public StackObj {
+class VM_ZOperation : public VM_Operation {
+private:
+  const uint _gc_id;
+  bool       _gc_locked;
+  bool       _success;
+
 public:
-  virtual const char* name() const = 0;
+  VM_ZOperation() :
+      _gc_id(GCId::current()),
+      _gc_locked(false),
+      _success(false) {}
 
   virtual bool needs_inactive_gc_locker() const {
-    // An inactive GC locker is needed in operations where we change the good
-    // mask or move objects. Changing the good mask will invalidate all oops,
+    // An inactive GC locker is needed in operations where we change the bad
+    // mask or move objects. Changing the bad mask will invalidate all oops,
     // which makes it conceptually the same thing as moving all objects.
     return false;
   }
 
   virtual bool do_operation() = 0;
-};
-
-class VM_ZOperation : public VM_Operation {
-private:
-  ZOperationClosure* _cl;
-  uint               _gc_id;
-  bool               _gc_locked;
-  bool               _success;
-
-public:
-  VM_ZOperation(ZOperationClosure* cl) :
-      _cl(cl),
-      _gc_id(GCId::current()),
-      _gc_locked(false),
-      _success(false) {}
-
-  virtual VMOp_Type type() const {
-    return VMOp_ZOperation;
-  }
-
-  virtual const char* name() const {
-    return _cl->name();
-  }
 
   virtual bool doit_prologue() {
     Heap_lock->lock();
@@ -95,31 +78,28 @@
   }
 
   virtual void doit() {
-    assert(SafepointSynchronize::is_at_safepoint(), "Should be at safepoint");
-
-    ZStatSample(ZSamplerJavaThreads, Threads::number_of_threads());
-
-    // JVMTI support
-    SvcGCMarker sgcm(SvcGCMarker::CONCURRENT);
+    // Abort if GC locker state is incompatible
+    if (needs_inactive_gc_locker() && GCLocker::check_active_before_gc()) {
+      _gc_locked = true;
+      return;
+    }
 
-    // Setup GC id
-    GCIdMark gcid(_gc_id);
+    // Setup GC id and active marker
+    GCIdMark gc_id_mark(_gc_id);
+    IsGCActiveMark gc_active_mark;
 
-    if (_cl->needs_inactive_gc_locker() && GCLocker::check_active_before_gc()) {
-      // GC locker is active, bail out
-      _gc_locked = true;
-    } else {
-      // Execute operation
-      IsGCActiveMark mark;
-      _success = _cl->do_operation();
-    }
+    // Execute operation
+    _success = do_operation();
+
+    // Update statistics
+    ZStatSample(ZSamplerJavaThreads, Threads::number_of_threads());
   }
 
   virtual void doit_epilogue() {
     Heap_lock->unlock();
   }
 
-  bool gc_locked() {
+  bool gc_locked() const {
     return _gc_locked;
   }
 
@@ -169,10 +149,10 @@
   return false;
 }
 
-class ZMarkStartClosure : public ZOperationClosure {
+class VM_ZMarkStart : public VM_ZOperation {
 public:
-  virtual const char* name() const {
-    return "ZMarkStart";
+  virtual VMOp_Type type() const {
+    return VMOp_ZMarkStart;
   }
 
   virtual bool needs_inactive_gc_locker() const {
@@ -198,37 +178,23 @@
   }
 };
 
-class ZMarkEndClosure : public ZOperationClosure {
+class VM_ZMarkEnd : public VM_ZOperation {
 public:
-  virtual const char* name() const {
-    return "ZMarkEnd";
+  virtual VMOp_Type type() const {
+    return VMOp_ZMarkEnd;
   }
 
   virtual bool do_operation() {
     ZStatTimer timer(ZPhasePauseMarkEnd);
     ZServiceabilityMarkEndTracer tracer;
-
     return ZHeap::heap()->mark_end();
   }
 };
 
-class ZVerifyClosure : public ZOperationClosure {
+class VM_ZRelocateStart : public VM_ZOperation {
 public:
-  virtual const char* name() const {
-    return "ZVerify";
-  }
-
-  virtual bool do_operation() {
-    ZStatTimer timer(ZPhasePauseVerify);
-    Universe::verify();
-    return true;
-  }
-};
-
-class ZRelocateStartClosure : public ZOperationClosure {
-public:
-  virtual const char* name() const {
-    return "ZRelocateStart";
+  virtual VMOp_Type type() const {
+    return VMOp_ZRelocateStart;
   }
 
   virtual bool needs_inactive_gc_locker() const {
@@ -238,7 +204,6 @@
   virtual bool do_operation() {
     ZStatTimer timer(ZPhasePauseRelocateStart);
     ZServiceabilityRelocateStartTracer tracer;
-
     ZHeap::heap()->relocate_start();
     return true;
   }
@@ -251,24 +216,6 @@
   create_and_start();
 }
 
-bool ZDriver::vm_operation(ZOperationClosure* cl) {
-  for (;;) {
-    VM_ZOperation op(cl);
-    VMThread::execute(&op);
-    if (op.gc_locked()) {
-      // Wait for GC to become unlocked and restart the VM operation
-      ZStatTimer timer(ZCriticalPhaseGCLockerStall);
-      _gc_locker_port.wait();
-      continue;
-    }
-
-    // Notify VM operation completed
-    _gc_locker_port.ack();
-
-    return op.success();
-  }
-}
-
 void ZDriver::collect(GCCause::Cause cause) {
   switch (cause) {
   case GCCause::_wb_young_gc:
@@ -306,19 +253,96 @@
   }
 }
 
-GCCause::Cause ZDriver::start_gc_cycle() {
-  // Wait for GC request
-  return _gc_cycle_port.receive();
+template <typename T>
+bool ZDriver::pause() {
+  for (;;) {
+    T op;
+    VMThread::execute(&op);
+    if (op.gc_locked()) {
+      // Wait for GC to become unlocked and restart the VM operation
+      ZStatTimer timer(ZCriticalPhaseGCLockerStall);
+      _gc_locker_port.wait();
+      continue;
+    }
+
+    // Notify VM operation completed
+    _gc_locker_port.ack();
+
+    return op.success();
+  }
+}
+
+void ZDriver::pause_mark_start() {
+  pause<VM_ZMarkStart>();
+}
+
+void ZDriver::concurrent_mark() {
+  ZStatTimer timer(ZPhaseConcurrentMark);
+  ZHeap::heap()->mark(true /* initial */);
+}
+
+bool ZDriver::pause_mark_end() {
+  return pause<VM_ZMarkEnd>();
+}
+
+void ZDriver::concurrent_mark_continue() {
+  ZStatTimer timer(ZPhaseConcurrentMarkContinue);
+  ZHeap::heap()->mark(false /* initial */);
+}
+
+void ZDriver::concurrent_process_non_strong_references() {
+  ZStatTimer timer(ZPhaseConcurrentProcessNonStrongReferences);
+  ZHeap::heap()->process_non_strong_references();
 }
 
-class ZDriverCycleScope : public StackObj {
+void ZDriver::concurrent_reset_relocation_set() {
+  ZStatTimer timer(ZPhaseConcurrentResetRelocationSet);
+  ZHeap::heap()->reset_relocation_set();
+}
+
+void ZDriver::concurrent_destroy_detached_pages() {
+  ZStatTimer timer(ZPhaseConcurrentDestroyDetachedPages);
+  ZHeap::heap()->destroy_detached_pages();
+}
+
+void ZDriver::pause_verify() {
+  if (VerifyBeforeGC || VerifyDuringGC || VerifyAfterGC) {
+    VM_Verify op;
+    VMThread::execute(&op);
+  }
+}
+
+void ZDriver::concurrent_select_relocation_set() {
+  ZStatTimer timer(ZPhaseConcurrentSelectRelocationSet);
+  ZHeap::heap()->select_relocation_set();
+}
+
+void ZDriver::concurrent_prepare_relocation_set() {
+  ZStatTimer timer(ZPhaseConcurrentPrepareRelocationSet);
+  ZHeap::heap()->prepare_relocation_set();
+}
+
+void ZDriver::pause_relocate_start() {
+  pause<VM_ZRelocateStart>();
+}
+
+void ZDriver::concurrent_relocate() {
+  ZStatTimer timer(ZPhaseConcurrentRelocated);
+  ZHeap::heap()->relocate();
+}
+
+void ZDriver::check_out_of_memory() {
+  ZHeap::heap()->check_out_of_memory();
+}
+
+class ZDriverGCScope : public StackObj {
 private:
   GCIdMark      _gc_id;
   GCCauseSetter _gc_cause_setter;
   ZStatTimer    _timer;
 
 public:
-  ZDriverCycleScope(GCCause::Cause cause) :
+  ZDriverGCScope(GCCause::Cause cause) :
       _gc_id(),
       _gc_cause_setter(ZCollectedHeap::heap(), cause),
       _timer(ZPhaseCycle) {
@@ -326,7 +350,7 @@
     ZStatCycle::at_start();
   }
 
-  ~ZDriverCycleScope() {
+  ~ZDriverGCScope() {
     // Calculate boost factor
     const double boost_factor = (double)ZHeap::heap()->nconcurrent_worker_threads() /
                                 (double)ZHeap::heap()->nconcurrent_no_boost_worker_threads();
@@ -339,96 +363,63 @@
   }
 };
 
-void ZDriver::run_gc_cycle(GCCause::Cause cause) {
-  ZDriverCycleScope scope(cause);
+void ZDriver::gc(GCCause::Cause cause) {
+  ZDriverGCScope scope(cause);
 
   // Phase 1: Pause Mark Start
-  {
-    ZMarkStartClosure cl;
-    vm_operation(&cl);
-  }
+  pause_mark_start();
 
   // Phase 2: Concurrent Mark
-  {
-    ZStatTimer timer(ZPhaseConcurrentMark);
-    ZHeap::heap()->mark(true /* initial */);
-  }
+  concurrent_mark();
 
   // Phase 3: Pause Mark End
-  {
-    ZMarkEndClosure cl;
-    while (!vm_operation(&cl)) {
-      // Phase 3.5: Concurrent Mark Continue
-      ZStatTimer timer(ZPhaseConcurrentMarkContinue);
-      ZHeap::heap()->mark(false /* initial */);
-    }
+  while (!pause_mark_end()) {
+    // Phase 3.5: Concurrent Mark Continue
+    concurrent_mark_continue();
   }
 
   // Phase 4: Concurrent Process Non-Strong References
-  {
-    ZStatTimer timer(ZPhaseConcurrentProcessNonStrongReferences);
-    ZHeap::heap()->process_non_strong_references();
-  }
+  concurrent_process_non_strong_references();
 
   // Phase 5: Concurrent Reset Relocation Set
-  {
-    ZStatTimer timer(ZPhaseConcurrentResetRelocationSet);
-    ZHeap::heap()->reset_relocation_set();
-  }
+  concurrent_reset_relocation_set();
 
   // Phase 6: Concurrent Destroy Detached Pages
-  {
-    ZStatTimer timer(ZPhaseConcurrentDestroyDetachedPages);
-    ZHeap::heap()->destroy_detached_pages();
-  }
+  concurrent_destroy_detached_pages();
 
   // Phase 7: Pause Verify
-  if (VerifyBeforeGC || VerifyDuringGC || VerifyAfterGC) {
-    ZVerifyClosure cl;
-    vm_operation(&cl);
-  }
+  pause_verify();
 
   // Phase 8: Concurrent Select Relocation Set
-  {
-    ZStatTimer timer(ZPhaseConcurrentSelectRelocationSet);
-    ZHeap::heap()->select_relocation_set();
-  }
+  concurrent_select_relocation_set();
 
   // Phase 9: Concurrent Prepare Relocation Set
-  {
-    ZStatTimer timer(ZPhaseConcurrentPrepareRelocationSet);
-    ZHeap::heap()->prepare_relocation_set();
-  }
+  concurrent_prepare_relocation_set();
 
   // Phase 10: Pause Relocate Start
-  {
-    ZRelocateStartClosure cl;
-    vm_operation(&cl);
-  }
+  pause_relocate_start();
 
   // Phase 11: Concurrent Relocate
-  {
-    ZStatTimer timer(ZPhaseConcurrentRelocated);
-    ZHeap::heap()->relocate();
-  }
-}
-
-void ZDriver::end_gc_cycle() {
-  // Notify GC cycle completed
-  _gc_cycle_port.ack();
-
-  // Check for out of memory condition
-  ZHeap::heap()->check_out_of_memory();
+  concurrent_relocate();
 }
 
 void ZDriver::run_service() {
   // Main loop
   while (!should_terminate()) {
-    const GCCause::Cause cause = start_gc_cycle();
-    if (cause != GCCause::_no_gc) {
-      run_gc_cycle(cause);
-      end_gc_cycle();
+    // Wait for GC request
+    const GCCause::Cause cause = _gc_cycle_port.receive();
+    if (cause == GCCause::_no_gc) {
+      continue;
     }
+
+    // Run GC
+    gc(cause);
+
+    // Notify GC completed
+    _gc_cycle_port.ack();
+
+    // Check for out of memory condition
+    check_out_of_memory();
   }
 }
 
--- a/src/hotspot/share/gc/z/zDriver.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/zDriver.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -28,18 +28,31 @@
 #include "gc/shared/gcCause.hpp"
 #include "gc/z/zMessagePort.hpp"
 
-class ZOperationClosure;
+class VM_ZOperation;
 
 class ZDriver : public ConcurrentGCThread {
 private:
   ZMessagePort<GCCause::Cause> _gc_cycle_port;
   ZRendezvousPort              _gc_locker_port;
 
-  bool vm_operation(ZOperationClosure* cl);
+  template <typename T> bool pause();
 
-  GCCause::Cause start_gc_cycle();
-  void run_gc_cycle(GCCause::Cause cause);
-  void end_gc_cycle();
+  void pause_mark_start();
+  void concurrent_mark();
+  bool pause_mark_end();
+  void concurrent_mark_continue();
+  void concurrent_process_non_strong_references();
+  void concurrent_reset_relocation_set();
+  void concurrent_destroy_detached_pages();
+  void pause_verify();
+  void concurrent_select_relocation_set();
+  void concurrent_prepare_relocation_set();
+  void pause_relocate_start();
+  void concurrent_relocate();
+
+  void check_out_of_memory();
+
+  void gc(GCCause::Cause cause);
 
 protected:
   virtual void run_service();
--- a/src/hotspot/share/gc/z/zNMethodTable.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/zNMethodTable.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -264,21 +264,17 @@
   }
 }
 
-bool ZNMethodTable::unregister_entry(ZNMethodTableEntry* table, size_t size, nmethod* nm) {
+void ZNMethodTable::unregister_entry(ZNMethodTableEntry* table, size_t size, nmethod* nm) {
   if (size == 0) {
     // Table is empty
-    return false;
+    return;
   }
 
   size_t index = first_index(nm, size);
 
   for (;;) {
     const ZNMethodTableEntry table_entry = table[index];
-
-    if (!table_entry.registered() && !table_entry.unregistered()) {
-      // Entry not found
-      return false;
-    }
+    assert(table_entry.registered() || table_entry.unregistered(), "Entry not found");
 
     if (table_entry.registered() && table_entry.method() == nm) {
       // Remove entry
@@ -287,7 +283,7 @@
       // Destroy GC data
       ZNMethodData::destroy(gc_data(nm));
       set_gc_data(nm, NULL);
-      return true;
+      return;
     }
 
     index = next_index(index, size);
@@ -451,8 +447,6 @@
     return;
   }
 
-  assert(CodeCache_lock->owned_by_self(), "Lock must be held");
-
   while (_iter_table != NULL) {
     MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
     os::naked_short_sleep(1);
@@ -460,6 +454,7 @@
 }
 
 void ZNMethodTable::unregister_nmethod(nmethod* nm) {
+  assert(CodeCache_lock->owned_by_self(), "Lock must be held");
   ResourceMark rm;
 
   sweeper_wait_for_iteration();
@@ -467,14 +462,9 @@
   log_unregister(nm);
 
   // Remove entry
-  if (unregister_entry(_table, _size, nm)) {
-    // Entry was unregistered. When unregister_entry() instead returns
-    // false the nmethod was not in the table (because it didn't have
-    // any oops) so we do not want to decrease the number of registered
-    // entries in that case.
-    _nregistered--;
-    _nunregistered++;
-  }
+  unregister_entry(_table, _size, nm);
+  _nunregistered++;
+  _nregistered--;
 }
 
 void ZNMethodTable::disarm_nmethod(nmethod* nm) {
--- a/src/hotspot/share/gc/z/zNMethodTable.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/zNMethodTable.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -57,7 +57,7 @@
   static void sweeper_wait_for_iteration();
 
   static bool register_entry(ZNMethodTableEntry* table, size_t size, ZNMethodTableEntry entry);
-  static bool unregister_entry(ZNMethodTableEntry* table, size_t size, nmethod* nm);
+  static void unregister_entry(ZNMethodTableEntry* table, size_t size, nmethod* nm);
 
   static void rebuild(size_t new_size);
   static void rebuild_if_needed();
--- a/src/hotspot/share/gc/z/zReferenceProcessor.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/zReferenceProcessor.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -39,45 +39,11 @@
 static const ZStatSubPhase ZSubPhaseConcurrentReferencesProcess("Concurrent References Process");
 static const ZStatSubPhase ZSubPhaseConcurrentReferencesEnqueue("Concurrent References Enqueue");
 
-ZReferenceProcessor::ZReferenceProcessor(ZWorkers* workers) :
-    _workers(workers),
-    _soft_reference_policy(NULL),
-    _encountered_count(),
-    _discovered_count(),
-    _enqueued_count(),
-    _discovered_list(NULL),
-    _pending_list(NULL),
-    _pending_list_tail(_pending_list.addr()) {}
-
-void ZReferenceProcessor::set_soft_reference_policy(bool clear) {
-  static AlwaysClearPolicy always_clear_policy;
-  static LRUMaxHeapPolicy lru_max_heap_policy;
-
-  if (clear) {
-    log_info(gc, ref)("Clearing All Soft References");
-    _soft_reference_policy = &always_clear_policy;
-  } else {
-    _soft_reference_policy = &lru_max_heap_policy;
-  }
-
-  _soft_reference_policy->setup();
+static ReferenceType reference_type(oop reference) {
+  return InstanceKlass::cast(reference->klass())->reference_type();
 }
 
-void ZReferenceProcessor::update_soft_reference_clock() const {
-  const jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
-  java_lang_ref_SoftReference::set_clock(now);
-}
-
-bool ZReferenceProcessor::is_inactive_final_reference(oop obj, ReferenceType type) const {
-  // A non-null next field for a FinalReference means the reference is inactive.
-  return (type == REF_FINAL) && (java_lang_ref_Reference::next(obj) != NULL);
-}
-
-ReferenceType ZReferenceProcessor::reference_type(oop obj) const {
-  return InstanceKlass::cast(obj->klass())->reference_type();
-}
-
-const char* ZReferenceProcessor::reference_type_name(ReferenceType type) const {
+static const char* reference_type_name(ReferenceType type) {
   switch (type) {
   case REF_SOFT:
     return "Soft";
@@ -97,53 +63,134 @@
   }
 }
 
-volatile oop* ZReferenceProcessor::reference_referent_addr(oop obj) const {
-  return (volatile oop*)java_lang_ref_Reference::referent_addr_raw(obj);
+static volatile oop* reference_referent_addr(oop reference) {
+  return (volatile oop*)java_lang_ref_Reference::referent_addr_raw(reference);
+}
+
+static oop reference_referent(oop reference) {
+  return *reference_referent_addr(reference);
+}
+
+static void reference_set_referent(oop reference, oop referent) {
+  java_lang_ref_Reference::set_referent_raw(reference, referent);
+}
+
+static oop* reference_discovered_addr(oop reference) {
+  return (oop*)java_lang_ref_Reference::discovered_addr_raw(reference);
+}
+
+static oop reference_discovered(oop reference) {
+  return *reference_discovered_addr(reference);
+}
+
+static void reference_set_discovered(oop reference, oop discovered) {
+  java_lang_ref_Reference::set_discovered_raw(reference, discovered);
+}
+
+static oop* reference_next_addr(oop reference) {
+  return (oop*)java_lang_ref_Reference::next_addr_raw(reference);
+}
+
+static oop reference_next(oop reference) {
+  return *reference_next_addr(reference);
+}
+
+static void reference_set_next(oop reference, oop next) {
+  java_lang_ref_Reference::set_next_raw(reference, next);
+}
+
+static void soft_reference_update_clock() {
+  const jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
+  java_lang_ref_SoftReference::set_clock(now);
 }
 
-oop ZReferenceProcessor::reference_referent(oop obj) const {
-  return *reference_referent_addr(obj);
+ZReferenceProcessor::ZReferenceProcessor(ZWorkers* workers) :
+    _workers(workers),
+    _soft_reference_policy(NULL),
+    _encountered_count(),
+    _discovered_count(),
+    _enqueued_count(),
+    _discovered_list(NULL),
+    _pending_list(NULL),
+    _pending_list_tail(_pending_list.addr()) {}
+
+void ZReferenceProcessor::set_soft_reference_policy(bool clear) {
+  static AlwaysClearPolicy always_clear_policy;
+  static LRUMaxHeapPolicy lru_max_heap_policy;
+
+  if (clear) {
+    log_info(gc, ref)("Clearing All SoftReferences");
+    _soft_reference_policy = &always_clear_policy;
+  } else {
+    _soft_reference_policy = &lru_max_heap_policy;
+  }
+
+  _soft_reference_policy->setup();
 }
 
-bool ZReferenceProcessor::is_referent_strongly_alive_or_null(oop obj, ReferenceType type) const {
-  // Check if the referent is strongly alive or null, in which case we don't want to
-  // discover the reference. It can only be null if the application called
-  // Reference.enqueue() or Reference.clear().
-  //
+bool ZReferenceProcessor::is_inactive(oop reference, oop referent, ReferenceType type) const {
+  if (type == REF_FINAL) {
+    // A FinalReference is inactive if its next field is non-null. An application can't
+    // call enqueue() or clear() on a FinalReference.
+    return reference_next(reference) != NULL;
+  } else {
+    // A non-FinalReference is inactive if the referent is null. The referent can only
+    // be null if the application called Reference.enqueue() or Reference.clear().
+    return referent == NULL;
+  }
+}
+
+bool ZReferenceProcessor::is_strongly_live(oop referent) const {
+  return ZHeap::heap()->is_object_strongly_live(ZOop::to_address(referent));
+}
+
+bool ZReferenceProcessor::is_softly_live(oop reference, ReferenceType type) const {
+  if (type != REF_SOFT) {
+    // Not a SoftReference
+    return false;
+  }
+
+  // Ask SoftReference policy
+  const jlong clock = java_lang_ref_SoftReference::clock();
+  assert(clock != 0, "Clock not initialized");
+  assert(_soft_reference_policy != NULL, "Policy not initialized");
+  return !_soft_reference_policy->should_clear_reference(reference, clock);
+}
+
+bool ZReferenceProcessor::should_discover(oop reference, ReferenceType type) const {
+  volatile oop* const referent_addr = reference_referent_addr(reference);
+  const oop referent = ZBarrier::weak_load_barrier_on_oop_field(referent_addr);
+
+  if (is_inactive(reference, referent, type)) {
+    return false;
+  }
+
+  if (is_strongly_live(referent)) {
+    return false;
+  }
+
+  if (is_softly_live(reference, type)) {
+    return false;
+  }
+
   // PhantomReferences with finalizable marked referents should technically not have
   // to be discovered. However, InstanceRefKlass::oop_oop_iterate_ref_processing()
   // does not know about the finalizable mark concept, and will therefore mark
   // referents in non-discovered PhantomReferences as strongly live. To prevent
   // this, we always discover PhantomReferences with finalizable marked referents.
   // They will automatically be dropped during the reference processing phase.
-
-  volatile oop* const p = reference_referent_addr(obj);
-  const oop o = ZBarrier::weak_load_barrier_on_oop_field(p);
-  return o == NULL || ZHeap::heap()->is_object_strongly_live(ZOop::to_address(o));
+  return true;
 }
 
-bool ZReferenceProcessor::is_referent_softly_alive(oop obj, ReferenceType type) const {
-  if (type != REF_SOFT) {
-    // Not a soft reference
-    return false;
-  }
-
-  // Ask soft reference policy
-  const jlong clock = java_lang_ref_SoftReference::clock();
-  assert(clock != 0, "Clock not initialized");
-  assert(_soft_reference_policy != NULL, "Policy not initialized");
-  return !_soft_reference_policy->should_clear_reference(obj, clock);
-}
-
-bool ZReferenceProcessor::should_drop_reference(oop obj, ReferenceType type) const {
+bool ZReferenceProcessor::should_drop(oop reference, ReferenceType type) const {
   // This check is racing with a call to Reference.clear() from the application.
   // If the application clears the reference after this check it will still end
   // up on the pending list, and there's nothing we can do about that without
   // changing the Reference.clear() API. This check is also racing with a call
   // to Reference.enqueue() from the application, which is unproblematic, since
   // the application wants the reference to be enqueued anyway.
-  const oop o = reference_referent(obj);
-  if (o == NULL) {
+  const oop referent = reference_referent(reference);
+  if (referent == NULL) {
     // Reference has been cleared, by a call to Reference.enqueue()
     // or Reference.clear() from the application, which means we
     // should drop the reference.
@@ -153,22 +200,14 @@
   // Check if the referent is still alive, in which case we should
   // drop the reference.
   if (type == REF_PHANTOM) {
-    return ZBarrier::is_alive_barrier_on_phantom_oop(o);
+    return ZBarrier::is_alive_barrier_on_phantom_oop(referent);
   } else {
-    return ZBarrier::is_alive_barrier_on_weak_oop(o);
+    return ZBarrier::is_alive_barrier_on_weak_oop(referent);
   }
 }
 
-bool ZReferenceProcessor::should_mark_referent(ReferenceType type) const {
-  // Referents of final references (and its reachable sub graph) are
-  // always marked finalizable during discovery. This avoids the problem
-  // of later having to mark those objects if the referent is still final
-  // reachable during processing.
-  return type == REF_FINAL;
-}
-
-void ZReferenceProcessor::keep_referent_alive(oop obj, ReferenceType type) const {
-  volatile oop* const p = reference_referent_addr(obj);
+void ZReferenceProcessor::keep_alive(oop reference, ReferenceType type) const {
+  volatile oop* const p = reference_referent_addr(reference);
   if (type == REF_PHANTOM) {
     ZBarrier::keep_alive_barrier_on_phantom_oop_field(p);
   } else {
@@ -176,82 +215,86 @@
   }
 }
 
-bool ZReferenceProcessor::discover_reference(oop obj, ReferenceType type) {
+void ZReferenceProcessor::make_inactive(oop reference, ReferenceType type) const {
+  if (type == REF_FINAL) {
+    // Don't clear referent. It is needed by the Finalizer thread to make the call
+    // to finalize(). A FinalReference is instead made inactive by self-looping the
+    // next field. An application can't call FinalReference.enqueue(), so there is
+    // no race to worry about when setting the next field.
+    assert(reference_next(reference) == NULL, "Already inactive");
+    reference_set_next(reference, reference);
+  } else {
+    // Clear referent
+    reference_set_referent(reference, NULL);
+  }
+}
+
+void ZReferenceProcessor::discover(oop reference, ReferenceType type) {
+  log_trace(gc, ref)("Discovered Reference: " PTR_FORMAT " (%s)", p2i(reference), reference_type_name(type));
+
+  // Update statistics
+  _discovered_count.get()[type]++;
+
+  if (type == REF_FINAL) {
+    // Mark referent (and its reachable subgraph) finalizable. This avoids
+    // the problem of later having to mark those objects if the referent is
+    // still final reachable during processing.
+    volatile oop* const referent_addr = reference_referent_addr(reference);
+    ZBarrier::mark_barrier_on_oop_field(referent_addr, true /* finalizable */);
+  }
+
+  // Add reference to discovered list
+  assert(reference_discovered(reference) == NULL, "Already discovered");
+  oop* const list = _discovered_list.addr();
+  reference_set_discovered(reference, *list);
+  *list = reference;
+}
+
+bool ZReferenceProcessor::discover_reference(oop reference, ReferenceType type) {
   if (!RegisterReferences) {
     // Reference processing disabled
     return false;
   }
 
-  log_trace(gc, ref)("Encountered Reference: " PTR_FORMAT " (%s)", p2i(obj), reference_type_name(type));
+  log_trace(gc, ref)("Encountered Reference: " PTR_FORMAT " (%s)", p2i(reference), reference_type_name(type));
 
   // Update statistics
   _encountered_count.get()[type]++;
 
-  if (is_referent_strongly_alive_or_null(obj, type) ||
-      is_inactive_final_reference(obj, type) ||
-      is_referent_softly_alive(obj, type)) {
+  if (!should_discover(reference, type)) {
     // Not discovered
     return false;
   }
 
-  discover(obj, type);
+  discover(reference, type);
 
   // Discovered
   return true;
 }
 
-void ZReferenceProcessor::discover(oop obj, ReferenceType type) {
-  log_trace(gc, ref)("Discovered Reference: " PTR_FORMAT " (%s)", p2i(obj), reference_type_name(type));
-
-  // Update statistics
-  _discovered_count.get()[type]++;
-
-  // Mark referent finalizable
-  if (should_mark_referent(type)) {
-    oop* const referent_addr = (oop*)java_lang_ref_Reference::referent_addr_raw(obj);
-    ZBarrier::mark_barrier_on_oop_field(referent_addr, true /* finalizable */);
-  }
-
-  // Add reference to discovered list
-  assert(java_lang_ref_Reference::discovered(obj) == NULL, "Already discovered");
-  oop* const list = _discovered_list.addr();
-  java_lang_ref_Reference::set_discovered(obj, *list);
-  *list = obj;
-}
-
-oop ZReferenceProcessor::drop(oop obj, ReferenceType type) {
-  log_trace(gc, ref)("Dropped Reference: " PTR_FORMAT " (%s)", p2i(obj), reference_type_name(type));
+oop ZReferenceProcessor::drop(oop reference, ReferenceType type) {
+  log_trace(gc, ref)("Dropped Reference: " PTR_FORMAT " (%s)", p2i(reference), reference_type_name(type));
 
   // Keep referent alive
-  keep_referent_alive(obj, type);
+  keep_alive(reference, type);
 
   // Unlink and return next in list
-  const oop next = java_lang_ref_Reference::discovered(obj);
-  java_lang_ref_Reference::set_discovered(obj, NULL);
+  const oop next = reference_discovered(reference);
+  reference_set_discovered(reference, NULL);
   return next;
 }
 
-oop* ZReferenceProcessor::keep(oop obj, ReferenceType type) {
-  log_trace(gc, ref)("Enqueued Reference: " PTR_FORMAT " (%s)", p2i(obj), reference_type_name(type));
+oop* ZReferenceProcessor::keep(oop reference, ReferenceType type) {
+  log_trace(gc, ref)("Enqueued Reference: " PTR_FORMAT " (%s)", p2i(reference), reference_type_name(type));
 
   // Update statistics
   _enqueued_count.get()[type]++;
 
-  if (type != REF_FINAL) {
-    // Clear referent
-    java_lang_ref_Reference::set_referent(obj, NULL);
-  } else {
-    // For a FinalReference, don't clear the referent, because it is
-    // needed for the finalize call.  Instead, make the reference
-    // inactive by self-looping the 'next' field.  FinalReference
-    // doesn't allow Reference.enqueue, so there's no race to worry
-    // about when setting 'next'.
-    assert(java_lang_ref_Reference::next(obj) == NULL, "enqueued FinalReference");
-    java_lang_ref_Reference::set_next_raw(obj, obj);
-  }
+  // Make reference inactive
+  make_inactive(reference, type);
 
   // Return next in list
-  return (oop*)java_lang_ref_Reference::discovered_addr_raw(obj);
+  return reference_discovered_addr(reference);
 }
 
 void ZReferenceProcessor::work() {
@@ -260,13 +303,13 @@
   oop* p = list;
 
   while (*p != NULL) {
-    const oop obj = *p;
-    const ReferenceType type = reference_type(obj);
+    const oop reference = *p;
+    const ReferenceType type = reference_type(reference);
 
-    if (should_drop_reference(obj, type)) {
-      *p = drop(obj, type);
+    if (should_drop(reference, type)) {
+      *p = drop(reference, type);
     } else {
-      p = keep(obj, type);
+      p = keep(reference, type);
     }
   }
 
@@ -390,8 +433,8 @@
   ZReferenceProcessorTask task(this);
   _workers->run_concurrent(&task);
 
-  // Update soft reference clock
-  update_soft_reference_clock();
+  // Update SoftReference clock
+  soft_reference_update_clock();
 
   // Collect, log and trace statistics
   collect_statistics();
--- a/src/hotspot/share/gc/z/zReferenceProcessor.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/zReferenceProcessor.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -46,22 +46,19 @@
   ZContended<oop>      _pending_list;
   oop*                 _pending_list_tail;
 
-  void update_soft_reference_clock() const;
+  bool is_inactive(oop reference, oop referent, ReferenceType type) const;
+  bool is_strongly_live(oop referent) const;
+  bool is_softly_live(oop reference, ReferenceType type) const;
 
-  ReferenceType reference_type(oop obj) const;
-  const char* reference_type_name(ReferenceType type) const;
-  volatile oop* reference_referent_addr(oop obj) const;
-  oop reference_referent(oop obj) const;
-  bool is_inactive_final_reference(oop obj, ReferenceType type) const;
-  bool is_referent_strongly_alive_or_null(oop obj, ReferenceType type) const;
-  bool is_referent_softly_alive(oop obj, ReferenceType type) const;
-  bool should_drop_reference(oop obj, ReferenceType type) const;
-  bool should_mark_referent(ReferenceType type) const;
-  void keep_referent_alive(oop obj, ReferenceType type) const;
+  bool should_discover(oop reference, ReferenceType type) const;
+  bool should_drop(oop reference, ReferenceType type) const;
+  void keep_alive(oop reference, ReferenceType type) const;
+  void make_inactive(oop reference, ReferenceType type) const;
 
-  void discover(oop obj, ReferenceType type);
-  oop drop(oop obj, ReferenceType type);
-  oop* keep(oop obj, ReferenceType type);
+  void discover(oop reference, ReferenceType type);
+
+  oop drop(oop reference, ReferenceType type);
+  oop* keep(oop reference, ReferenceType type);
 
   bool is_empty() const;
 
--- a/src/hotspot/share/gc/z/zServiceability.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/gc/z/zServiceability.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -25,6 +25,7 @@
 #define SHARE_GC_Z_ZSERVICEABILITY_HPP
 
 #include "gc/shared/collectorCounters.hpp"
+#include "gc/shared/gcVMOperations.hpp"
 #include "memory/allocation.hpp"
 #include "services/memoryManager.hpp"
 #include "services/memoryPool.hpp"
@@ -88,12 +89,14 @@
 template <bool IsGCStart, bool IsGCEnd>
 class ZServiceabilityTracer : public StackObj {
 private:
+  SvcGCMarker                       _svc_gc_marker;
   ZServiceabilityMemoryUsageTracker _memory_usage_tracker;
   ZServiceabilityManagerStatsTracer _manager_stats_tracer;
   ZServiceabilityCountersTracer     _counters_tracer;
 
 public:
   ZServiceabilityTracer() :
+      _svc_gc_marker(SvcGCMarker::CONCURRENT),
       _memory_usage_tracker(),
       _manager_stats_tracer(IsGCStart, IsGCEnd),
       _counters_tracer() {}
--- a/src/hotspot/share/interpreter/bytecodeStream.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/bytecodeStream.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -211,7 +211,6 @@
     return _code;
   }
 
-  bool            is_active_breakpoint() const   { return Bytecodes::is_active_breakpoint_at(bcp()); }
   Bytecodes::Code code() const                   { return _code; }
 
   // Unsigned indices, widening
--- a/src/hotspot/share/interpreter/bytecodeTracer.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/bytecodeTracer.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -225,7 +225,6 @@
   int ilimit = constants->length();
   Bytecodes::Code code = raw_code();
 
-  ConstantPoolCache* cache = NULL;
   if (Bytecodes::uses_cp_cache(code)) {
     bool okay = true;
     switch (code) {
@@ -256,8 +255,7 @@
 
 bool BytecodePrinter::check_cp_cache_index(int i, int& cp_index, outputStream* st) {
   ConstantPool* constants = method()->constants();
-  int ilimit = constants->length(), climit = 0;
-  Bytecodes::Code code = raw_code();
+  int climit = 0;
 
   ConstantPoolCache* cache = constants->cache();
   // If rewriter hasn't run, the index is the cp_index
@@ -307,7 +305,6 @@
 
 
 bool BytecodePrinter::check_invokedynamic_index(int i, int& cp_index, outputStream* st) {
-  ConstantPool* constants = method()->constants();
   assert(ConstantPool::is_invokedynamic_index(i), "not secondary index?");
   i = ConstantPool::decode_invokedynamic_index(i) + ConstantPool::CPCACHE_INDEX_TAG;
 
--- a/src/hotspot/share/interpreter/bytecodes.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/bytecodes.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -380,7 +380,6 @@
   static Code       code_or_bp_at(address bcp)    { return (Code)cast(*bcp); }
 
   static Code       code_at(Method* method, int bci);
-  static bool       is_active_breakpoint_at(address bcp) { return (Code)*bcp == _breakpoint; }
 
   // find a bytecode, behind a breakpoint if necessary:
   static Code       non_breakpoint_code_at(const Method* method, address bcp);
@@ -405,18 +404,12 @@
   // if 'end' is provided, it indicates the end of the code buffer which
   // should not be read past when parsing.
   static int         special_length_at(Bytecodes::Code code, address bcp, address end = NULL);
-  static int         special_length_at(Method* method, address bcp, address end = NULL) { return special_length_at(code_at(method, bcp), bcp, end); }
   static int         raw_special_length_at(address bcp, address end = NULL);
   static int         length_for_code_at(Bytecodes::Code code, address bcp)  { int l = length_for(code); return l > 0 ? l : special_length_at(code, bcp); }
   static int         length_at      (Method* method, address bcp)  { return length_for_code_at(code_at(method, bcp), bcp); }
   static int         java_length_at (Method* method, address bcp)  { return length_for_code_at(java_code_at(method, bcp), bcp); }
   static bool        is_java_code   (Code code)    { return 0 <= code && code < number_of_java_codes; }
 
-  static bool        is_aload       (Code code)    { return (code == _aload  || code == _aload_0  || code == _aload_1
-                                                                             || code == _aload_2  || code == _aload_3); }
-  static bool        is_astore      (Code code)    { return (code == _astore || code == _astore_0 || code == _astore_1
-                                                                             || code == _astore_2 || code == _astore_3); }
-
   static bool        is_store_into_local(Code code){ return (_istore <= code && code <= _astore_3); }
   static bool        is_const       (Code code)    { return (_aconst_null <= code && code <= _ldc2_w); }
   static bool        is_zero_const  (Code code)    { return (code == _aconst_null || code == _iconst_0
@@ -433,7 +426,6 @@
     assert(code == (u_char)code, "must be a byte");
     return _flags[code + (is_wide ? (1<<BitsPerByte) : 0)];
   }
-  static int         format_bits    (Code code, bool is_wide) { return flags(code, is_wide) & _all_fmt_bits; }
   static bool        has_all_flags  (Code code, int test_flags, bool is_wide) {
     return (flags(code, is_wide) & test_flags) == test_flags;
   }
--- a/src/hotspot/share/interpreter/interpreterRuntime.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/interpreterRuntime.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -135,11 +135,6 @@
   frame& get_frame()                             { return _last_frame; }
 };
 
-
-bool InterpreterRuntime::is_breakpoint(JavaThread *thread) {
-  return Bytecodes::code_or_bp_at(LastFrameAccessor(thread).bcp()) == Bytecodes::_breakpoint;
-}
-
 //------------------------------------------------------------------------------------------------------------------------
 // State accessors
 
--- a/src/hotspot/share/interpreter/interpreterRuntime.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/interpreterRuntime.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -126,7 +126,6 @@
   static void _breakpoint(JavaThread* thread, Method* method, address bcp);
   static Bytecodes::Code get_original_bytecode_at(JavaThread* thread, Method* method, address bcp);
   static void            set_original_bytecode_at(JavaThread* thread, Method* method, address bcp, Bytecodes::Code new_code);
-  static bool is_breakpoint(JavaThread *thread);
 
   // Safepoints
   static void    at_safepoint(JavaThread* thread);
--- a/src/hotspot/share/interpreter/invocationCounter.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/invocationCounter.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -78,9 +78,6 @@
 
 int                       InvocationCounter::_init  [InvocationCounter::number_of_states];
 InvocationCounter::Action InvocationCounter::_action[InvocationCounter::number_of_states];
-int                       InvocationCounter::InterpreterInvocationLimit;
-int                       InvocationCounter::InterpreterBackwardBranchLimit;
-int                       InvocationCounter::InterpreterProfileLimit;
 
 
 const char* InvocationCounter::state_as_string(State state) {
@@ -135,26 +132,6 @@
   guarantee((int)number_of_states <= (int)state_limit, "adjust number_of_state_bits");
   def(wait_for_nothing, 0, do_nothing);
   def(wait_for_compile, 0, do_decay);
-
-  InterpreterInvocationLimit = CompileThreshold << number_of_noncount_bits;
-  InterpreterProfileLimit = ((CompileThreshold * InterpreterProfilePercentage) / 100)<< number_of_noncount_bits;
-
-  // When methodData is collected, the backward branch limit is compared against a
-  // methodData counter, rather than an InvocationCounter.  In the former case, we
-  // don't need the shift by number_of_noncount_bits, but we do need to adjust
-  // the factor by which we scale the threshold.
-  if (ProfileInterpreter) {
-    InterpreterBackwardBranchLimit = (int)((int64_t)CompileThreshold * (OnStackReplacePercentage - InterpreterProfilePercentage) / 100);
-  } else {
-    InterpreterBackwardBranchLimit = (int)(((int64_t)CompileThreshold * OnStackReplacePercentage / 100) << number_of_noncount_bits);
-  }
-
-  assert(0 <= InterpreterBackwardBranchLimit,
-         "OSR threshold should be non-negative");
-  assert(0 <= InterpreterProfileLimit &&
-         InterpreterProfileLimit <= InterpreterInvocationLimit,
-         "profile threshold should be less than the compilation threshold "
-         "and non-negative");
 }
 
 void invocationCounter_init() {
--- a/src/hotspot/share/interpreter/invocationCounter.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/invocationCounter.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -57,10 +57,6 @@
   };
 
  public:
-  static int InterpreterInvocationLimit;        // CompileThreshold scaled for interpreter use
-  static int InterpreterBackwardBranchLimit;    // A separate threshold for on stack replacement
-  static int InterpreterProfileLimit;           // Profiling threshold scaled for interpreter use
-
   typedef address (*Action)(const methodHandle& method, TRAPS);
 
   enum PublicConstants {
@@ -95,10 +91,6 @@
   Action action() const                          { return _action[state()]; }
   int    count() const                           { return _counter >> number_of_noncount_bits; }
 
-  int   get_InvocationLimit() const              { return InterpreterInvocationLimit >> number_of_noncount_bits; }
-  int   get_BackwardBranchLimit() const          { return InterpreterBackwardBranchLimit >> number_of_noncount_bits; }
-  int   get_ProfileLimit() const                 { return InterpreterProfileLimit >> number_of_noncount_bits; }
-
 #ifdef CC_INTERP
   // Test counter using scaled limits like the asm interpreter would do rather than doing
   // the shifts to normalize the counter.
--- a/src/hotspot/share/interpreter/linkResolver.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/interpreter/linkResolver.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -710,15 +710,16 @@
     stringStream ss;
     const char* failed_type_name = failed_type_symbol->as_klass_external_name();
 
-    ss.print("loader constraint violation: when resolving field"
-             " \"%s\" of type %s, the class loader %s of the current class, "
-             "%s, and the class loader %s for the field's defining "
-             "type, %s, have different Class objects for type %s (%s; %s)",
+    ss.print("loader constraint violation: when resolving field \"%s\" of type %s, "
+             "the class loader %s of the current class, %s, "
+             "and the class loader %s for the field's defining %s, %s, "
+             "have different Class objects for type %s (%s; %s)",
              field->as_C_string(),
              failed_type_name,
              current_klass->class_loader_data()->loader_name_and_id(),
              current_klass->external_name(),
              sel_klass->class_loader_data()->loader_name_and_id(),
+             sel_klass->external_kind(),
              sel_klass->external_name(),
              failed_type_name,
              current_klass->class_in_module_of_loader(false, true),
--- a/src/hotspot/share/jvmci/jvmciEnv.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/jvmci/jvmciEnv.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -63,9 +63,30 @@
 {
   // Get Jvmti capabilities under lock to get consistent values.
   MutexLocker mu(JvmtiThreadState_lock);
-  _jvmti_can_hotswap_or_post_breakpoint = JvmtiExport::can_hotswap_or_post_breakpoint();
-  _jvmti_can_access_local_variables     = JvmtiExport::can_access_local_variables();
-  _jvmti_can_post_on_exceptions         = JvmtiExport::can_post_on_exceptions();
+  _jvmti_can_hotswap_or_post_breakpoint = JvmtiExport::can_hotswap_or_post_breakpoint() ? 1 : 0;
+  _jvmti_can_access_local_variables     = JvmtiExport::can_access_local_variables() ? 1 : 0;
+  _jvmti_can_post_on_exceptions         = JvmtiExport::can_post_on_exceptions() ? 1 : 0;
+  _jvmti_can_pop_frame                  = JvmtiExport::can_pop_frame() ? 1 : 0;
+}
+
+bool JVMCIEnv::jvmti_state_changed() const {
+  if (!jvmti_can_access_local_variables() &&
+      JvmtiExport::can_access_local_variables()) {
+    return true;
+  }
+  if (!jvmti_can_hotswap_or_post_breakpoint() &&
+      JvmtiExport::can_hotswap_or_post_breakpoint()) {
+    return true;
+  }
+  if (!jvmti_can_post_on_exceptions() &&
+      JvmtiExport::can_post_on_exceptions()) {
+    return true;
+  }
+  if (!jvmti_can_pop_frame() &&
+      JvmtiExport::can_pop_frame()) {
+    return true;
+  }
+  return false;
 }
 
 // ------------------------------------------------------------------
@@ -413,11 +434,9 @@
 JVMCIEnv::CodeInstallResult JVMCIEnv::validate_compile_task_dependencies(Dependencies* dependencies, Handle compiled_code,
                                                                          JVMCIEnv* env, char** failure_detail) {
   // If JVMTI capabilities were enabled during compile, the compilation is invalidated.
-  if (env != NULL) {
-    if (!env->_jvmti_can_hotswap_or_post_breakpoint && JvmtiExport::can_hotswap_or_post_breakpoint()) {
-      *failure_detail = (char*) "Hotswapping or breakpointing was enabled during compilation";
-      return JVMCIEnv::dependencies_failed;
-    }
+  if (env != NULL && env->jvmti_state_changed()) {
+    *failure_detail = (char*) "Jvmti state change during compilation invalidated dependencies";
+    return JVMCIEnv::dependencies_failed;
   }
 
   // Dependencies must be checked when the system dictionary changes
--- a/src/hotspot/share/jvmci/jvmciEnv.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/jvmci/jvmciEnv.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -105,10 +105,13 @@
   // Specifies if _failure_reason is on the C heap.
   bool             _failure_reason_on_C_heap;
 
-  // Cache JVMTI state
-  bool  _jvmti_can_hotswap_or_post_breakpoint;
-  bool  _jvmti_can_access_local_variables;
-  bool  _jvmti_can_post_on_exceptions;
+  // Cache JVMTI state. Defined as bytes so that reading them from Java
+  // via Unsafe is well defined (the C++ type for bool is implementation
+  // defined and may not be the same as a Java boolean).
+  jbyte  _jvmti_can_hotswap_or_post_breakpoint;
+  jbyte  _jvmti_can_access_local_variables;
+  jbyte  _jvmti_can_post_on_exceptions;
+  jbyte  _jvmti_can_pop_frame;
 
   // Implementation methods for loading and constant pool access.
   static Klass* get_klass_by_name_impl(Klass* accessing_klass,
@@ -147,6 +150,12 @@
 public:
   CompileTask* task() { return _task; }
 
+  bool  jvmti_state_changed() const;
+  bool  jvmti_can_hotswap_or_post_breakpoint() const { return  _jvmti_can_hotswap_or_post_breakpoint != 0; }
+  bool  jvmti_can_access_local_variables() const     { return  _jvmti_can_access_local_variables != 0; }
+  bool  jvmti_can_post_on_exceptions() const         { return  _jvmti_can_post_on_exceptions != 0; }
+  bool  jvmti_can_pop_frame() const                  { return  _jvmti_can_pop_frame != 0; }
+
   const char* failure_reason() { return _failure_reason; }
   bool failure_reason_on_C_heap() { return _failure_reason_on_C_heap; }
   bool retryable() { return _retryable; }
--- a/src/hotspot/share/jvmci/vmStructs_jvmci.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/jvmci/vmStructs_jvmci.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -182,13 +182,17 @@
   nonstatic_field(JavaThread,                  _pending_failed_speculation,                   long)                                  \
   nonstatic_field(JavaThread,                  _pending_transfer_to_interpreter,              bool)                                  \
   nonstatic_field(JavaThread,                  _jvmci_counters,                               jlong*)                                \
+  nonstatic_field(JavaThread,                  _should_post_on_exceptions_flag,               int)                                   \
   nonstatic_field(JavaThread,                  _reserved_stack_activation,                    address)                               \
                                                                                                                                      \
   static_field(java_lang_Class,                _klass_offset,                                 int)                                   \
   static_field(java_lang_Class,                _array_klass_offset,                           int)                                   \
                                                                                                                                      \
   nonstatic_field(JVMCIEnv,                    _task,                                         CompileTask*)                          \
-  nonstatic_field(JVMCIEnv,                    _jvmti_can_hotswap_or_post_breakpoint,         bool)                                  \
+  nonstatic_field(JVMCIEnv,                    _jvmti_can_hotswap_or_post_breakpoint,         jbyte)                                 \
+  nonstatic_field(JVMCIEnv,                    _jvmti_can_access_local_variables,             jbyte)                                 \
+  nonstatic_field(JVMCIEnv,                    _jvmti_can_post_on_exceptions,                 jbyte)                                 \
+  nonstatic_field(JVMCIEnv,                    _jvmti_can_pop_frame,                          jbyte)                                 \
                                                                                                                                      \
   nonstatic_field(InvocationCounter,           _counter,                                      unsigned int)                          \
                                                                                                                                      \
--- a/src/hotspot/share/libadt/set.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/libadt/set.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -35,22 +35,8 @@
 
 //-------------------------Virtual Functions-----------------------------------
 // These functions MUST be implemented by the inheriting class.
-class SparseSet;
-/* Removed for MCC BUG
-   Set::operator const SparseSet*() const { assert(0); return NULL; } */
-const SparseSet *Set::asSparseSet() const { assert(0); return NULL; }
 class VectorSet;
-/* Removed for MCC BUG
-   Set::operator const VectorSet*() const { assert(0); return NULL; } */
 const VectorSet *Set::asVectorSet() const { assert(0); return NULL; }
-class ListSet;
-/* Removed for MCC BUG
-   Set::operator const ListSet*() const { assert(0); return NULL; } */
-const ListSet *Set::asListSet() const { assert(0); return NULL; }
-class CoSet;
-/* Removed for MCC BUG
-   Set::operator const CoSet*() const { assert(0); return NULL; } */
-const CoSet *Set::asCoSet() const { assert(0); return NULL; }
 
 //------------------------------setstr-----------------------------------------
 // Create a string with a printable representation of a set.
--- a/src/hotspot/share/libadt/set.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/libadt/set.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -164,9 +164,6 @@
   virtual int operator <=(const Set &s) const=0;
   int operator >=(const Set &s) const { return s <= *this; }
 
-  // Return any member of the Set.  Undefined if the Set is empty.
-  virtual uint getelem(void) const=0;
-
   // Clear all the elements in the Set
   virtual void Clear(void)=0;
 
@@ -188,15 +185,7 @@
   virtual int parse(const char *s);
 
   // Convert a generic Set to a specific Set
-  /* Removed for MCC BUG
-     virtual operator const SparseSet* (void) const;
-     virtual operator const VectorSet* (void) const;
-     virtual operator const ListSet  * (void) const;
-     virtual operator const CoSet    * (void) const; */
-  virtual const SparseSet *asSparseSet(void) const;
   virtual const VectorSet *asVectorSet(void) const;
-  virtual const ListSet   *asListSet  (void) const;
-  virtual const CoSet     *asCoSet    (void) const;
 
   // Hash the set.  Sets of different types but identical elements will NOT
   // hash the same.  Same set type, same elements WILL hash the same.
@@ -204,16 +193,11 @@
 
 protected:
   friend class SetI;
-  friend class CoSet;
   virtual class SetI_ *iterate(uint&) const=0;
 
   // Need storeage for the set
   Arena *_set_arena;
 };
-typedef Set&((*Set_Constructor)(Arena *arena));
-extern Set &ListSet_Construct(Arena *arena);
-extern Set &VectorSet_Construct(Arena *arena);
-extern Set &SparseSet_Construct(Arena *arena);
 
 //------------------------------Iteration--------------------------------------
 // Loop thru all elements of the set, setting "elem" to the element numbers
--- a/src/hotspot/share/libadt/vectset.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/libadt/vectset.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -60,12 +60,6 @@
   data[1] = 0;
 }
 
-//------------------------------Construct--------------------------------------
-Set &VectorSet_Construct(Arena *arena)
-{
-  return *(new VectorSet(arena));
-}
-
 //------------------------------operator=--------------------------------------
 Set &VectorSet::operator = (const Set &set)
 {
@@ -293,20 +287,6 @@
   return ((data[word] & mask))!=0;    // Return the sense of the bit
 }
 
-//------------------------------getelem----------------------------------------
-// Get any element from the set.
-uint VectorSet::getelem(void) const
-{
-  uint i;                       // Exit value of loop
-  for( i=0; i<size; i++ )
-    if( data[i] )
-      break;
-  uint32_t word = data[i];
-  int j;                        // Exit value of loop
-  for( j= -1; word; j++, word>>=1 );
-  return (i<<5)+j;
-}
-
 //------------------------------Clear------------------------------------------
 // Clear a set
 void VectorSet::Clear(void)
--- a/src/hotspot/share/libadt/vectset.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/libadt/vectset.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -95,7 +95,6 @@
   int disjoint   (const Set       &s) const;  // True if sets are disjoint
 
   int operator [](uint elem) const; // Test for membership
-  uint getelem(void) const;         // Return a random element
   void Clear(void);                 // Clear a set
   uint Size(void) const;            // Number of elements in the Set.
   void Sort(void);                  // Sort before iterating
@@ -110,7 +109,6 @@
 
   // Expose internals for speed-critical fast iterators
   uint word_size() const { return size; }
-  uint32_t* EXPOSE() const { return data; }
 
   // Fast inlined "test and set".  Replaces the idiom:
   //     if( visited[idx] ) return;
--- a/src/hotspot/share/logging/logPrefix.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/logging/logPrefix.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -79,7 +79,6 @@
   LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, ref, start)) \
   LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, reloc)) \
   LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, start)) \
-  LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, stringtable)) \
   LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, symboltable)) \
   LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, sweep)) \
   LOG_PREFIX(GCId::print_prefix, LOG_TAGS(gc, task)) \
--- a/src/hotspot/share/memory/binaryTreeDictionary.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/binaryTreeDictionary.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -120,7 +120,6 @@
   // node to point to the new node.
   TreeList<Chunk_t, FreeList_t>* remove_chunk_replace_if_needed(TreeChunk<Chunk_t, FreeList_t>* tc);
   // See FreeList.
-  void return_chunk_at_head(TreeChunk<Chunk_t, FreeList_t>* tc);
   void return_chunk_at_tail(TreeChunk<Chunk_t, FreeList_t>* tc);
 };
 
@@ -236,7 +235,6 @@
   size_t     num_free_blocks()  const;
   size_t     tree_height() const;
   size_t     tree_height_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
-  size_t     total_nodes_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
   size_t     total_nodes_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
 
  public:
--- a/src/hotspot/share/memory/binaryTreeDictionary.inline.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/binaryTreeDictionary.inline.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -245,35 +245,6 @@
   assert(tail() == NULL || tail()->next() == NULL, "list invariant");
 }
 
-// Add this chunk at the head of the list.  "At the head of the list"
-// is defined to be after the chunk pointer to by head().  This is
-// because the TreeList<Chunk_t, FreeList_t> is embedded in the first TreeChunk<Chunk_t, FreeList_t> in the
-// list.  See the definition of TreeChunk<Chunk_t, FreeList_t>.
-template <class Chunk_t, class FreeList_t>
-void TreeList<Chunk_t, FreeList_t>::return_chunk_at_head(TreeChunk<Chunk_t, FreeList_t>* chunk) {
-  assert(chunk->list() == this, "list should be set for chunk");
-  assert(head() != NULL, "The tree list is embedded in the first chunk");
-  assert(chunk != NULL, "returning NULL chunk");
-  // This is expensive for metaspace
-  assert(!FLSVerifyDictionary || !this->verify_chunk_in_free_list(chunk), "Double entry");
-  assert(head() == NULL || head()->prev() == NULL, "list invariant");
-  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
-
-  Chunk_t* fc = head()->next();
-  if (fc != NULL) {
-    chunk->link_after(fc);
-  } else {
-    assert(tail() == NULL, "List is inconsistent");
-    this->link_tail(chunk);
-  }
-  head()->link_after(chunk);
-  assert(!head() || size() == head()->size(), "Wrong sized chunk in list");
-  FreeList_t::increment_count();
-  debug_only(this->increment_returned_bytes_by(chunk->size()*sizeof(HeapWord));)
-  assert(head() == NULL || head()->prev() == NULL, "list invariant");
-  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
-}
-
 template <class Chunk_t, class FreeList_t>
 void TreeChunk<Chunk_t, FreeList_t>::assert_is_mangled() const {
   assert((ZapUnusedHeapArea &&
@@ -799,11 +770,6 @@
     total_nodes_helper(tl->right());
 }
 
-template <class Chunk_t, class FreeList_t>
-size_t BinaryTreeDictionary<Chunk_t, FreeList_t>::total_nodes_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const {
-  return total_nodes_helper(root());
-}
-
 // Searches the tree for a chunk that ends at the
 // specified address.
 template <class Chunk_t, class FreeList_t>
--- a/src/hotspot/share/memory/heapShared.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/heapShared.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -191,9 +191,6 @@
   static void verify_subgraph_from(oop orig_obj) PRODUCT_RETURN;
 
   static KlassSubGraphInfo* get_subgraph_info(Klass *k);
-  static int num_of_subgraph_infos();
-
-  static void build_archived_subgraph_info_records(int num_records);
 
   static void init_subgraph_entry_fields(ArchivableStaticFieldInfo fields[],
                                          int num, Thread* THREAD);
@@ -321,10 +318,6 @@
 
   inline static bool is_archived_object(oop p) NOT_CDS_JAVA_HEAP_RETURN_(false);
 
-  static void archive_java_heap_objects() NOT_CDS_JAVA_HEAP_RETURN;
-
-  static char* read_archived_subgraph_infos(char* buffer) NOT_CDS_JAVA_HEAP_RETURN_(buffer);
-  static void write_archived_subgraph_infos() NOT_CDS_JAVA_HEAP_RETURN;
   static void initialize_from_archived_subgraph(Klass* k) NOT_CDS_JAVA_HEAP_RETURN;
 
   // NarrowOops stored in the CDS archive may use a different encoding scheme
--- a/src/hotspot/share/memory/metaspace.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/metaspace.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -873,19 +873,6 @@
   return vsn;
 }
 
-bool MetaspaceUtils::is_in_committed(const void* p) {
-#if INCLUDE_CDS
-  if (UseSharedSpaces) {
-    for (int idx = MetaspaceShared::ro; idx <= MetaspaceShared::mc; idx++) {
-      if (FileMapInfo::current_info()->is_in_shared_region(p, idx)) {
-        return true;
-      }
-    }
-  }
-#endif
-  return find_enclosing_virtual_space(p) != NULL;
-}
-
 bool MetaspaceUtils::is_range_in_committed(const void* from, const void* to) {
 #if INCLUDE_CDS
   if (UseSharedSpaces) {
--- a/src/hotspot/share/memory/metaspace.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/metaspace.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -333,7 +333,6 @@
   // Utils to check if a pointer or range is part of a committed metaspace region
   // without acquiring any locks.
   static metaspace::VirtualSpaceNode* find_enclosing_virtual_space(const void* p);
-  static bool is_in_committed(const void* p);
   static bool is_range_in_committed(const void* from, const void* to);
 
 public:
@@ -387,9 +386,6 @@
   }
 
   static size_t min_chunk_size_words();
-  static size_t min_chunk_size_bytes() {
-    return min_chunk_size_words() * BytesPerWord;
-  }
 
   // Flags for print_report().
   enum ReportFlag {
--- a/src/hotspot/share/memory/metaspaceShared.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/metaspaceShared.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -218,10 +218,6 @@
   return _ro_region.allocate(num_bytes);
 }
 
-char* MetaspaceShared::read_only_space_top() {
-  return _ro_region.top();
-}
-
 void MetaspaceShared::initialize_runtime_shared_and_meta_spaces() {
   assert(UseSharedSpaces, "Must be called when UseSharedSpaces is enabled");
 
--- a/src/hotspot/share/memory/metaspaceShared.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/metaspaceShared.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -168,14 +168,11 @@
 
   static bool try_link_class(InstanceKlass* ik, TRAPS);
   static void link_and_cleanup_shared_classes(TRAPS);
-  static void check_shared_class_loader_type(InstanceKlass* ik);
 
   // Allocate a block of memory from the "mc", "ro", or "rw" regions.
   static char* misc_code_space_alloc(size_t num_bytes);
   static char* read_only_space_alloc(size_t num_bytes);
 
-  static char* read_only_space_top();
-
   template <typename T>
   static Array<T>* new_ro_array(int length) {
 #if INCLUDE_CDS
--- a/src/hotspot/share/memory/universe.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/universe.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1286,14 +1286,6 @@
 #endif // PRODUCT
 
 
-void Universe::compute_verify_oop_data() {
-  verify_oop_mask();
-  verify_oop_bits();
-  verify_mark_mask();
-  verify_mark_bits();
-}
-
-
 void LatestMethodCache::init(Klass* k, Method* m) {
   if (!UseSharedSpaces) {
     _klass = k;
--- a/src/hotspot/share/memory/universe.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/universe.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -258,7 +258,6 @@
   static uintptr_t _verify_oop_bits;
 
   static void calculate_verify_data(HeapWord* low_boundary, HeapWord* high_boundary) PRODUCT_RETURN;
-  static void compute_verify_oop_data();
 
  public:
   // Known classes in the VM
@@ -392,8 +391,6 @@
   };
   static NARROW_OOP_MODE narrow_oop_mode();
   static const char* narrow_oop_mode_to_string(NARROW_OOP_MODE mode);
-  static char*    preferred_heap_base(size_t heap_size, size_t alignment, NARROW_OOP_MODE mode);
-  static char*    preferred_metaspace_base(size_t heap_size, NARROW_OOP_MODE mode);
   static address  narrow_oop_base()                  { return  _narrow_oop._base; }
   // Test whether bits of addr and possible offsets into the heap overlap.
   static bool     is_disjoint_heap_base_address(address addr) {
@@ -416,10 +413,8 @@
 
   // For UseCompressedClassPointers
   static address  narrow_klass_base()                     { return  _narrow_klass._base; }
-  static bool  is_narrow_klass_base(void* addr)           { return (narrow_klass_base() == (address)addr); }
   static uint64_t narrow_klass_range()                    { return  _narrow_klass_range; }
   static int      narrow_klass_shift()                    { return  _narrow_klass._shift; }
-  static bool     narrow_klass_use_implicit_null_checks() { return  _narrow_klass._use_implicit_null_checks; }
 
   static address* narrow_ptrs_base_addr()                 { return &_narrow_ptrs_base; }
   static void     set_narrow_ptrs_base(address a)         { _narrow_ptrs_base = a; }
@@ -441,7 +436,6 @@
   static ReservedSpace reserve_heap(size_t heap_size, size_t alignment);
 
   // Historic gc information
-  static size_t get_heap_capacity_at_last_gc()         { return _heap_capacity_at_last_gc; }
   static size_t get_heap_free_at_last_gc()             { return _heap_capacity_at_last_gc - _heap_used_at_last_gc; }
   static size_t get_heap_used_at_last_gc()             { return _heap_used_at_last_gc; }
   static void update_heap_info_at_gc();
@@ -517,25 +511,4 @@
   static int base_vtable_size()               { return _base_vtable_size; }
 };
 
-class DeferredObjAllocEvent : public CHeapObj<mtInternal> {
-  private:
-    oop    _oop;
-    size_t _bytesize;
-    jint   _arena_id;
-
-  public:
-    DeferredObjAllocEvent(const oop o, const size_t s, const jint id) {
-      _oop      = o;
-      _bytesize = s;
-      _arena_id = id;
-    }
-
-    ~DeferredObjAllocEvent() {
-    }
-
-    jint   arena_id() { return _arena_id; }
-    size_t bytesize() { return _bytesize; }
-    oop    get_oop()  { return _oop; }
-};
-
 #endif // SHARE_MEMORY_UNIVERSE_HPP
--- a/src/hotspot/share/memory/virtualspace.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/virtualspace.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -266,11 +266,6 @@
 }
 
 
-size_t ReservedSpace::allocation_align_size_down(size_t size) {
-  return align_down(size, os::vm_allocation_granularity());
-}
-
-
 void ReservedSpace::release() {
   if (is_reserved()) {
     char *real_base = _base - _noaccess_prefix;
--- a/src/hotspot/share/memory/virtualspace.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/memory/virtualspace.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -88,7 +88,6 @@
   static size_t page_align_size_up(size_t size);
   static size_t page_align_size_down(size_t size);
   static size_t allocation_align_size_up(size_t size);
-  static size_t allocation_align_size_down(size_t size);
   bool contains(const void* p) const {
     return (base() <= ((char*)p)) && (((char*)p) < (base() + size()));
   }
--- a/src/hotspot/share/oops/compiledICHolder.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/oops/compiledICHolder.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -65,9 +65,6 @@
   Klass*    holder_klass()  const     { return _holder_klass; }
   Metadata* holder_metadata() const   { return _holder_metadata; }
 
-  void set_holder_metadata(Metadata* m) { _holder_metadata = m; }
-  void set_holder_klass(Klass* k)     { _holder_klass = k; }
-
   static int holder_metadata_offset() { return offset_of(CompiledICHolder, _holder_metadata); }
   static int holder_klass_offset()    { return offset_of(CompiledICHolder, _holder_klass); }
 
--- a/src/hotspot/share/oops/method.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/oops/method.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1604,12 +1604,12 @@
 
 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
 // default_methods also uses this without the ordering for fast find_method
-void Method::sort_methods(Array<Method*>* methods, bool idempotent, bool set_idnums) {
+void Method::sort_methods(Array<Method*>* methods, bool set_idnums) {
   int length = methods->length();
   if (length > 1) {
     {
       NoSafepointVerifier nsv;
-      QuickSort::sort(methods->data(), length, method_comparator, idempotent);
+      QuickSort::sort(methods->data(), length, method_comparator, /*idempotent=*/false);
     }
     // Reset method ordering
     if (set_idnums) {
--- a/src/hotspot/share/oops/method.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/oops/method.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -969,7 +969,7 @@
 #endif
 
   // Helper routine used for method sorting
-  static void sort_methods(Array<Method*>* methods, bool idempotent = false, bool set_idnums = true);
+  static void sort_methods(Array<Method*>* methods, bool set_idnums = true);
 
   // Deallocation function for redefine classes or if an error occurs
   void deallocate_contents(ClassLoaderData* loader_data);
--- a/src/hotspot/share/opto/callGenerator.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/callGenerator.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -46,9 +46,17 @@
   return TypeFunc::make(method());
 }
 
-bool CallGenerator::is_inlined_method_handle_intrinsic(JVMState* jvms, ciMethod* callee) {
-  ciMethod* symbolic_info = jvms->method()->get_method_at_bci(jvms->bci());
-  return symbolic_info->is_method_handle_intrinsic() && !callee->is_method_handle_intrinsic();
+bool CallGenerator::is_inlined_method_handle_intrinsic(JVMState* jvms, ciMethod* m) {
+  return is_inlined_method_handle_intrinsic(jvms->method(), jvms->bci(), m);
+}
+
+bool CallGenerator::is_inlined_method_handle_intrinsic(ciMethod* caller, int bci, ciMethod* m) {
+  ciMethod* symbolic_info = caller->get_method_at_bci(bci);
+  return is_inlined_method_handle_intrinsic(symbolic_info, m);
+}
+
+bool CallGenerator::is_inlined_method_handle_intrinsic(ciMethod* symbolic_info, ciMethod* m) {
+  return symbolic_info->is_method_handle_intrinsic() && !m->is_method_handle_intrinsic();
 }
 
 //-----------------------------ParseGenerator---------------------------------
@@ -90,7 +98,6 @@
   // Grab signature for matching/allocation
 #ifdef ASSERT
   if (parser.tf() != (parser.depth() == 1 ? C->tf() : tf())) {
-    MutexLockerEx ml(Compile_lock, Mutex::_no_safepoint_check_flag);
     assert(C->env()->system_dictionary_modification_counter_changed(),
            "Must invalidate if TypeFuncs differ");
   }
@@ -889,7 +896,8 @@
           const TypeOopPtr* arg_type = arg->bottom_type()->isa_oopptr();
           const Type*       sig_type = TypeOopPtr::make_from_klass(signature->accessing_klass());
           if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
-            Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, sig_type));
+            const Type* recv_type = arg_type->join_speculative(sig_type); // keep speculative part
+            Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, recv_type));
             kit.set_argument(0, cast_obj);
           }
         }
@@ -901,7 +909,8 @@
             const TypeOopPtr* arg_type = arg->bottom_type()->isa_oopptr();
             const Type*       sig_type = TypeOopPtr::make_from_klass(t->as_klass());
             if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
-              Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, sig_type));
+              const Type* narrowed_arg_type = arg_type->join_speculative(sig_type); // keep speculative part
+              Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, narrowed_arg_type));
               kit.set_argument(receiver_skip + j, cast_obj);
             }
           }
--- a/src/hotspot/share/opto/callGenerator.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/callGenerator.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -176,6 +176,8 @@
   }
 
   static bool is_inlined_method_handle_intrinsic(JVMState* jvms, ciMethod* m);
+  static bool is_inlined_method_handle_intrinsic(ciMethod* caller, int bci, ciMethod* m);
+  static bool is_inlined_method_handle_intrinsic(ciMethod* symbolic_info, ciMethod* m);
 };
 
 
--- a/src/hotspot/share/opto/callnode.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/callnode.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -967,6 +967,21 @@
   return CallNode::cmp(call) && _method == call._method &&
          _override_symbolic_info == call._override_symbolic_info;
 }
+#ifdef ASSERT
+bool CallJavaNode::validate_symbolic_info() const {
+  if (method() == NULL) {
+    return true; // call into runtime or uncommon trap
+  }
+  ciMethod* symbolic_info = jvms()->method()->get_method_at_bci(_bci);
+  ciMethod* callee = method();
+  if (symbolic_info->is_method_handle_intrinsic() && !callee->is_method_handle_intrinsic()) {
+    assert(override_symbolic_info(), "should be set");
+  }
+  assert(ciMethod::is_consistent_info(symbolic_info, callee), "inconsistent info");
+  return true;
+}
+#endif
+
 #ifndef PRODUCT
 void CallJavaNode::dump_spec(outputStream *st) const {
   if( _method ) _method->print_short_name(st);
--- a/src/hotspot/share/opto/callnode.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/callnode.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -683,6 +683,8 @@
   void  set_override_symbolic_info(bool f) { _override_symbolic_info = f; }
   bool  override_symbolic_info() const     { return _override_symbolic_info; }
 
+  DEBUG_ONLY( bool validate_symbolic_info() const; )
+
 #ifndef PRODUCT
   virtual void  dump_spec(outputStream *st) const;
   virtual void  dump_compact_spec(outputStream *st) const;
--- a/src/hotspot/share/opto/chaitin.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/chaitin.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -749,14 +749,6 @@
       LRG& lrg = lrgs(vreg);
       if (vreg) {              // No vreg means un-allocable (e.g. memory)
 
-        // Collect has-copy bit
-        if (idx) {
-          lrg._has_copy = 1;
-          uint clidx = _lrg_map.live_range_id(n->in(idx));
-          LRG& copy_src = lrgs(clidx);
-          copy_src._has_copy = 1;
-        }
-
         // Check for float-vs-int live range (used in register-pressure
         // calculations)
         const Type *n_type = n->bottom_type();
@@ -775,6 +767,17 @@
         }
 
 #ifndef PRODUCT
+        // Collect bits not used by product code, but which may be useful for
+        // debugging.
+
+        // Collect has-copy bit
+        if (idx) {
+          lrg._has_copy = 1;
+          uint clidx = _lrg_map.live_range_id(n->in(idx));
+          LRG& copy_src = lrgs(clidx);
+          copy_src._has_copy = 1;
+        }
+
         if (trace_spilling() && lrg._def != NULL) {
           // collect defs for MultiDef printing
           if (lrg._defs == NULL) {
@@ -1109,8 +1112,6 @@
 #endif
 }
 
-#define REGISTER_CONSTRAINED 16
-
 // Compute cost/area ratio, in case we spill.  Build the lo-degree list.
 void PhaseChaitin::cache_lrg_info( ) {
   Compile::TracePhase tp("chaitinCacheLRG", &timers[_t_chaitinCacheLRG]);
@@ -1145,56 +1146,6 @@
   }
 }
 
-// Simplify the IFG by removing LRGs of low degree that have NO copies
-void PhaseChaitin::Pre_Simplify( ) {
-
-  // Warm up the lo-degree no-copy list
-  int lo_no_copy = 0;
-  for (uint i = 1; i < _lrg_map.max_lrg_id(); i++) {
-    if ((lrgs(i).lo_degree() && !lrgs(i)._has_copy) ||
-        !lrgs(i).alive() ||
-        lrgs(i)._must_spill) {
-      lrgs(i)._next = lo_no_copy;
-      lo_no_copy = i;
-    }
-  }
-
-  while( lo_no_copy ) {
-    uint lo = lo_no_copy;
-    lo_no_copy = lrgs(lo)._next;
-    int size = lrgs(lo).num_regs();
-
-    // Put the simplified guy on the simplified list.
-    lrgs(lo)._next = _simplified;
-    _simplified = lo;
-
-    // Yank this guy from the IFG.
-    IndexSet *adj = _ifg->remove_node( lo );
-
-    // If any neighbors' degrees fall below their number of
-    // allowed registers, then put that neighbor on the low degree
-    // list.  Note that 'degree' can only fall and 'numregs' is
-    // unchanged by this action.  Thus the two are equal at most once,
-    // so LRGs hit the lo-degree worklists at most once.
-    IndexSetIterator elements(adj);
-    uint neighbor;
-    while ((neighbor = elements.next()) != 0) {
-      LRG *n = &lrgs(neighbor);
-      assert( _ifg->effective_degree(neighbor) == n->degree(), "" );
-
-      // Check for just becoming of-low-degree
-      if( n->just_lo_degree() && !n->_has_copy ) {
-        assert(!(*_ifg->_yanked)[neighbor],"Cannot move to lo degree twice");
-        // Put on lo-degree list
-        n->_next = lo_no_copy;
-        lo_no_copy = neighbor;
-      }
-    }
-  } // End of while lo-degree no_copy worklist not empty
-
-  // No more lo-degree no-copy live ranges to simplify
-}
-
 // Simplify the IFG by removing LRGs of low degree.
 void PhaseChaitin::Simplify( ) {
   Compile::TracePhase tp("chaitinSimplify", &timers[_t_chaitinSimplify]);
@@ -1616,18 +1567,6 @@
   return spill_reg-LRG::SPILL_REG;      // Return number of spills
 }
 
-// Copy 'was_spilled'-edness from the source Node to the dst Node.
-void PhaseChaitin::copy_was_spilled( Node *src, Node *dst ) {
-  if( _spilled_once.test(src->_idx) ) {
-    _spilled_once.set(dst->_idx);
-    lrgs(_lrg_map.find(dst))._was_spilled1 = 1;
-    if( _spilled_twice.test(src->_idx) ) {
-      _spilled_twice.set(dst->_idx);
-      lrgs(_lrg_map.find(dst))._was_spilled2 = 1;
-    }
-  }
-}
-
 // Set the 'spilled_once' or 'spilled_twice' flag on a node.
 void PhaseChaitin::set_was_spilled( Node *n ) {
   if( _spilled_once.test_set(n->_idx) )
--- a/src/hotspot/share/opto/chaitin.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/chaitin.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -35,12 +35,11 @@
 #include "opto/regmask.hpp"
 #include "opto/machnode.hpp"
 
-class LoopTree;
 class Matcher;
 class PhaseCFG;
 class PhaseLive;
 class PhaseRegAlloc;
-class   PhaseChaitin;
+class PhaseChaitin;
 
 #define OPTO_DEBUG_SPLIT_FREQ  BLOCK_FREQUENCY(0.001)
 #define OPTO_LRG_HIGH_FREQ     BLOCK_FREQUENCY(0.25)
@@ -136,7 +135,6 @@
 
   void Insert( OptoReg::Name reg ) { _mask.Insert(reg);  debug_only(_msize_valid=0;) }
   void Remove( OptoReg::Name reg ) { _mask.Remove(reg);  debug_only(_msize_valid=0;) }
-  void clear_to_pairs() { _mask.clear_to_pairs(); debug_only(_msize_valid=0;) }
   void clear_to_sets()  { _mask.clear_to_sets(_num_regs); debug_only(_msize_valid=0;) }
 
   // Number of registers this live range uses when it colors
@@ -237,9 +235,6 @@
   // Add edge between a and b.  Returns true if actually addded.
   int add_edge( uint a, uint b );
 
-  // Add edge between a and everything in the vector
-  void add_vector( uint a, IndexSet *vec );
-
   // Test for edge existance
   int test_edge( uint a, uint b ) const;
 
@@ -401,7 +396,6 @@
 
   PhaseLive *_live;             // Liveness, used in the interference graph
   PhaseIFG *_ifg;               // Interference graph (for original chunk)
-  Node_List **_lrg_nodes;       // Array of node; lists for lrgs which spill
   VectorSet _spilled_once;      // Nodes that have been spilled
   VectorSet _spilled_twice;     // Nodes that have been spilled twice
 
@@ -496,8 +490,7 @@
   void de_ssa();
 
   // Add edge between reg and everything in the vector.
-  // Same as _ifg->add_vector(reg,live) EXCEPT use the RegMask
-  // information to trim the set of interferences.  Return the
+  // Use the RegMask information to trim the set of interferences.  Return the
   // count of edges added.
   void interfere_with_live(uint lid, IndexSet* liveout);
 #ifdef ASSERT
@@ -666,17 +659,9 @@
   // coalescing, it should Simplify.  This call sets the was-lo-degree bit.
   void set_was_low();
 
-  // Split live-ranges that must spill due to register conflicts (as opposed
-  // to capacity spills).  Typically these are things def'd in a register
-  // and used on the stack or vice-versa.
-  void pre_spill();
-
   // Init LRG caching of degree, numregs.  Init lo_degree list.
   void cache_lrg_info( );
 
-  // Simplify the IFG by removing LRGs of low degree with no copies
-  void Pre_Simplify();
-
   // Simplify the IFG by removing LRGs of low degree
   void Simplify();
 
@@ -692,8 +677,6 @@
   // Return new number of live ranges
   uint Split(uint maxlrg, ResourceArea* split_arena);
 
-  // Copy 'was_spilled'-edness from one Node to another.
-  void copy_was_spilled( Node *src, Node *dst );
   // Set the 'spilled_once' or 'spilled_twice' flag on a node.
   void set_was_spilled( Node *n );
 
--- a/src/hotspot/share/opto/compile.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/compile.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -2188,13 +2188,16 @@
 // They were inserted during parsing (see add_safepoint()) to make
 // infinite loops without calls or exceptions visible to root, i.e.,
 // useful.
-void Compile::remove_root_to_sfpts_edges() {
+void Compile::remove_root_to_sfpts_edges(PhaseIterGVN& igvn) {
   Node *r = root();
   if (r != NULL) {
     for (uint i = r->req(); i < r->len(); ++i) {
       Node *n = r->in(i);
       if (n != NULL && n->is_SafePoint()) {
         r->rm_prec(i);
+        if (n->outcnt() == 0) {
+          igvn.remove_dead_node(n);
+        }
         --i;
       }
     }
@@ -2263,7 +2266,7 @@
 
   // Now that all inlining is over, cut edge from root to loop
   // safepoints
-  remove_root_to_sfpts_edges();
+  remove_root_to_sfpts_edges(igvn);
 
   // Remove the speculative part of types and clean up the graph from
   // the extra CastPP nodes whose only purpose is to carry them. Do
--- a/src/hotspot/share/opto/compile.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/compile.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1088,7 +1088,7 @@
   void inline_string_calls(bool parse_time);
   void inline_boxing_calls(PhaseIterGVN& igvn);
   bool optimize_loops(PhaseIterGVN& igvn, LoopOptsMode mode);
-  void remove_root_to_sfpts_edges();
+  void remove_root_to_sfpts_edges(PhaseIterGVN& igvn);
 
   // Matching, CFG layout, allocation, code generation
   PhaseCFG*         cfg()                       { return _cfg; }
--- a/src/hotspot/share/opto/convertnode.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/convertnode.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -393,7 +393,11 @@
     assert(rxlo == (int)rxlo && rxhi == (int)rxhi, "x should not overflow");
     assert(rylo == (int)rylo && ryhi == (int)ryhi, "y should not overflow");
     Node* cx = phase->C->constrained_convI2L(phase, x, TypeInt::make(rxlo, rxhi, widen), NULL);
+    Node *hook = new Node(1);
+    hook->init_req(0, cx);  // Add a use to cx to prevent him from dying
     Node* cy = phase->C->constrained_convI2L(phase, y, TypeInt::make(rylo, ryhi, widen), NULL);
+    hook->del_req(0);  // Just yank bogus edge
+    hook->destruct();
     switch (op) {
       case Op_AddI:  return new AddLNode(cx, cy);
       case Op_SubI:  return new SubLNode(cx, cy);
--- a/src/hotspot/share/opto/doCall.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/doCall.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -202,9 +202,9 @@
     }
 
     // Try using the type profile.
-    if (call_does_dispatch && site_count > 0 && receiver_count > 0) {
+    if (call_does_dispatch && site_count > 0 && UseTypeProfile) {
       // The major receiver's count >= TypeProfileMajorReceiverPercent of site_count.
-      bool have_major_receiver = (100.*profile.receiver_prob(0) >= (float)TypeProfileMajorReceiverPercent);
+      bool have_major_receiver = profile.has_receiver(0) && (100.*profile.receiver_prob(0) >= (float)TypeProfileMajorReceiverPercent);
       ciMethod* receiver_method = NULL;
 
       int morphism = profile.morphism();
@@ -258,8 +258,9 @@
             }
           }
           CallGenerator* miss_cg;
-          Deoptimization::DeoptReason reason = morphism == 2 ?
-            Deoptimization::Reason_bimorphic : Deoptimization::reason_class_check(speculative_receiver_type != NULL);
+          Deoptimization::DeoptReason reason = (morphism == 2
+                                               ? Deoptimization::Reason_bimorphic
+                                               : Deoptimization::reason_class_check(speculative_receiver_type != NULL));
           if ((morphism == 1 || (morphism == 2 && next_hit_cg != NULL)) &&
               !too_many_traps(caller, bci, reason)
              ) {
@@ -281,8 +282,8 @@
               miss_cg = CallGenerator::for_predicted_call(profile.receiver(1), miss_cg, next_hit_cg, PROB_MAX);
             }
             if (miss_cg != NULL) {
-              trace_type_profile(C, jvms->method(), jvms->depth() - 1, jvms->bci(), receiver_method, profile.receiver(0), site_count, receiver_count);
               ciKlass* k = speculative_receiver_type != NULL ? speculative_receiver_type : profile.receiver(0);
+              trace_type_profile(C, jvms->method(), jvms->depth() - 1, jvms->bci(), receiver_method, k, site_count, receiver_count);
               float hit_prob = speculative_receiver_type != NULL ? 1.0 : profile.receiver_prob(0);
               CallGenerator* cg = CallGenerator::for_predicted_call(k, miss_cg, hit_cg, hit_prob);
               if (cg != NULL)  return cg;
--- a/src/hotspot/share/opto/ifg.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/ifg.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -67,20 +67,6 @@
   return _adjs[a].insert( b );
 }
 
-// Add an edge between 'a' and everything in the vector.
-void PhaseIFG::add_vector( uint a, IndexSet *vec ) {
-  // IFG is triangular, so do the inserts where 'a' < 'b'.
-  assert( !_is_square, "only on triangular" );
-  IndexSet *adjs_a = &_adjs[a];
-  if( !vec->count() ) return;
-
-  IndexSetIterator elements(vec);
-  uint neighbor;
-  while ((neighbor = elements.next()) != 0) {
-    add_edge( a, neighbor );
-  }
-}
-
 // Is there an edge between a and b?
 int PhaseIFG::test_edge( uint a, uint b ) const {
   // Sort a and b, so that a is larger
--- a/src/hotspot/share/opto/library_call.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/library_call.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -3850,6 +3850,13 @@
                                 method, bci());
     slow_call->set_optimized_virtual(true);
   }
+  if (CallGenerator::is_inlined_method_handle_intrinsic(this->method(), bci(), callee())) {
+    // To be able to issue a direct call (optimized virtual or virtual)
+    // and skip a call to MH.linkTo*/invokeBasic adapter, additional information
+    // about the method being invoked should be attached to the call site to
+    // make resolution logic work (see SharedRuntime::resolve_{virtual,opt_virtual}_call_C).
+    slow_call->set_override_symbolic_info(true);
+  }
   set_arguments_for_java_call(slow_call);
   set_edges_for_java_call(slow_call);
   return slow_call;
@@ -6267,6 +6274,11 @@
   Node* dp = argument(5);
   Node* isURL = argument(6);
 
+  src = must_be_not_null(src, true);
+  src = access_resolve(src, ACCESS_READ);
+  dest = must_be_not_null(dest, true);
+  dest = access_resolve(dest, ACCESS_WRITE);
+
   Node* src_start = array_element_address(src, intcon(0), T_BYTE);
   assert(src_start, "source array is NULL");
   Node* dest_start = array_element_address(dest, intcon(0), T_BYTE);
--- a/src/hotspot/share/opto/matcher.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/matcher.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1170,6 +1170,7 @@
     if( mcall->is_MachCallJava() ) {
       MachCallJavaNode *mcall_java  = mcall->as_MachCallJava();
       const CallJavaNode *call_java =  call->as_CallJava();
+      assert(call_java->validate_symbolic_info(), "inconsistent info");
       method = call_java->method();
       mcall_java->_method = method;
       mcall_java->_bci = call_java->_bci;
--- a/src/hotspot/share/opto/memnode.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/memnode.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1532,10 +1532,14 @@
   Node* address = in(MemNode::Address);
   bool progress = false;
 
+  bool addr_mark = ((phase->type(address)->isa_oopptr() || phase->type(address)->isa_narrowoop()) &&
+         phase->type(address)->is_ptr()->offset() == oopDesc::mark_offset_in_bytes());
+
   // Skip up past a SafePoint control.  Cannot do this for Stores because
   // pointer stores & cardmarks must stay on the same side of a SafePoint.
   if( ctrl != NULL && ctrl->Opcode() == Op_SafePoint &&
-      phase->C->get_alias_index(phase->type(address)->is_ptr()) != Compile::AliasIdxRaw ) {
+      phase->C->get_alias_index(phase->type(address)->is_ptr()) != Compile::AliasIdxRaw  &&
+      !addr_mark ) {
     ctrl = ctrl->in(0);
     set_req(MemNode::Control,ctrl);
     progress = true;
--- a/src/hotspot/share/opto/parse1.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/parse1.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -524,7 +524,6 @@
   if (depth() == 1) {
     assert(C->is_osr_compilation() == this->is_osr_parse(), "OSR in sync");
     if (C->tf() != tf()) {
-      MutexLockerEx ml(Compile_lock, Mutex::_no_safepoint_check_flag);
       assert(C->env()->system_dictionary_modification_counter_changed(),
              "Must invalidate if TypeFuncs differ");
     }
@@ -1041,7 +1040,6 @@
       // not compilable. Just using an assertion instead would be dangerous
       // as this could lead to an infinite compile loop in non-debug builds.
       {
-        MutexLockerEx ml(Compile_lock, Mutex::_no_safepoint_check_flag);
         if (C->env()->system_dictionary_modification_counter_changed()) {
           C->record_failure(C2Compiler::retry_class_loading_during_parsing());
         } else {
--- a/src/hotspot/share/opto/regmask.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/regmask.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -28,68 +28,10 @@
 #include "opto/matcher.hpp"
 #include "opto/node.hpp"
 #include "opto/regmask.hpp"
+#include "utilities/population_count.hpp"
 
 #define RM_SIZE _RM_SIZE /* a constant private to the class RegMask */
 
-//-------------Non-zero bit search methods used by RegMask---------------------
-// Find lowest 1, or return 32 if empty
-int find_lowest_bit( uint32_t mask ) {
-  int n = 0;
-  if( (mask & 0xffff) == 0 ) {
-    mask >>= 16;
-    n += 16;
-  }
-  if( (mask & 0xff) == 0 ) {
-    mask >>= 8;
-    n += 8;
-  }
-  if( (mask & 0xf) == 0 ) {
-    mask >>= 4;
-    n += 4;
-  }
-  if( (mask & 0x3) == 0 ) {
-    mask >>= 2;
-    n += 2;
-  }
-  if( (mask & 0x1) == 0 ) {
-    mask >>= 1;
-     n += 1;
-  }
-  if( mask == 0 ) {
-    n = 32;
-  }
-  return n;
-}
-
-// Find highest 1, or return 32 if empty
-int find_hihghest_bit( uint32_t mask ) {
-  int n = 0;
-  if( mask > 0xffff ) {
-    mask >>= 16;
-    n += 16;
-  }
-  if( mask > 0xff ) {
-    mask >>= 8;
-    n += 8;
-  }
-  if( mask > 0xf ) {
-    mask >>= 4;
-    n += 4;
-  }
-  if( mask > 0x3 ) {
-    mask >>= 2;
-    n += 2;
-  }
-  if( mask > 0x1 ) {
-    mask >>= 1;
-    n += 1;
-  }
-  if( mask == 0 ) {
-    n = 32;
-  }
-  return n;
-}
-
 //------------------------------dump-------------------------------------------
 
 #ifndef PRODUCT
@@ -140,21 +82,6 @@
     return 1;
 }
 
-//------------------------------find_first_pair--------------------------------
-// Find the lowest-numbered register pair in the mask.  Return the
-// HIGHEST register number in the pair, or BAD if no pairs.
-OptoReg::Name RegMask::find_first_pair() const {
-  verify_pairs();
-  for( int i = 0; i < RM_SIZE; i++ ) {
-    if( _A[i] ) {               // Found some bits
-      int bit = _A[i] & -_A[i]; // Extract low bit
-      // Convert to bit number, return hi bit in pair
-      return OptoReg::Name((i<<_LogWordBits)+find_lowest_bit(bit)+1);
-    }
-  }
-  return OptoReg::Bad;
-}
-
 //------------------------------ClearToPairs-----------------------------------
 // Clear out partial bits; leave only bit pairs
 void RegMask::clear_to_pairs() {
@@ -167,18 +94,6 @@
   verify_pairs();
 }
 
-//------------------------------SmearToPairs-----------------------------------
-// Smear out partial bits; leave only bit pairs
-void RegMask::smear_to_pairs() {
-  for( int i = 0; i < RM_SIZE; i++ ) {
-    int bits = _A[i];
-    bits |= ((bits & 0x55555555)<<1); // Smear lo bit hi per pair
-    bits |= ((bits & 0xAAAAAAAA)>>1); // Smear hi bit lo per pair
-    _A[i] = bits;
-  }
-  verify_pairs();
-}
-
 //------------------------------is_aligned_pairs-------------------------------
 bool RegMask::is_aligned_pairs() const {
   // Assert that the register mask contains only bit pairs.
@@ -389,14 +304,10 @@
 //------------------------------Size-------------------------------------------
 // Compute size of register mask in bits
 uint RegMask::Size() const {
-  extern uint8_t bitsInByte[BITS_IN_BYTE_ARRAY_SIZE];
   uint sum = 0;
-  for( int i = 0; i < RM_SIZE; i++ )
-    sum +=
-      bitsInByte[(_A[i]>>24) & 0xff] +
-      bitsInByte[(_A[i]>>16) & 0xff] +
-      bitsInByte[(_A[i]>> 8) & 0xff] +
-      bitsInByte[ _A[i]      & 0xff];
+  for (int i = 0; i < RM_SIZE; i++) {
+    sum += population_count(_A[i]);
+  }
   return sum;
 }
 
--- a/src/hotspot/share/opto/regmask.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/opto/regmask.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -27,6 +27,8 @@
 
 #include "code/vmreg.hpp"
 #include "opto/optoreg.hpp"
+#include "utilities/count_leading_zeros.hpp"
+#include "utilities/count_trailing_zeros.hpp"
 
 // Some fun naming (textual) substitutions:
 //
@@ -45,10 +47,14 @@
 // numregs in chaitin      ==> proper degree in chaitin
 
 //-------------Non-zero bit search methods used by RegMask---------------------
-// Find lowest 1, or return 32 if empty
-int find_lowest_bit( uint32_t mask );
-// Find highest 1, or return 32 if empty
-int find_hihghest_bit( uint32_t mask );
+// Find lowest 1, undefined if empty/0
+static int find_lowest_bit(uint32_t mask) {
+  return count_trailing_zeros(mask);
+}
+// Find highest 1, undefined if empty/0
+static int find_highest_bit(uint32_t mask) {
+  return count_leading_zeros(mask) ^ 31;
+}
 
 //------------------------------RegMask----------------------------------------
 // The ADL file describes how to print the machine-specific registers, as well
@@ -170,18 +176,11 @@
     FORALL_BODY
 #   undef BODY
       { base = OptoReg::Bad; bits = 1<<0; }
-    return OptoReg::Name(base + find_hihghest_bit(bits));
+    return OptoReg::Name(base + find_highest_bit(bits));
   }
 
-  // Find the lowest-numbered register pair in the mask.  Return the
-  // HIGHEST register number in the pair, or BAD if no pairs.
-  // Assert that the mask contains only bit pairs.
-  OptoReg::Name find_first_pair() const;
-
   // Clear out partial bits; leave only aligned adjacent bit pairs.
   void clear_to_pairs();
-  // Smear out partial bits; leave only aligned adjacent bit pairs.
-  void smear_to_pairs();
   // Verify that the mask contains only aligned adjacent bit pairs
   void verify_pairs() const { assert( is_aligned_pairs(), "mask is not aligned, adjacent pairs" ); }
   // Test that the mask contains only aligned adjacent bit pairs
@@ -218,9 +217,6 @@
   // Test that the mask contains only aligned adjacent bit sets
   bool is_aligned_sets(const int size) const;
 
-  // mask is a set of misaligned registers
-  bool is_misaligned_set(int size) const { return (int)Size()==size && !is_aligned_sets(size);}
-
   // Test for a single adjacent set
   int is_bound_set(const int size) const;
 
--- a/src/hotspot/share/prims/jni.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/prims/jni.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -2591,9 +2591,10 @@
     ret = JNIHandles::make_local(env, a->obj_at(index));
     return ret;
   } else {
-    char buf[jintAsStringSize];
-    sprintf(buf, "%d", index);
-    THROW_MSG_0(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
+    ResourceMark rm(THREAD);
+    stringStream ss;
+    ss.print("Index %d out of bounds for length %d", index, a->length());
+    THROW_MSG_0(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), ss.as_string());
   }
 JNI_END
 
@@ -2624,9 +2625,10 @@
       THROW_MSG(vmSymbols::java_lang_ArrayStoreException(), ss.as_string());
     }
   } else {
-    char buf[jintAsStringSize];
-    sprintf(buf, "%d", index);
-    THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
+    ResourceMark rm(THREAD);
+    stringStream ss;
+    ss.print("Index %d out of bounds for length %d", index, a->length());
+    THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), ss.as_string());
   }
 JNI_END
 
@@ -2801,6 +2803,19 @@
                                   , HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_ENTRY(env, array, (double *) buf, mode),
                                   HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_RETURN())
 
+static void check_bounds(jsize start, jsize copy_len, jsize array_len, TRAPS) {
+  ResourceMark rm(THREAD);
+  if (copy_len < 0) {
+    stringStream ss;
+    ss.print("Length %d is negative", copy_len);
+    THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), ss.as_string());
+  } else if (start < 0 || (start > array_len - copy_len)) {
+    stringStream ss;
+    ss.print("Array region %d.." INT64_FORMAT " out of bounds for length %d",
+             start, (int64_t)start+(int64_t)copy_len, array_len);
+    THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), ss.as_string());
+  }
+}
 
 #define DEFINE_GETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag \
                                     , EntryProbe, ReturnProbe); \
@@ -2814,12 +2829,9 @@
   EntryProbe; \
   DT_VOID_RETURN_MARK(Get##Result##ArrayRegion); \
   typeArrayOop src = typeArrayOop(JNIHandles::resolve_non_null(array)); \
-  if (start < 0 || len < 0 || (start > src->length() - len)) { \
-    THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
-  } else { \
-    if (len > 0) { \
-      ArrayAccess<>::arraycopy_to_native(src, typeArrayOopDesc::element_offset<ElementType>(start), buf, len); \
-    } \
+  check_bounds(start, len, src->length(), CHECK); \
+  if (len > 0) {    \
+    ArrayAccess<>::arraycopy_to_native(src, typeArrayOopDesc::element_offset<ElementType>(start), buf, len); \
   } \
 JNI_END
 
@@ -2861,12 +2873,9 @@
   EntryProbe; \
   DT_VOID_RETURN_MARK(Set##Result##ArrayRegion); \
   typeArrayOop dst = typeArrayOop(JNIHandles::resolve_non_null(array)); \
-  if (start < 0 || len < 0 || (start > dst->length() - len)) { \
-    THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
-  } else { \
-    if (len > 0) { \
-      ArrayAccess<>::arraycopy_from_native(buf, dst, typeArrayOopDesc::element_offset<ElementType>(start), len); \
-    } \
+  check_bounds(start, len, dst->length(), CHECK); \
+  if (len > 0) { \
+    ArrayAccess<>::arraycopy_from_native(buf, dst, typeArrayOopDesc::element_offset<ElementType>(start), len); \
   } \
 JNI_END
 
--- a/src/hotspot/share/prims/jvmtiImpl.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/prims/jvmtiImpl.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -297,25 +297,11 @@
   // lazily create _jvmti_breakpoints and _breakpoint_list
   static JvmtiBreakpoints& get_jvmti_breakpoints();
 
-  // quickly test whether the bcp matches a cached breakpoint in the list
-  static inline bool is_breakpoint(address bcp);
-
   static void oops_do(OopClosure* f);
   static void metadata_do(void f(Metadata*)) NOT_JVMTI_RETURN;
   static void gc_epilogue();
 };
 
-// quickly test whether the bcp matches a cached breakpoint in the list
-bool JvmtiCurrentBreakpoints::is_breakpoint(address bcp) {
-    address *bps = get_breakpoint_list();
-    if (bps == NULL) return false;
-    for ( ; (*bps) != NULL; bps++) {
-      if ((*bps) == bcp) return true;
-    }
-    return false;
-}
-
-
 ///////////////////////////////////////////////////////////////
 //
 // class VM_ChangeBreakpoints
--- a/src/hotspot/share/prims/methodHandles.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/prims/methodHandles.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2008, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -968,7 +968,6 @@
   bool search_superc = ((match_flags & SEARCH_SUPERCLASSES) != 0);
   bool search_intfc  = ((match_flags & SEARCH_INTERFACES)   != 0);
   bool local_only = !(search_superc | search_intfc);
-  bool classes_only = false;
 
   if (name != NULL) {
     if (name->utf8_length() == 0)  return 0; // a match is not possible
--- a/src/hotspot/share/prims/methodHandles.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/prims/methodHandles.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -67,7 +67,6 @@
   static oop init_MemberName(Handle mname_h, Handle target_h, TRAPS); // compute vmtarget/vmindex from target
   static oop init_field_MemberName(Handle mname_h, fieldDescriptor& fd, bool is_setter = false);
   static oop init_method_MemberName(Handle mname_h, CallInfo& info);
-  static int method_ref_kind(Method* m, bool do_dispatch_if_possible = true);
   static int find_MemberNames(Klass* k, Symbol* name, Symbol* sig,
                               int mflags, Klass* caller,
                               int skip, objArrayHandle results, TRAPS);
@@ -148,8 +147,6 @@
 
   static Bytecodes::Code signature_polymorphic_intrinsic_bytecode(vmIntrinsics::ID id);
 
-  static int get_named_constant(int which, Handle name_box, TRAPS);
-
 public:
   static Symbol* lookup_signature(oop type_str, bool polymorphic, TRAPS);  // use TempNewSymbol
   static Symbol* lookup_basic_type_signature(Symbol* sig, bool keep_last_arg, TRAPS);  // use TempNewSymbol
@@ -158,11 +155,6 @@
   }
   static bool is_basic_type_signature(Symbol* sig);
 
-  static Symbol* lookup_method_type(Symbol* msig, Handle mtype, TRAPS);
-
-  static void print_as_method_type_on(outputStream* st, Symbol* sig) {
-    print_as_basic_type_signature_on(st, sig, true, true);
-  }
   static void print_as_basic_type_signature_on(outputStream* st, Symbol* sig, bool keep_arrays = false, bool keep_basic_names = false);
 
   // decoding CONSTANT_MethodHandle constants
@@ -188,13 +180,6 @@
     assert(ref_kind_is_valid(ref_kind), "");
     return (ref_kind & 1) != 0;
   }
-  static bool ref_kind_is_static(int ref_kind) {
-    return !ref_kind_has_receiver(ref_kind) && (ref_kind != JVM_REF_newInvokeSpecial);
-  }
-  static bool ref_kind_does_dispatch(int ref_kind) {
-    return (ref_kind == JVM_REF_invokeVirtual ||
-            ref_kind == JVM_REF_invokeInterface);
-  }
 
   static int ref_kind_to_flags(int ref_kind);
 
--- a/src/hotspot/share/prims/whitebox.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/prims/whitebox.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -93,6 +93,9 @@
 #include "services/memTracker.hpp"
 #include "utilities/nativeCallStack.hpp"
 #endif // INCLUDE_NMT
+#if INCLUDE_AOT
+#include "aot/aotLoader.hpp"
+#endif // INCLUDE_AOT
 
 #ifdef LINUX
 #include "osContainer_linux.hpp"
@@ -2118,6 +2121,14 @@
   return (jint) SystemDictionary::pd_cache_table()->removed_entries_count();
 WB_END
 
+WB_ENTRY(jint, WB_AotLibrariesCount(JNIEnv* env, jobject o))
+  jint result = 0;
+#if INCLUDE_AOT
+  result = (jint) AOTLoader::heaps_count();
+#endif
+  return result;
+WB_END
+
 #define CC (char*)
 
 static JNINativeMethod methods[] = {
@@ -2350,6 +2361,7 @@
   {CC"disableElfSectionCache",    CC"()V",            (void*)&WB_DisableElfSectionCache },
   {CC"resolvedMethodRemovedCount",     CC"()I",       (void*)&WB_ResolvedMethodRemovedCount },
   {CC"protectionDomainRemovedCount",   CC"()I",       (void*)&WB_ProtectionDomainRemovedCount },
+  {CC"aotLibrariesCount", CC"()I",                    (void*)&WB_AotLibrariesCount },
 };
 
 
--- a/src/hotspot/share/runtime/arguments.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/arguments.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -328,10 +328,6 @@
   _agentList.add(agentLib);
 }
 
-void Arguments::add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib) {
-  _agentList.add(new AgentLibrary(name, options, absolute_path, os_lib));
-}
-
 // Return TRUE if option matches 'property', or 'property=', or 'property.'.
 static bool matches_property_suffix(const char* option, const char* property, size_t len) {
   return ((strncmp(option, property, len) == 0) &&
--- a/src/hotspot/share/runtime/arguments.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/arguments.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -346,7 +346,6 @@
 
   // Late-binding agents not started via arguments
   static void add_loaded_agent(AgentLibrary *agentLib);
-  static void add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib);
 
   // Operation modi
   static Mode _mode;
@@ -368,7 +367,6 @@
   static bool _UseOnStackReplacement;
   static bool _BackgroundCompilation;
   static bool _ClipInlining;
-  static bool _CIDynamicCompilePriority;
   static intx _Tier3InvokeNotifyFreqLog;
   static intx _Tier4InvocationThreshold;
 
--- a/src/hotspot/share/runtime/deoptimization.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/deoptimization.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1284,36 +1284,6 @@
 }
 
 
-void Deoptimization::revoke_biases_of_monitors(CodeBlob* cb) {
-  if (!UseBiasedLocking) {
-    return;
-  }
-
-  assert(SafepointSynchronize::is_at_safepoint(), "must only be called from safepoint");
-  GrowableArray<Handle>* objects_to_revoke = new GrowableArray<Handle>();
-  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *jt = jtiwh.next(); ) {
-    if (jt->has_last_Java_frame()) {
-      StackFrameStream sfs(jt, true);
-      while (!sfs.is_done()) {
-        frame* cur = sfs.current();
-        if (cb->contains(cur->pc())) {
-          vframe* vf = vframe::new_vframe(cur, sfs.register_map(), jt);
-          compiledVFrame* cvf = compiledVFrame::cast(vf);
-          // Revoke monitors' biases in all scopes
-          while (!cvf->is_top()) {
-            collect_monitors(cvf, objects_to_revoke);
-            cvf = compiledVFrame::cast(cvf->sender());
-          }
-          collect_monitors(cvf, objects_to_revoke);
-        }
-        sfs.next();
-      }
-    }
-  }
-  BiasedLocking::revoke_at_safepoint(objects_to_revoke);
-}
-
-
 void Deoptimization::deoptimize_single_frame(JavaThread* thread, frame fr, Deoptimization::DeoptReason reason) {
   assert(fr.can_be_deoptimized(), "checking frame type");
 
@@ -2300,11 +2270,6 @@
   return _deoptimization_hist[Reason_none][0][0];
 }
 
-jint Deoptimization::deoptimization_count(DeoptReason reason) {
-  assert(reason >= 0 && reason < Reason_LIMIT, "oob");
-  return _deoptimization_hist[reason][0][0];
-}
-
 void Deoptimization::print_statistics() {
   juint total = total_deoptimization_count();
   juint account = total;
--- a/src/hotspot/share/runtime/deoptimization.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/deoptimization.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -154,9 +154,6 @@
   // Helper function to revoke biases of all monitors in frame if UseBiasedLocking
   // is enabled
   static void revoke_biases_of_monitors(JavaThread* thread, frame fr, RegisterMap* map);
-  // Helper function to revoke biases of all monitors in frames
-  // executing in a particular CodeBlob if UseBiasedLocking is enabled
-  static void revoke_biases_of_monitors(CodeBlob* cb);
 
 #if COMPILER2_OR_JVMCI
 JVMCI_ONLY(public:)
@@ -420,7 +417,6 @@
                                          int trap_request);
 
   static jint total_deoptimization_count();
-  static jint deoptimization_count(DeoptReason reason);
 
   // JVMTI PopFrame support
 
--- a/src/hotspot/share/runtime/frame.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/frame.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -368,29 +368,6 @@
   return result;
 }
 
-// Note: called by profiler - NOT for current thread
-frame frame::profile_find_Java_sender_frame(JavaThread *thread) {
-// If we don't recognize this frame, walk back up the stack until we do
-  RegisterMap map(thread, false);
-  frame first_java_frame = frame();
-
-  // Find the first Java frame on the stack starting with input frame
-  if (is_java_frame()) {
-    // top frame is compiled frame or deoptimized frame
-    first_java_frame = *this;
-  } else if (safe_for_sender(thread)) {
-    for (frame sender_frame = sender(&map);
-      sender_frame.safe_for_sender(thread) && !sender_frame.is_first_frame();
-      sender_frame = sender_frame.sender(&map)) {
-      if (sender_frame.is_java_frame()) {
-        first_java_frame = sender_frame;
-        break;
-      }
-    }
-  }
-  return first_java_frame;
-}
-
 // Interpreter frames
 
 
--- a/src/hotspot/share/runtime/frame.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/frame.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -148,9 +148,6 @@
   // returns the sending frame
   frame sender(RegisterMap* map) const;
 
-  // for Profiling - acting on another frame. walks sender frames
-  // if valid.
-  frame profile_find_Java_sender_frame(JavaThread *thread);
   bool safe_for_sender(JavaThread *thread);
 
   // returns the sender, but skips conversion frames
--- a/src/hotspot/share/runtime/globals.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/globals.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -140,8 +140,8 @@
 // notproduct flags are settable / visible only during development and are not declared in the PRODUCT version
 
 // A flag must be declared with one of the following types:
-// bool, int, uint, intx, uintx, size_t, ccstr, double, or uint64_t.
-// The type "ccstr" is an alias for "const char*" and is used
+// bool, int, uint, intx, uintx, size_t, ccstr, ccstrlist, double, or uint64_t.
+// The type "ccstr" and "ccstrlist" are an alias for "const char*" and is used
 // only in this file, because the macrology requires single-token type names.
 
 // Note: Diagnostic options not meant for VM tuning or for product modes.
--- a/src/hotspot/share/runtime/mutexLocker.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/mutexLocker.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -306,7 +306,7 @@
   def(JvmtiThreadState_lock        , PaddedMutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);     // Used by JvmtiThreadState/JvmtiEventController
   def(Management_lock              , PaddedMutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);     // used for JVM management
 
-  def(Compile_lock                 , PaddedMutex  , nonleaf+3,   true,  Monitor::_safepoint_check_sometimes);
+  def(Compile_lock                 , PaddedMutex  , nonleaf+3,   true,  Monitor::_safepoint_check_always);
   def(MethodData_lock              , PaddedMutex  , nonleaf+3,   false, Monitor::_safepoint_check_always);
   def(TouchedMethodLog_lock        , PaddedMutex  , nonleaf+3,   false, Monitor::_safepoint_check_always);
 
--- a/src/hotspot/share/runtime/statSampler.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/statSampler.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -356,14 +356,3 @@
   PerfDataManager::create_counter(SUN_OS, "hrt.ticks",
                                   PerfData::U_Ticks, psh, CHECK);
 }
-
-/*
- * the statSampler_exit() function is called from os_init.cpp on
- * exit of the vm.
- */
-void statSampler_exit() {
-
-  if (!UsePerfData) return;
-
-  StatSampler::destroy();
-}
--- a/src/hotspot/share/runtime/statSampler.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/statSampler.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -65,6 +65,4 @@
     static void destroy();
 };
 
-void statSampler_exit();
-
 #endif // SHARE_RUNTIME_STATSAMPLER_HPP
--- a/src/hotspot/share/runtime/stubRoutines.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/stubRoutines.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -73,7 +73,6 @@
 
 jint    StubRoutines::_fpu_cntrl_wrd_std                        = 0;
 jint    StubRoutines::_fpu_cntrl_wrd_24                         = 0;
-jint    StubRoutines::_fpu_cntrl_wrd_64                         = 0;
 jint    StubRoutines::_fpu_cntrl_wrd_trunc                      = 0;
 jint    StubRoutines::_mxcsr_std                                = 0;
 jint    StubRoutines::_fpu_subnormal_bias1[3]                   = { 0, 0, 0 };
@@ -163,11 +162,6 @@
 address StubRoutines::_dlibm_tan_cot_huge = NULL;
 address StubRoutines::_dtan = NULL;
 
-double (* StubRoutines::_intrinsic_log10 )(double) = NULL;
-double (* StubRoutines::_intrinsic_sin   )(double) = NULL;
-double (* StubRoutines::_intrinsic_cos   )(double) = NULL;
-double (* StubRoutines::_intrinsic_tan   )(double) = NULL;
-
 address StubRoutines::_safefetch32_entry                 = NULL;
 address StubRoutines::_safefetch32_fault_pc              = NULL;
 address StubRoutines::_safefetch32_continuation_pc       = NULL;
--- a/src/hotspot/share/runtime/stubRoutines.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/stubRoutines.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -78,10 +78,6 @@
 class StubRoutines: AllStatic {
 
  public:
-  enum platform_independent_constants {
-    max_size_of_parameters = 256                           // max. parameter size supported by megamorphic lookups
-  };
-
   // Dependencies
   friend class StubGenerator;
 
@@ -114,7 +110,6 @@
 
   static jint    _fpu_cntrl_wrd_std;
   static jint    _fpu_cntrl_wrd_24;
-  static jint    _fpu_cntrl_wrd_64;
   static jint    _fpu_cntrl_wrd_trunc;
   static jint    _mxcsr_std;
   static jint    _fpu_subnormal_bias1[3];
@@ -207,18 +202,6 @@
   static address _dlibm_tan_cot_huge;
   static address _dtan;
 
-  // These are versions of the java.lang.Math methods which perform
-  // the same operations as the intrinsic version.  They are used for
-  // constant folding in the compiler to ensure equivalence.  If the
-  // intrinsic version returns the same result as the strict version
-  // then they can be set to the appropriate function from
-  // SharedRuntime.
-  static double (*_intrinsic_log10)(double);
-  static double (*_intrinsic_pow)(double, double);
-  static double (*_intrinsic_sin)(double);
-  static double (*_intrinsic_cos)(double);
-  static double (*_intrinsic_tan)(double);
-
   // Safefetch stubs.
   static address _safefetch32_entry;
   static address _safefetch32_fault_pc;
@@ -289,7 +272,6 @@
   static jint    fpu_cntrl_wrd_std()                       { return _fpu_cntrl_wrd_std;   }
   static address addr_fpu_cntrl_wrd_std()                  { return (address)&_fpu_cntrl_wrd_std;   }
   static address addr_fpu_cntrl_wrd_24()                   { return (address)&_fpu_cntrl_wrd_24;   }
-  static address addr_fpu_cntrl_wrd_64()                   { return (address)&_fpu_cntrl_wrd_64;   }
   static address addr_fpu_cntrl_wrd_trunc()                { return (address)&_fpu_cntrl_wrd_trunc; }
   static address addr_mxcsr_std()                          { return (address)&_mxcsr_std; }
   static address addr_fpu_subnormal_bias1()                { return (address)&_fpu_subnormal_bias1; }
@@ -386,27 +368,6 @@
 
   static address zero_aligned_words()  { return _zero_aligned_words; }
 
-  static double  intrinsic_log10(double d) {
-    assert(_intrinsic_log10 != NULL, "must be defined");
-    return _intrinsic_log10(d);
-  }
-  static double  intrinsic_pow(double d, double d2) {
-    assert(_intrinsic_pow != NULL, "must be defined");
-    return _intrinsic_pow(d, d2);
-  }
-  static double  intrinsic_sin(double d) {
-    assert(_intrinsic_sin != NULL, "must be defined");
-    return _intrinsic_sin(d);
-  }
-  static double  intrinsic_cos(double d) {
-    assert(_intrinsic_cos != NULL, "must be defined");
-    return _intrinsic_cos(d);
-  }
-  static double  intrinsic_tan(double d) {
-    assert(_intrinsic_tan != NULL, "must be defined");
-    return _intrinsic_tan(d);
-  }
-
   //
   // Safefetch stub support
   //
--- a/src/hotspot/share/runtime/thread.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/thread.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -2392,8 +2392,19 @@
     }
   }
 
-  VM_ThreadSuspend vm_suspend;
-  VMThread::execute(&vm_suspend);
+  if (Thread::current() == this) {
+    // Safely self-suspend.
+    // If we don't do this explicitly it will implicitly happen
+    // before we transition back to Java, and on some other thread-state
+    // transition paths, but not as we exit a JVM TI SuspendThread call.
+    // As SuspendThread(current) must not return (until resumed) we must
+    // self-suspend here.
+    ThreadBlockInVM tbivm(this);
+    java_suspend_self();
+  } else {
+    VM_ThreadSuspend vm_suspend;
+    VMThread::execute(&vm_suspend);
+  }
 }
 
 // Part II of external suspension.
--- a/src/hotspot/share/runtime/timer.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/timer.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -118,59 +118,3 @@
   assert(is_updated(), "must not be clear");
   return os::elapsed_counter() - _counter;
 }
-
-TraceCPUTime::TraceCPUTime(bool doit,
-               bool print_cr,
-               outputStream *logfile) :
-  _active(doit),
-  _print_cr(print_cr),
-  _starting_user_time(0.0),
-  _starting_system_time(0.0),
-  _starting_real_time(0.0),
-  _logfile(logfile),
-  _error(false) {
-  if (_active) {
-    if (logfile != NULL) {
-      _logfile = logfile;
-    } else {
-      _logfile = tty;
-    }
-
-    _error = !os::getTimesSecs(&_starting_real_time,
-                               &_starting_user_time,
-                               &_starting_system_time);
-  }
-}
-
-TraceCPUTime::~TraceCPUTime() {
-  if (_active) {
-    bool valid = false;
-    if (!_error) {
-      double real_secs;                 // walk clock time
-      double system_secs;               // system time
-      double user_secs;                 // user time for all threads
-
-      double real_time, user_time, system_time;
-      valid = os::getTimesSecs(&real_time, &user_time, &system_time);
-      if (valid) {
-
-        user_secs = user_time - _starting_user_time;
-        system_secs = system_time - _starting_system_time;
-        real_secs = real_time - _starting_real_time;
-
-        _logfile->print(" [Times: user=%3.2f sys=%3.2f real=%3.2f secs] ",
-          user_secs, system_secs, real_secs);
-
-      } else {
-        _logfile->print("[Invalid result in TraceCPUTime]");
-      }
-    } else {
-      _logfile->print("[Error in TraceCPUTime]");
-    }
-    if (_print_cr) {
-      _logfile->cr();
-    }
-    _logfile->flush();
-  }
-}
-
--- a/src/hotspot/share/runtime/timer.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/timer.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -72,23 +72,6 @@
   jlong ticks_since_update() const;
 };
 
-class TraceCPUTime: public StackObj {
- private:
-  bool _active;                 // true if times will be measured and printed
-  bool _print_cr;               // if true print carriage return at end
-  double _starting_user_time;   // user time at start of measurement
-  double _starting_system_time; // system time at start of measurement
-  double _starting_real_time;   // real time at start of measurement
-  outputStream* _logfile;       // output is printed to this stream
-  bool _error;                  // true if an error occurred, turns off output
-
- public:
-  TraceCPUTime(bool doit = true,
-               bool print_cr = true,
-               outputStream *logfile = NULL);
-  ~TraceCPUTime();
-};
-
 class TimeHelper {
  public:
   static double counter_to_seconds(jlong counter);
--- a/src/hotspot/share/runtime/vmOperations.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/vmOperations.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -333,8 +333,7 @@
       if (_with_locked_synchronizers) {
         tcl = concurrent_locks.thread_concurrent_locks(jt);
       }
-      ThreadSnapshot* ts = snapshot_thread(jt, tcl);
-      _result->add_thread_snapshot(ts);
+      snapshot_thread(jt, tcl);
     }
   } else {
     // Snapshot threads in the given _threads array
@@ -345,7 +344,7 @@
       if (th() == NULL) {
         // skip if the thread doesn't exist
         // Add a dummy snapshot
-        _result->add_thread_snapshot(new ThreadSnapshot());
+        _result->add_thread_snapshot();
         continue;
       }
 
@@ -362,24 +361,22 @@
           jt->is_exiting() ||
           jt->is_hidden_from_external_view())  {
         // add a NULL snapshot if skipped
-        _result->add_thread_snapshot(new ThreadSnapshot());
+        _result->add_thread_snapshot();
         continue;
       }
       ThreadConcurrentLocks* tcl = NULL;
       if (_with_locked_synchronizers) {
         tcl = concurrent_locks.thread_concurrent_locks(jt);
       }
-      ThreadSnapshot* ts = snapshot_thread(jt, tcl);
-      _result->add_thread_snapshot(ts);
+      snapshot_thread(jt, tcl);
     }
   }
 }
 
-ThreadSnapshot* VM_ThreadDump::snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl) {
-  ThreadSnapshot* snapshot = new ThreadSnapshot(_result->t_list(), java_thread);
+void VM_ThreadDump::snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl) {
+  ThreadSnapshot* snapshot = _result->add_thread_snapshot(java_thread);
   snapshot->dump_stack_at_safepoint(_max_depth, _with_locked_monitors);
   snapshot->set_concurrent_locks(tcl);
-  return snapshot;
 }
 
 volatile bool VM_Exit::_vm_exited = false;
--- a/src/hotspot/share/runtime/vmOperations.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/runtime/vmOperations.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -68,7 +68,9 @@
   template(G1CollectForAllocation)                \
   template(G1CollectFull)                         \
   template(G1Concurrent)                          \
-  template(ZOperation)                            \
+  template(ZMarkStart)                            \
+  template(ZMarkEnd)                              \
+  template(ZRelocateStart)                        \
   template(HandshakeOneThread)                    \
   template(HandshakeAllThreads)                   \
   template(HandshakeFallback)                     \
@@ -119,7 +121,6 @@
   template(PrintCompileQueue)                     \
   template(PrintClassHierarchy)                   \
   template(ThreadSuspend)                         \
-  template(CTWThreshold)                          \
   template(ThreadsSuspendJVMTI)                   \
   template(ICBufferFull)                          \
   template(ScavengeMonitors)                      \
@@ -270,12 +271,6 @@
   VMOp_Type type() const { return VMOp_ThreadSuspend; }
 };
 
-// empty vm op, when forcing a safepoint due to ctw threshold is reached for the sweeper
-class VM_CTWThreshold: public VM_ForceSafepoint {
- public:
-  VMOp_Type type() const { return VMOp_CTWThreshold; }
-};
-
 // empty vm op, when forcing a safepoint to suspend threads from jvmti
 class VM_ThreadsSuspendJVMTI: public VM_ForceSafepoint {
  public:
@@ -445,7 +440,7 @@
   bool                           _with_locked_monitors;
   bool                           _with_locked_synchronizers;
 
-  ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
+  void snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
 
  public:
   VM_ThreadDump(ThreadDumpResult* result,
--- a/src/hotspot/share/services/management.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/services/management.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1097,15 +1097,13 @@
     for (int i = 0; i < num_threads; i++) {
       jlong tid = ids_ah->long_at(i);
       JavaThread* jt = dump_result.t_list()->find_JavaThread_from_java_tid(tid);
-      ThreadSnapshot* ts;
       if (jt == NULL) {
         // if the thread does not exist or now it is terminated,
         // create dummy snapshot
-        ts = new ThreadSnapshot();
+        dump_result.add_thread_snapshot();
       } else {
-        ts = new ThreadSnapshot(dump_result.t_list(), jt);
+        dump_result.add_thread_snapshot(jt);
       }
-      dump_result.add_thread_snapshot(ts);
     }
   } else {
     // obtain thread dump with the specific list of threads with stack trace
--- a/src/hotspot/share/services/threadService.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/services/threadService.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -503,8 +503,25 @@
   }
 }
 
+ThreadSnapshot* ThreadDumpResult::add_thread_snapshot() {
+  ThreadSnapshot* ts = new ThreadSnapshot();
+  link_thread_snapshot(ts);
+  return ts;
+}
 
-void ThreadDumpResult::add_thread_snapshot(ThreadSnapshot* ts) {
+ThreadSnapshot* ThreadDumpResult::add_thread_snapshot(JavaThread* thread) {
+  // Note: it is very important that the ThreadSnapshot* gets linked before
+  // ThreadSnapshot::initialize gets called. This is to ensure that
+  // ThreadSnapshot::oops_do can get called prior to the field
+  // ThreadSnapshot::_threadObj being assigned a value (to prevent a dangling
+  // oop).
+  ThreadSnapshot* ts = new ThreadSnapshot();
+  link_thread_snapshot(ts);
+  ts->initialize(t_list(), thread);
+  return ts;
+}
+
+void ThreadDumpResult::link_thread_snapshot(ThreadSnapshot* ts) {
   assert(_num_threads == 0 || _num_snapshots < _num_threads,
          "_num_snapshots must be less than _num_threads");
   _num_snapshots++;
@@ -831,12 +848,9 @@
   memset((void*) _perf_recursion_counts, 0, sizeof(_perf_recursion_counts));
 }
 
-ThreadSnapshot::ThreadSnapshot(ThreadsList * t_list, JavaThread* thread) {
+void ThreadSnapshot::initialize(ThreadsList * t_list, JavaThread* thread) {
   _thread = thread;
   _threadObj = thread->threadObj();
-  _stack_trace = NULL;
-  _concurrent_locks = NULL;
-  _next = NULL;
 
   ThreadStatistics* stat = thread->get_thread_stat();
   _contended_enter_ticks = stat->contended_enter_ticks();
@@ -846,9 +860,6 @@
   _sleep_ticks = stat->sleep_ticks();
   _sleep_count = stat->sleep_count();
 
-  _blocker_object = NULL;
-  _blocker_object_owner = NULL;
-
   _thread_status = java_lang_Thread::get_thread_status(_threadObj);
   _is_ext_suspended = thread->is_being_ext_suspended();
   _is_in_native = (thread->thread_state() == _thread_in_native);
--- a/src/hotspot/share/services/threadService.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/services/threadService.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -213,12 +213,15 @@
   ThreadConcurrentLocks* _concurrent_locks;
   ThreadSnapshot*        _next;
 
-public:
-  // Dummy snapshot
+  // ThreadSnapshot instances should only be created via
+  // ThreadDumpResult::add_thread_snapshot.
+  friend class ThreadDumpResult;
   ThreadSnapshot() : _thread(NULL), _threadObj(NULL),
                      _blocker_object(NULL), _blocker_object_owner(NULL),
                      _stack_trace(NULL), _concurrent_locks(NULL), _next(NULL) {};
-  ThreadSnapshot(ThreadsList * t_list, JavaThread* thread);
+  void        initialize(ThreadsList * t_list, JavaThread* thread);
+
+public:
   ~ThreadSnapshot();
 
   java_lang_Thread::ThreadStatus thread_status() { return _thread_status; }
@@ -367,12 +370,16 @@
   ThreadsListSetter    _setter;  // Helper to set hazard ptr in the originating thread
                                  // which protects the JavaThreads in _snapshots.
 
+  void                 link_thread_snapshot(ThreadSnapshot* ts);
+
  public:
   ThreadDumpResult();
   ThreadDumpResult(int num_threads);
   ~ThreadDumpResult();
 
-  void                 add_thread_snapshot(ThreadSnapshot* ts);
+  ThreadSnapshot*      add_thread_snapshot();
+  ThreadSnapshot*      add_thread_snapshot(JavaThread* thread);
+
   void                 set_next(ThreadDumpResult* next) { _next = next; }
   ThreadDumpResult*    next()                           { return _next; }
   int                  num_threads()                    { return _num_threads; }
--- a/src/hotspot/share/utilities/bitMap.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/utilities/bitMap.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -429,12 +429,6 @@
     return _map.size();
   }
 
-  // Returns number of full slots that have been allocated
-  idx_t size_in_slots() {
-    // Round down
-    return _map.size() / _bits_per_slot;
-  }
-
   bool is_valid_index(idx_t slot_index, idx_t bit_within_slot_index);
   bool at(idx_t slot_index, idx_t bit_within_slot_index) const;
   void set_bit(idx_t slot_index, idx_t bit_within_slot_index);
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hotspot/share/utilities/count_leading_zeros.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,71 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#ifndef SHARE_UTILITIES_COUNT_LEADING_ZEROS_HPP
+#define SHARE_UTILITIES_COUNT_LEADING_ZEROS_HPP
+
+#include "utilities/debug.hpp"
+#include "utilities/globalDefinitions.hpp"
+#include "utilities/count_trailing_zeros.hpp"
+
+#if defined(TARGET_COMPILER_visCPP)
+#include <intrin.h>
+#pragma intrinsic(_BitScanReverse)
+#elif defined(TARGET_COMPILER_xlc)
+#include <builtins.h>
+#endif
+
+// uint32_t count_leading_zeros(uint32_t x)
+// Return the number of leading zeros in x, e.g. the zero-based index
+// of the most significant set bit in x.  Undefined for 0.
+inline uint32_t count_leading_zeros(uint32_t x) {
+  assert(x != 0, "precondition");
+#if defined(TARGET_COMPILER_gcc)
+  return __builtin_clz(x);
+#elif defined(TARGET_COMPILER_visCPP)
+  unsigned long index;
+  _BitScanReverse(&index, x);
+  return index ^ 31u;
+#elif defined(TARGET_COMPILER_xlc)
+  return __cntlz4(x);
+#else
+  // Efficient and portable fallback implementation:
+  // http://graphics.stanford.edu/~seander/bithacks.html#IntegerLogDeBruijn
+  // - with positions xor'd by 31 to get number of leading zeros
+  // rather than position of highest bit.
+  static const int MultiplyDeBruijnBitPosition[32] = {
+      31, 22, 30, 21, 18, 10, 29,  2, 20, 17, 15, 13, 9,  6, 28, 1,
+      23, 19, 11,  3, 16, 14,  7, 24, 12,  4,  8, 25, 5, 26, 27, 0
+  };
+
+  x |= x >> 1; // first round down to one less than a power of 2
+  x |= x >> 2;
+  x |= x >> 4;
+  x |= x >> 8;
+  x |= x >> 16;
+  return MultiplyDeBruijnBitPosition[(uint32_t)( x * 0x07c4acddu ) >> 27];
+#endif
+}
+
+#endif // SHARE_UTILITIES_COUNT_LEADING_ZEROS_HPP
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hotspot/share/utilities/population_count.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,47 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#ifndef SHARE_UTILITIES_POPULATION_COUNT_HPP
+#define SHARE_UTILITIES_POPULATION_COUNT_HPP
+
+#include "utilities/debug.hpp"
+#include "utilities/globalDefinitions.hpp"
+
+// Returns the population count of x, i.e., the number of bits set in x.
+//
+// Adapted from Hacker's Delight, 2nd Edition, Figure 5-2.
+//
+// Ideally this should be dispatched per platform to use optimized
+// instructions when available, such as POPCNT on modern x86/AMD. Our builds
+// still target and support older architectures that might lack support for
+// these, however. For example, with current build configurations,
+// __builtin_popcount(x) would generate a call to a similar but slower 64-bit
+// version of this 32-bit implementation.
+static uint32_t population_count(uint32_t x) {
+  x -= ((x >> 1) & 0x55555555);
+  x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
+  return (((x + (x >> 4)) & 0x0F0F0F0F) * 0x01010101) >> 24;
+}
+
+#endif // SHARE_UTILITIES_POPULATION_COUNT_HPP
--- a/src/hotspot/share/utilities/resourceHash.hpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/hotspot/share/utilities/resourceHash.hpp	Tue Jan 29 09:38:31 2019 -0500
@@ -27,11 +27,6 @@
 
 #include "memory/allocation.hpp"
 
-template<typename K> struct ResourceHashtableFns {
-    typedef unsigned (*hash_fn)(K const&);
-    typedef bool (*equals_fn)(K const&, K const&);
-};
-
 template<
     typename K, typename V,
     // xlC does not compile this:
@@ -160,10 +155,6 @@
       ++bucket;
     }
   }
-
-  static size_t node_size() {
-    return sizeof(Node);
-  }
 };
 
 
--- a/src/java.base/share/classes/java/lang/constant/ClassDesc.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/lang/constant/ClassDesc.java	Tue Jan 29 09:38:31 2019 -0500
@@ -101,10 +101,8 @@
             return of(className);
         }
         validateMemberName(requireNonNull(className), false);
-        return ofDescriptor(String.format("L%s%s%s;",
-                                          binaryToInternal(packageName),
-                                          (packageName.length() > 0 ? "/" : ""),
-                                          className));
+        return ofDescriptor("L" + binaryToInternal(packageName) +
+                (packageName.length() > 0 ? "/" : "") + className + ";");
     }
 
     /**
@@ -134,12 +132,14 @@
     static ClassDesc ofDescriptor(String descriptor) {
         requireNonNull(descriptor);
         if (descriptor.isEmpty()) {
-            throw new IllegalArgumentException(String.format("not a valid reference type descriptor: %s", descriptor));
+            throw new IllegalArgumentException(
+                    "not a valid reference type descriptor: " + descriptor);
         }
         int depth = ConstantUtils.arrayDepth(descriptor);
         if (depth > ConstantUtils.MAX_ARRAY_TYPE_DESC_DIMENSIONS) {
-            throw new IllegalArgumentException(String.format("Cannot create an array type descriptor with more than %d dimensions",
-                    ConstantUtils.MAX_ARRAY_TYPE_DESC_DIMENSIONS));
+            throw new IllegalArgumentException(
+                    "Cannot create an array type descriptor with more than " +
+                    ConstantUtils.MAX_ARRAY_TYPE_DESC_DIMENSIONS + " dimensions");
         }
         return (descriptor.length() == 1)
                ? new PrimitiveClassDescImpl(descriptor)
@@ -157,8 +157,9 @@
     default ClassDesc arrayType() {
         int depth = ConstantUtils.arrayDepth(descriptorString());
         if (depth >= ConstantUtils.MAX_ARRAY_TYPE_DESC_DIMENSIONS) {
-            throw new IllegalStateException(String.format("Cannot create an array type descriptor with more than %d dimensions",
-                    ConstantUtils.MAX_ARRAY_TYPE_DESC_DIMENSIONS));
+            throw new IllegalStateException(
+                    "Cannot create an array type descriptor with more than " +
+                    ConstantUtils.MAX_ARRAY_TYPE_DESC_DIMENSIONS + " dimensions");
         }
         return arrayType(1);
     }
@@ -201,7 +202,7 @@
         validateMemberName(nestedName, false);
         if (!isClassOrInterface())
             throw new IllegalStateException("Outer class is not a class or interface type");
-        return ClassDesc.ofDescriptor(String.format("%s$%s;", dropLastChar(descriptorString()), nestedName));
+        return ClassDesc.ofDescriptor(dropLastChar(descriptorString()) + "$" + nestedName + ";");
     }
 
     /**
--- a/src/java.base/share/classes/java/lang/invoke/InnerClassLambdaMetafactory.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/lang/invoke/InnerClassLambdaMetafactory.java	Tue Jan 29 09:38:31 2019 -0500
@@ -77,6 +77,7 @@
     private static final String DESCR_CTOR_NOT_SERIALIZABLE_EXCEPTION = "(Ljava/lang/String;)V";
     private static final String[] SER_HOSTILE_EXCEPTIONS = new String[] {NAME_NOT_SERIALIZABLE_EXCEPTION};
 
+    private static final String DESCR_HIDDEN = "Ljdk/internal/vm/annotation/Hidden;";
 
     private static final String[] EMPTY_STRING_ARRAY = new String[0];
 
@@ -279,7 +280,7 @@
         // Forward the SAM method
         MethodVisitor mv = cw.visitMethod(ACC_PUBLIC, samMethodName,
                                           samMethodType.toMethodDescriptorString(), null, null);
-        mv.visitAnnotation("Ljava/lang/invoke/LambdaForm$Hidden;", true);
+        mv.visitAnnotation(DESCR_HIDDEN, true);
         new ForwardingMethodGenerator(mv).generate(samMethodType);
 
         // Forward the bridges
@@ -287,7 +288,7 @@
             for (MethodType mt : additionalBridges) {
                 mv = cw.visitMethod(ACC_PUBLIC|ACC_BRIDGE, samMethodName,
                                     mt.toMethodDescriptorString(), null, null);
-                mv.visitAnnotation("Ljava/lang/invoke/LambdaForm$Hidden;", true);
+                mv.visitAnnotation(DESCR_HIDDEN, true);
                 new ForwardingMethodGenerator(mv).generate(mt);
             }
         }
--- a/src/java.base/share/classes/java/lang/invoke/InvokerBytecodeGenerator.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/lang/invoke/InvokerBytecodeGenerator.java	Tue Jan 29 09:38:31 2019 -0500
@@ -721,11 +721,11 @@
         }
     }
 
-    static final String  LF_HIDDEN_SIG = className("Ljava/lang/invoke/LambdaForm$Hidden;");
-    static final String  LF_COMPILED_SIG = className("Ljava/lang/invoke/LambdaForm$Compiled;");
-    static final String  FORCEINLINE_SIG = className("Ljdk/internal/vm/annotation/ForceInline;");
-    static final String  DONTINLINE_SIG = className("Ljdk/internal/vm/annotation/DontInline;");
-    static final String  INJECTEDPROFILE_SIG = className("Ljava/lang/invoke/InjectedProfile;");
+    static final String      DONTINLINE_SIG = className("Ljdk/internal/vm/annotation/DontInline;");
+    static final String     FORCEINLINE_SIG = className("Ljdk/internal/vm/annotation/ForceInline;");
+    static final String          HIDDEN_SIG = className("Ljdk/internal/vm/annotation/Hidden;");
+    static final String INJECTEDPROFILE_SIG = className("Ljava/lang/invoke/InjectedProfile;");
+    static final String     LF_COMPILED_SIG = className("Ljava/lang/invoke/LambdaForm$Compiled;");
 
     /**
      * Generate an invoker method for the passed {@link LambdaForm}.
@@ -748,7 +748,7 @@
         methodPrologue();
 
         // Suppress this method in backtraces displayed to the user.
-        mv.visitAnnotation(LF_HIDDEN_SIG, true);
+        mv.visitAnnotation(HIDDEN_SIG, true);
 
         // Mark this method as a compiled LambdaForm
         mv.visitAnnotation(LF_COMPILED_SIG, true);
@@ -1752,7 +1752,7 @@
         methodPrologue();
 
         // Suppress this method in backtraces displayed to the user.
-        mv.visitAnnotation(LF_HIDDEN_SIG, true);
+        mv.visitAnnotation(HIDDEN_SIG, true);
 
         // Don't inline the interpreter entry.
         mv.visitAnnotation(DONTINLINE_SIG, true);
@@ -1812,7 +1812,7 @@
         methodPrologue();
 
         // Suppress this method in backtraces displayed to the user.
-        mv.visitAnnotation(LF_HIDDEN_SIG, true);
+        mv.visitAnnotation(HIDDEN_SIG, true);
 
         // Force inlining of this invoker method.
         mv.visitAnnotation(FORCEINLINE_SIG, true);
--- a/src/java.base/share/classes/java/lang/invoke/LambdaForm.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/lang/invoke/LambdaForm.java	Tue Jan 29 09:38:31 2019 -0500
@@ -27,6 +27,7 @@
 
 import jdk.internal.perf.PerfCounter;
 import jdk.internal.vm.annotation.DontInline;
+import jdk.internal.vm.annotation.Hidden;
 import jdk.internal.vm.annotation.Stable;
 import sun.invoke.util.Wrapper;
 
@@ -1828,15 +1829,6 @@
     @interface Compiled {
     }
 
-    /**
-     * Internal marker for LambdaForm interpreter frames.
-     */
-    /*non-public*/
-    @Target(ElementType.METHOD)
-    @Retention(RetentionPolicy.RUNTIME)
-    @interface Hidden {
-    }
-
     private static final HashMap<String,Integer> DEBUG_NAME_COUNTERS;
     private static final HashMap<LambdaForm,String> DEBUG_NAMES;
     static {
--- a/src/java.base/share/classes/java/lang/invoke/MethodHandleImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/lang/invoke/MethodHandleImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -33,6 +33,7 @@
 import jdk.internal.reflect.CallerSensitive;
 import jdk.internal.reflect.Reflection;
 import jdk.internal.vm.annotation.ForceInline;
+import jdk.internal.vm.annotation.Hidden;
 import jdk.internal.vm.annotation.Stable;
 import sun.invoke.empty.Empty;
 import sun.invoke.util.ValueConversions;
@@ -681,7 +682,7 @@
         return SimpleMethodHandle.make(srcType, form);
     }
 
-    @LambdaForm.Hidden
+    @Hidden
     static
     MethodHandle selectAlternative(boolean testResult, MethodHandle target, MethodHandle fallback) {
         if (testResult) {
@@ -692,7 +693,7 @@
     }
 
     // Intrinsified by C2. Counters are used during parsing to calculate branch frequencies.
-    @LambdaForm.Hidden
+    @Hidden
     @jdk.internal.HotSpotIntrinsicCandidate
     static
     boolean profileBoolean(boolean result, int[] counters) {
@@ -708,7 +709,7 @@
     }
 
     // Intrinsified by C2. Returns true if obj is a compile-time constant.
-    @LambdaForm.Hidden
+    @Hidden
     @jdk.internal.HotSpotIntrinsicCandidate
     static
     boolean isCompileConstant(Object obj) {
@@ -1054,7 +1055,7 @@
      * Intrinsified during LambdaForm compilation
      * (see {@link InvokerBytecodeGenerator#emitGuardWithCatch emitGuardWithCatch}).
      */
-    @LambdaForm.Hidden
+    @Hidden
     static Object guardWithCatch(MethodHandle target, Class<? extends Throwable> exType, MethodHandle catcher,
                                  Object... av) throws Throwable {
         // Use asFixedArity() to avoid unnecessary boxing of last argument for VarargsCollector case.
@@ -1067,7 +1068,7 @@
     }
 
     /** Prepend elements to an array. */
-    @LambdaForm.Hidden
+    @Hidden
     private static Object[] prepend(Object[] array, Object... elems) {
         int nArray = array.length;
         int nElems = elems.length;
@@ -1265,7 +1266,7 @@
                           null, null);
 
             // Suppress invoker method in stack traces.
-            AnnotationVisitor av0 = mv.visitAnnotation("Ljava/lang/invoke/LambdaForm$Hidden;", true);
+            AnnotationVisitor av0 = mv.visitAnnotation(InvokerBytecodeGenerator.HIDDEN_SIG, true);
             av0.visitEnd();
 
             mv.visitCode();
@@ -1969,7 +1970,7 @@
      * Intrinsified during LambdaForm compilation
      * (see {@link InvokerBytecodeGenerator#emitLoop(int)}).
      */
-    @LambdaForm.Hidden
+    @Hidden
     static Object loop(BasicType[] localTypes, LoopClauses clauseData, Object... av) throws Throwable {
         final MethodHandle[] init = clauseData.clauses[0];
         final MethodHandle[] step = clauseData.clauses[1];
@@ -2174,7 +2175,7 @@
      * Intrinsified during LambdaForm compilation
      * (see {@link InvokerBytecodeGenerator#emitTryFinally emitTryFinally}).
      */
-    @LambdaForm.Hidden
+    @Hidden
     static Object tryFinally(MethodHandle target, MethodHandle cleanup, Object... av) throws Throwable {
         Throwable t = null;
         Object r = null;
--- a/src/java.base/share/classes/java/net/HttpConnectSocketImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/net/HttpConnectSocketImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -197,14 +197,4 @@
         else
             return super.getPort();
     }
-
-    @Override
-    protected int getLocalPort() {
-        if (socket != null)
-            return super.getLocalPort();
-        if (external_address != null)
-            return external_address.getPort();
-        else
-            return super.getLocalPort();
-    }
 }
--- a/src/java.base/share/classes/java/net/SocksSocketImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/net/SocksSocketImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -28,14 +28,11 @@
 import java.io.OutputStream;
 import java.io.BufferedOutputStream;
 import java.security.AccessController;
-import java.security.PrivilegedAction;
-import java.security.PrivilegedExceptionAction;
 
 import jdk.internal.util.StaticProperty;
 import sun.net.SocksProxy;
 import sun.net.spi.DefaultProxySelector;
 import sun.net.www.ParseUtil;
-/* import org.ietf.jgss.*; */
 
 /**
  * SOCKS (V4 & V5) TCP socket implementation (RFC 1928).
@@ -51,19 +48,11 @@
     private Socket cmdsock = null;
     private InputStream cmdIn = null;
     private OutputStream cmdOut = null;
-    /* true if the Proxy has been set programmatically */
-    private boolean applicationSetProxy;  /* false */
-
 
     SocksSocketImpl() {
         // Nothing needed
     }
 
-    SocksSocketImpl(String server, int port) {
-        this.server = server;
-        this.serverPort = (port == -1 ? DEFAULT_PORT : port);
-    }
-
     SocksSocketImpl(Proxy proxy) {
         SocketAddress a = proxy.address();
         if (a instanceof InetSocketAddress) {
@@ -75,10 +64,6 @@
         useV4 = useV4(proxy);
     }
 
-    void setV4() {
-        useV4 = true;
-    }
-
     private static boolean useV4(Proxy proxy) {
         if (proxy instanceof SocksProxy
             && ((SocksProxy)proxy).protocolVersion() == 4) {
@@ -123,10 +108,6 @@
         throw new SocketTimeoutException();
     }
 
-    private int readSocksReply(InputStream in, byte[] data) throws IOException {
-        return readSocksReply(in, data, 0L);
-    }
-
     private int readSocksReply(InputStream in, byte[] data, long deadlineMillis) throws IOException {
         int len = data.length;
         int received = 0;
@@ -144,14 +125,6 @@
         return received;
     }
 
-    /**
-     * Provides the authentication mechanism required by the proxy.
-     */
-    private boolean authenticate(byte method, InputStream in,
-                                 BufferedOutputStream out) throws IOException {
-        return authenticate(method, in, out, 0L);
-    }
-
     private boolean authenticate(byte method, InputStream in,
                                  BufferedOutputStream out,
                                  long deadlineMillis) throws IOException {
@@ -212,60 +185,6 @@
             /* Authentication succeeded */
             return true;
         }
-        /**
-         * GSSAPI authentication mechanism.
-         * Unfortunately the RFC seems out of sync with the Reference
-         * implementation. I'll leave this in for future completion.
-         */
-//      if (method == GSSAPI) {
-//          try {
-//              GSSManager manager = GSSManager.getInstance();
-//              GSSName name = manager.createName("SERVICE:socks@"+server,
-//                                                   null);
-//              GSSContext context = manager.createContext(name, null, null,
-//                                                         GSSContext.DEFAULT_LIFETIME);
-//              context.requestMutualAuth(true);
-//              context.requestReplayDet(true);
-//              context.requestSequenceDet(true);
-//              context.requestCredDeleg(true);
-//              byte []inToken = new byte[0];
-//              while (!context.isEstablished()) {
-//                  byte[] outToken
-//                      = context.initSecContext(inToken, 0, inToken.length);
-//                  // send the output token if generated
-//                  if (outToken != null) {
-//                      out.write(1);
-//                      out.write(1);
-//                      out.writeShort(outToken.length);
-//                      out.write(outToken);
-//                      out.flush();
-//                      data = new byte[2];
-//                      i = readSocksReply(in, data, deadlineMillis);
-//                      if (i != 2 || data[1] == 0xff) {
-//                          in.close();
-//                          out.close();
-//                          return false;
-//                      }
-//                      i = readSocksReply(in, data, deadlineMillis);
-//                      int len = 0;
-//                      len = ((int)data[0] & 0xff) << 8;
-//                      len += data[1];
-//                      data = new byte[len];
-//                      i = readSocksReply(in, data, deadlineMillis);
-//                      if (i == len)
-//                          return true;
-//                      in.close();
-//                      out.close();
-//                  }
-//              }
-//          } catch (GSSException e) {
-//              /* RFC 1961 states that if Context initialisation fails the connection
-//                 MUST be closed */
-//              e.printStackTrace();
-//              in.close();
-//              out.close();
-//          }
-//      }
         return false;
     }
 
@@ -590,450 +509,6 @@
         external_address = epoint;
     }
 
-    private void bindV4(InputStream in, OutputStream out,
-                        InetAddress baddr,
-                        int lport) throws IOException {
-        if (!(baddr instanceof Inet4Address)) {
-            throw new SocketException("SOCKS V4 requires IPv4 only addresses");
-        }
-        super.bind(baddr, lport);
-        byte[] addr1 = baddr.getAddress();
-        /* Test for AnyLocal */
-        InetAddress naddr = baddr;
-        if (naddr.isAnyLocalAddress()) {
-            naddr = AccessController.doPrivileged(
-                        new PrivilegedAction<>() {
-                            public InetAddress run() {
-                                return cmdsock.getLocalAddress();
-
-                            }
-                        });
-            addr1 = naddr.getAddress();
-        }
-        out.write(PROTO_VERS4);
-        out.write(BIND);
-        out.write((super.getLocalPort() >> 8) & 0xff);
-        out.write((super.getLocalPort() >> 0) & 0xff);
-        out.write(addr1);
-        String userName = getUserName();
-        try {
-            out.write(userName.getBytes("ISO-8859-1"));
-        } catch (java.io.UnsupportedEncodingException uee) {
-            assert false;
-        }
-        out.write(0);
-        out.flush();
-        byte[] data = new byte[8];
-        int n = readSocksReply(in, data);
-        if (n != 8)
-            throw new SocketException("Reply from SOCKS server has bad length: " + n);
-        if (data[0] != 0 && data[0] != 4)
-            throw new SocketException("Reply from SOCKS server has bad version");
-        SocketException ex = null;
-        switch (data[1]) {
-        case 90:
-            // Success!
-            external_address = new InetSocketAddress(baddr, lport);
-            break;
-        case 91:
-            ex = new SocketException("SOCKS request rejected");
-            break;
-        case 92:
-            ex = new SocketException("SOCKS server couldn't reach destination");
-            break;
-        case 93:
-            ex = new SocketException("SOCKS authentication failed");
-            break;
-        default:
-            ex = new SocketException("Reply from SOCKS server contains bad status");
-            break;
-        }
-        if (ex != null) {
-            in.close();
-            out.close();
-            throw ex;
-        }
-
-    }
-
-    /**
-     * Sends the Bind request to the SOCKS proxy. In the SOCKS protocol, bind
-     * means "accept incoming connection from", so the SocketAddress is
-     * the one of the host we do accept connection from.
-     *
-     * @param      saddr   the Socket address of the remote host.
-     * @exception  IOException  if an I/O error occurs when binding this socket.
-     */
-    protected synchronized void socksBind(InetSocketAddress saddr) throws IOException {
-        if (socket != null) {
-            // this is a client socket, not a server socket, don't
-            // call the SOCKS proxy for a bind!
-            return;
-        }
-
-        // Connects to the SOCKS server
-
-        if (server == null) {
-            // This is the general case
-            // server is not null only when the socket was created with a
-            // specified proxy in which case it does bypass the ProxySelector
-            ProxySelector sel = java.security.AccessController.doPrivileged(
-                new java.security.PrivilegedAction<>() {
-                    public ProxySelector run() {
-                            return ProxySelector.getDefault();
-                        }
-                    });
-            if (sel == null) {
-                /*
-                 * No default proxySelector --> direct connection
-                 */
-                return;
-            }
-            URI uri;
-            // Use getHostString() to avoid reverse lookups
-            String host = saddr.getHostString();
-            // IPv6 literal?
-            if (saddr.getAddress() instanceof Inet6Address &&
-                (!host.startsWith("[")) && (host.indexOf(':') >= 0)) {
-                host = "[" + host + "]";
-            }
-            try {
-                uri = new URI("serversocket://" + ParseUtil.encodePath(host) + ":"+ saddr.getPort());
-            } catch (URISyntaxException e) {
-                // This shouldn't happen
-                assert false : e;
-                uri = null;
-            }
-            Proxy p = null;
-            Exception savedExc = null;
-            java.util.Iterator<Proxy> iProxy = null;
-            iProxy = sel.select(uri).iterator();
-            if (iProxy == null || !(iProxy.hasNext())) {
-                return;
-            }
-            while (iProxy.hasNext()) {
-                p = iProxy.next();
-                if (p == null || p.type() != Proxy.Type.SOCKS) {
-                    return;
-                }
-
-                if (!(p.address() instanceof InetSocketAddress))
-                    throw new SocketException("Unknown address type for proxy: " + p);
-                // Use getHostString() to avoid reverse lookups
-                server = ((InetSocketAddress) p.address()).getHostString();
-                serverPort = ((InetSocketAddress) p.address()).getPort();
-                useV4 = useV4(p);
-
-                // Connects to the SOCKS server
-                try {
-                    AccessController.doPrivileged(
-                        new PrivilegedExceptionAction<>() {
-                            public Void run() throws Exception {
-                                cmdsock = new Socket(new PlainSocketImpl());
-                                cmdsock.connect(new InetSocketAddress(server, serverPort));
-                                cmdIn = cmdsock.getInputStream();
-                                cmdOut = cmdsock.getOutputStream();
-                                return null;
-                            }
-                        });
-                } catch (Exception e) {
-                    // Ooops, let's notify the ProxySelector
-                    sel.connectFailed(uri,p.address(),new SocketException(e.getMessage()));
-                    server = null;
-                    serverPort = -1;
-                    cmdsock = null;
-                    savedExc = e;
-                    // Will continue the while loop and try the next proxy
-                }
-            }
-
-            /*
-             * If server is still null at this point, none of the proxy
-             * worked
-             */
-            if (server == null || cmdsock == null) {
-                throw new SocketException("Can't connect to SOCKS proxy:"
-                                          + savedExc.getMessage());
-            }
-        } else {
-            try {
-                AccessController.doPrivileged(
-                    new PrivilegedExceptionAction<>() {
-                        public Void run() throws Exception {
-                            cmdsock = new Socket(new PlainSocketImpl());
-                            cmdsock.connect(new InetSocketAddress(server, serverPort));
-                            cmdIn = cmdsock.getInputStream();
-                            cmdOut = cmdsock.getOutputStream();
-                            return null;
-                        }
-                    });
-            } catch (Exception e) {
-                throw new SocketException(e.getMessage());
-            }
-        }
-        BufferedOutputStream out = new BufferedOutputStream(cmdOut, 512);
-        InputStream in = cmdIn;
-        if (useV4) {
-            bindV4(in, out, saddr.getAddress(), saddr.getPort());
-            return;
-        }
-        out.write(PROTO_VERS);
-        out.write(2);
-        out.write(NO_AUTH);
-        out.write(USER_PASSW);
-        out.flush();
-        byte[] data = new byte[2];
-        int i = readSocksReply(in, data);
-        if (i != 2 || ((int)data[0]) != PROTO_VERS) {
-            // Maybe it's not a V5 sever after all
-            // Let's try V4 before we give up
-            bindV4(in, out, saddr.getAddress(), saddr.getPort());
-            return;
-        }
-        if (((int)data[1]) == NO_METHODS)
-            throw new SocketException("SOCKS : No acceptable methods");
-        if (!authenticate(data[1], in, out)) {
-            throw new SocketException("SOCKS : authentication failed");
-        }
-        // We're OK. Let's issue the BIND command.
-        out.write(PROTO_VERS);
-        out.write(BIND);
-        out.write(0);
-        int lport = saddr.getPort();
-        if (saddr.isUnresolved()) {
-            out.write(DOMAIN_NAME);
-            out.write(saddr.getHostName().length());
-            try {
-                out.write(saddr.getHostName().getBytes("ISO-8859-1"));
-            } catch (java.io.UnsupportedEncodingException uee) {
-                assert false;
-            }
-            out.write((lport >> 8) & 0xff);
-            out.write((lport >> 0) & 0xff);
-        } else if (saddr.getAddress() instanceof Inet4Address) {
-            byte[] addr1 = saddr.getAddress().getAddress();
-            out.write(IPV4);
-            out.write(addr1);
-            out.write((lport >> 8) & 0xff);
-            out.write((lport >> 0) & 0xff);
-            out.flush();
-        } else if (saddr.getAddress() instanceof Inet6Address) {
-            byte[] addr1 = saddr.getAddress().getAddress();
-            out.write(IPV6);
-            out.write(addr1);
-            out.write((lport >> 8) & 0xff);
-            out.write((lport >> 0) & 0xff);
-            out.flush();
-        } else {
-            cmdsock.close();
-            throw new SocketException("unsupported address type : " + saddr);
-        }
-        data = new byte[4];
-        i = readSocksReply(in, data);
-        SocketException ex = null;
-        int len, nport;
-        byte[] addr;
-        switch (data[1]) {
-        case REQUEST_OK:
-            // success!
-            switch(data[3]) {
-            case IPV4:
-                addr = new byte[4];
-                i = readSocksReply(in, addr);
-                if (i != 4)
-                    throw new SocketException("Reply from SOCKS server badly formatted");
-                data = new byte[2];
-                i = readSocksReply(in, data);
-                if (i != 2)
-                    throw new SocketException("Reply from SOCKS server badly formatted");
-                nport = ((int)data[0] & 0xff) << 8;
-                nport += ((int)data[1] & 0xff);
-                external_address =
-                    new InetSocketAddress(new Inet4Address("", addr) , nport);
-                break;
-            case DOMAIN_NAME:
-                len = data[1];
-                byte[] host = new byte[len];
-                i = readSocksReply(in, host);
-                if (i != len)
-                    throw new SocketException("Reply from SOCKS server badly formatted");
-                data = new byte[2];
-                i = readSocksReply(in, data);
-                if (i != 2)
-                    throw new SocketException("Reply from SOCKS server badly formatted");
-                nport = ((int)data[0] & 0xff) << 8;
-                nport += ((int)data[1] & 0xff);
-                external_address = new InetSocketAddress(new String(host), nport);
-                break;
-            case IPV6:
-                len = data[1];
-                addr = new byte[len];
-                i = readSocksReply(in, addr);
-                if (i != len)
-                    throw new SocketException("Reply from SOCKS server badly formatted");
-                data = new byte[2];
-                i = readSocksReply(in, data);
-                if (i != 2)
-                    throw new SocketException("Reply from SOCKS server badly formatted");
-                nport = ((int)data[0] & 0xff) << 8;
-                nport += ((int)data[1] & 0xff);
-                external_address =
-                    new InetSocketAddress(new Inet6Address("", addr), nport);
-                break;
-            }
-            break;
-        case GENERAL_FAILURE:
-            ex = new SocketException("SOCKS server general failure");
-            break;
-        case NOT_ALLOWED:
-            ex = new SocketException("SOCKS: Bind not allowed by ruleset");
-            break;
-        case NET_UNREACHABLE:
-            ex = new SocketException("SOCKS: Network unreachable");
-            break;
-        case HOST_UNREACHABLE:
-            ex = new SocketException("SOCKS: Host unreachable");
-            break;
-        case CONN_REFUSED:
-            ex = new SocketException("SOCKS: Connection refused");
-            break;
-        case TTL_EXPIRED:
-            ex =  new SocketException("SOCKS: TTL expired");
-            break;
-        case CMD_NOT_SUPPORTED:
-            ex = new SocketException("SOCKS: Command not supported");
-            break;
-        case ADDR_TYPE_NOT_SUP:
-            ex = new SocketException("SOCKS: address type not supported");
-            break;
-        }
-        if (ex != null) {
-            in.close();
-            out.close();
-            cmdsock.close();
-            cmdsock = null;
-            throw ex;
-        }
-        cmdIn = in;
-        cmdOut = out;
-    }
-
-    /**
-     * Accepts a connection from a specific host.
-     *
-     * @param      s   the accepted connection.
-     * @param      saddr the socket address of the host we do accept
-     *               connection from
-     * @exception  IOException  if an I/O error occurs when accepting the
-     *               connection.
-     */
-    protected void acceptFrom(SocketImpl s, InetSocketAddress saddr) throws IOException {
-        if (cmdsock == null) {
-            // Not a Socks ServerSocket.
-            return;
-        }
-        InputStream in = cmdIn;
-        // Sends the "SOCKS BIND" request.
-        socksBind(saddr);
-        in.read();
-        int i = in.read();
-        in.read();
-        SocketException ex = null;
-        int nport;
-        byte[] addr;
-        InetSocketAddress real_end = null;
-        switch (i) {
-        case REQUEST_OK:
-            // success!
-            i = in.read();
-            switch(i) {
-            case IPV4:
-                addr = new byte[4];
-                readSocksReply(in, addr);
-                nport = in.read() << 8;
-                nport += in.read();
-                real_end =
-                    new InetSocketAddress(new Inet4Address("", addr) , nport);
-                break;
-            case DOMAIN_NAME:
-                int len = in.read();
-                addr = new byte[len];
-                readSocksReply(in, addr);
-                nport = in.read() << 8;
-                nport += in.read();
-                real_end = new InetSocketAddress(new String(addr), nport);
-                break;
-            case IPV6:
-                addr = new byte[16];
-                readSocksReply(in, addr);
-                nport = in.read() << 8;
-                nport += in.read();
-                real_end =
-                    new InetSocketAddress(new Inet6Address("", addr), nport);
-                break;
-            }
-            break;
-        case GENERAL_FAILURE:
-            ex = new SocketException("SOCKS server general failure");
-            break;
-        case NOT_ALLOWED:
-            ex = new SocketException("SOCKS: Accept not allowed by ruleset");
-            break;
-        case NET_UNREACHABLE:
-            ex = new SocketException("SOCKS: Network unreachable");
-            break;
-        case HOST_UNREACHABLE:
-            ex = new SocketException("SOCKS: Host unreachable");
-            break;
-        case CONN_REFUSED:
-            ex = new SocketException("SOCKS: Connection refused");
-            break;
-        case TTL_EXPIRED:
-            ex =  new SocketException("SOCKS: TTL expired");
-            break;
-        case CMD_NOT_SUPPORTED:
-            ex = new SocketException("SOCKS: Command not supported");
-            break;
-        case ADDR_TYPE_NOT_SUP:
-            ex = new SocketException("SOCKS: address type not supported");
-            break;
-        }
-        if (ex != null) {
-            cmdIn.close();
-            cmdOut.close();
-            cmdsock.close();
-            cmdsock = null;
-            throw ex;
-        }
-
-        /**
-         * This is where we have to do some fancy stuff.
-         * The datastream from the socket "accepted" by the proxy will
-         * come through the cmdSocket. So we have to swap the socketImpls
-         */
-        if (s instanceof SocksSocketImpl) {
-            ((SocksSocketImpl)s).external_address = real_end;
-        }
-        if (s instanceof PlainSocketImpl) {
-            PlainSocketImpl psi = (PlainSocketImpl) s;
-            psi.setInputStream((SocketInputStream) in);
-            psi.setFileDescriptor(cmdsock.getImpl().getFileDescriptor());
-            psi.setAddress(cmdsock.getImpl().getInetAddress());
-            psi.setPort(cmdsock.getImpl().getPort());
-            psi.setLocalPort(cmdsock.getImpl().getLocalPort());
-        } else {
-            s.fd = cmdsock.getImpl().fd;
-            s.address = cmdsock.getImpl().address;
-            s.port = cmdsock.getImpl().port;
-            s.localport = cmdsock.getImpl().localport;
-        }
-
-        // Need to do that so that the socket won't be closed
-        // when the ServerSocket is closed by the user.
-        // It kinds of detaches the Socket because it is now
-        // used elsewhere.
-        cmdsock = null;
-    }
 
 
     /**
@@ -1065,16 +540,6 @@
     }
 
     @Override
-    protected int getLocalPort() {
-        if (socket != null)
-            return super.getLocalPort();
-        if (external_address != null)
-            return external_address.getPort();
-        else
-            return super.getLocalPort();
-    }
-
-    @Override
     protected void close() throws IOException {
         if (cmdsock != null)
             cmdsock.close();
@@ -1083,14 +548,6 @@
     }
 
     private String getUserName() {
-        String userName = "";
-        if (applicationSetProxy) {
-            try {
-                userName = System.getProperty("user.name");
-            } catch (SecurityException se) { /* swallow Exception */ }
-        } else {
-            userName = StaticProperty.userName();
-        }
-        return userName;
+        return StaticProperty.userName();
     }
 }
--- a/src/java.base/share/classes/java/security/AccessController.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/security/AccessController.java	Tue Jan 29 09:38:31 2019 -0500
@@ -30,6 +30,8 @@
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 import java.lang.ref.Reference;
+
+import jdk.internal.vm.annotation.Hidden;
 import sun.security.util.Debug;
 import sun.security.util.SecurityConstants;
 import jdk.internal.reflect.CallerSensitive;
@@ -790,16 +792,6 @@
 
 
     /**
-     * Internal marker for hidden implementation frames.
-     */
-    /*non-public*/
-    @Target(ElementType.METHOD)
-    @Retention(RetentionPolicy.RUNTIME)
-    @interface Hidden {
-    }
-
-
-    /**
      * Wrap an exception.  The annotations are used in a best effort to
      * avoid StackOverflowError in the caller.  Inlining the callees as
      * well and tail-call elimination could also help here, but are not
--- a/src/java.base/share/classes/java/text/SimpleDateFormat.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/text/SimpleDateFormat.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1996, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1189,7 +1189,7 @@
             }
             break;
 
-        case PATTERN_MONTH:            // 'M' (context seinsive)
+        case PATTERN_MONTH:            // 'M' (context sensitive)
             if (useDateFormatSymbols) {
                 String[] months;
                 if (count >= 4) {
@@ -2033,7 +2033,7 @@
                         return index;
                     }
                 } else {
-                    Map<String, Integer> map = getDisplayNamesMap(field, locale);
+                    Map<String, Integer> map = getDisplayContextNamesMap(field, locale);
                     if ((index = matchString(text, start, field, map, calb)) > 0) {
                         return index;
                     }
@@ -2450,6 +2450,22 @@
     }
 
     /**
+     * Obtains display names map, taking the context into account. Currently only
+     * the month name pattern 'M' is context dependent.
+     */
+    private Map<String, Integer> getDisplayContextNamesMap(int field, Locale locale) {
+        Map<String, Integer> map = calendar.getDisplayNames(field,
+            forceStandaloneForm ? Calendar.SHORT_STANDALONE : Calendar.SHORT_FORMAT, locale);
+        // Get the LONG style
+        Map<String, Integer> m = calendar.getDisplayNames(field,
+            forceStandaloneForm ? Calendar.LONG_STANDALONE : Calendar.LONG_FORMAT, locale);
+        if (m != null) {
+            map.putAll(m);
+        }
+        return map;
+    }
+
+    /**
      * After reading an object from the input stream, the format
      * pattern in the object is verified.
      *
--- a/src/java.base/share/classes/java/util/Base64.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/java/util/Base64.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -186,6 +186,10 @@
      * a method of this class will cause a
      * {@link java.lang.NullPointerException NullPointerException} to
      * be thrown.
+     * <p> If the encoded byte output of the needed size can not
+     *     be allocated, the encode methods of this class will
+     *     cause an {@link java.lang.OutOfMemoryError OutOfMemoryError}
+     *     to be thrown.
      *
      * @see     Decoder
      * @since   1.8
@@ -237,16 +241,37 @@
         static final Encoder RFC4648_URLSAFE = new Encoder(true, null, -1, true);
         static final Encoder RFC2045 = new Encoder(false, CRLF, MIMELINEMAX, true);
 
-        private final int outLength(int srclen) {
+        /**
+         * Calculates the length of the encoded output bytes.
+         *
+         * @param srclen length of the bytes to encode
+         * @param throwOOME if true, throws OutOfMemoryError if the length of
+         *                  the encoded bytes overflows; else returns the
+         *                  length
+         * @return length of the encoded bytes, or -1 if the length overflows
+         *
+         */
+        private final int outLength(int srclen, boolean throwOOME) {
             int len = 0;
-            if (doPadding) {
-                len = 4 * ((srclen + 2) / 3);
-            } else {
-                int n = srclen % 3;
-                len = 4 * (srclen / 3) + (n == 0 ? 0 : n + 1);
+            try {
+                if (doPadding) {
+                    len = Math.multiplyExact(4, (Math.addExact(srclen, 2) / 3));
+                } else {
+                    int n = srclen % 3;
+                    len = Math.addExact(Math.multiplyExact(4, (srclen / 3)), (n == 0 ? 0 : n + 1));
+                }
+                if (linemax > 0) {                             // line separators
+                    len = Math.addExact(len, (len - 1) / linemax * newline.length);
+                }
+            } catch (ArithmeticException ex) {
+                if (throwOOME) {
+                    throw new OutOfMemoryError("Encoded size is too large");
+                } else {
+                    // let the caller know that encoded bytes length
+                    // is too large
+                    len = -1;
+                }
             }
-            if (linemax > 0)                                  // line separators
-                len += (len - 1) / linemax * newline.length;
             return len;
         }
 
@@ -261,7 +286,7 @@
          *          encoded bytes.
          */
         public byte[] encode(byte[] src) {
-            int len = outLength(src.length);          // dst array size
+            int len = outLength(src.length, true);          // dst array size
             byte[] dst = new byte[len];
             int ret = encode0(src, 0, src.length, dst);
             if (ret != dst.length)
@@ -289,8 +314,8 @@
          *          space for encoding all input bytes.
          */
         public int encode(byte[] src, byte[] dst) {
-            int len = outLength(src.length);         // dst array size
-            if (dst.length < len)
+            int len = outLength(src.length, false);         // dst array size
+            if (dst.length < len || len == -1)
                 throw new IllegalArgumentException(
                     "Output byte array is too small for encoding all input bytes");
             return encode0(src, 0, src.length, dst);
@@ -334,7 +359,7 @@
          * @return  A newly-allocated byte buffer containing the encoded bytes.
          */
         public ByteBuffer encode(ByteBuffer buffer) {
-            int len = outLength(buffer.remaining());
+            int len = outLength(buffer.remaining(), true);
             byte[] dst = new byte[len];
             int ret = 0;
             if (buffer.hasArray()) {
@@ -469,6 +494,10 @@
      * a method of this class will cause a
      * {@link java.lang.NullPointerException NullPointerException} to
      * be thrown.
+     * <p> If the decoded byte output of the needed size can not
+     *     be allocated, the decode methods of this class will
+     *     cause an {@link java.lang.OutOfMemoryError OutOfMemoryError}
+     *     to be thrown.
      *
      * @see     Encoder
      * @since   1.8
@@ -531,7 +560,7 @@
          *          if {@code src} is not in valid Base64 scheme
          */
         public byte[] decode(byte[] src) {
-            byte[] dst = new byte[outLength(src, 0, src.length)];
+            byte[] dst = new byte[outLength(src, 0, src.length, true)];
             int ret = decode0(src, 0, src.length, dst);
             if (ret != dst.length) {
                 dst = Arrays.copyOf(dst, ret);
@@ -584,8 +613,8 @@
          *          does not have enough space for decoding all input bytes.
          */
         public int decode(byte[] src, byte[] dst) {
-            int len = outLength(src, 0, src.length);
-            if (dst.length < len)
+            int len = outLength(src, 0, src.length, false);
+            if (dst.length < len || len == -1)
                 throw new IllegalArgumentException(
                     "Output byte array is too small for decoding all input bytes");
             return decode0(src, 0, src.length, dst);
@@ -610,7 +639,7 @@
          * @return  A newly-allocated byte buffer containing the decoded bytes
          *
          * @throws  IllegalArgumentException
-         *          if {@code src} is not in valid Base64 scheme.
+         *          if {@code buffer} is not in valid Base64 scheme
          */
         public ByteBuffer decode(ByteBuffer buffer) {
             int pos0 = buffer.position();
@@ -628,7 +657,7 @@
                     sp = 0;
                     sl = src.length;
                 }
-                byte[] dst = new byte[outLength(src, sp, sl)];
+                byte[] dst = new byte[outLength(src, sp, sl, true)];
                 return ByteBuffer.wrap(dst, 0, decode0(src, sp, sl, dst));
             } catch (IllegalArgumentException iae) {
                 buffer.position(pos0);
@@ -656,7 +685,19 @@
             return new DecInputStream(is, isURL ? fromBase64URL : fromBase64, isMIME);
         }
 
-        private int outLength(byte[] src, int sp, int sl) {
+        /**
+         * Calculates the length of the decoded output bytes.
+         *
+         * @param src the byte array to decode
+         * @param sp the source  position
+         * @param sl the source limit
+         * @param throwOOME if true, throws OutOfMemoryError if the length of
+         *                  the decoded bytes overflows; else returns the
+         *                  length
+         * @return length of the decoded bytes, or -1 if the length overflows
+         *
+         */
+        private int outLength(byte[] src, int sp, int sl, boolean throwOOME) {
             int[] base64 = isURL ? fromBase64URL : fromBase64;
             int paddings = 0;
             int len = sl - sp;
@@ -691,7 +732,19 @@
             }
             if (paddings == 0 && (len & 0x3) !=  0)
                 paddings = 4 - (len & 0x3);
-            return 3 * ((len + 3) / 4) - paddings;
+
+            try {
+                len = Math.multiplyExact(3, (Math.addExact(len, 3) / 4)) - paddings;
+            } catch (ArithmeticException ex) {
+                if (throwOOME) {
+                    throw new OutOfMemoryError("Decoded size is too large");
+                } else {
+                    // let the caller know that the decoded bytes length
+                    // is too large
+                    len = -1;
+                }
+            }
+            return len;
         }
 
         private int decode0(byte[] src, int sp, int sl, byte[] dst) {
--- a/src/java.base/share/classes/javax/net/ssl/SSLSocket.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/javax/net/ssl/SSLSocket.java	Tue Jan 29 09:38:31 2019 -0500
@@ -135,7 +135,7 @@
  * applications should each close both sides of their respective connection.
  * For {@code SSLSocket} objects, for example, an application can call
  * {@link Socket#shutdownOutput()} or {@link java.io.OutputStream#close()}
- * for output strean close and call {@link Socket#shutdownInput()} or
+ * for output stream close and call {@link Socket#shutdownInput()} or
  * {@link java.io.InputStream#close()} for input stream close.  Note that
  * in some cases, closing the input stream may depend on the peer's output
  * stream being closed first.  If the connection is not closed in an orderly
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/java.base/share/classes/jdk/internal/vm/annotation/Hidden.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+package jdk.internal.vm.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * A method or constructor may be annotated as "hidden" to hint it is desirable
+ * to omit it from stack traces.
+ *
+ * @implNote
+ * This annotation only takes effect for methods or constructors of classes
+ * loaded by the boot loader.  Annotations on methods or constructors of classes
+ * loaded outside of the boot loader are ignored.
+ *
+ * <p>HotSpot JVM provides diagnostic option {@code -XX:+ShowHiddenFrames} to
+ * always show "hidden" frames.
+ */
+@Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
+@Retention(RetentionPolicy.RUNTIME)
+public @interface Hidden {
+}
--- a/src/java.base/share/classes/sun/nio/ch/Net.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/nio/ch/Net.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -524,9 +524,30 @@
     static native int poll(FileDescriptor fd, int events, long timeout)
         throws IOException;
 
+    /**
+     * Polls a connecting socket to test if the connection has been established.
+     *
+     * @apiNote This method is public to allow it be used by code in jdk.sctp.
+     *
+     * @param timeout the timeout to wait; 0 to not wait, -1 to wait indefinitely
+     * @return 1 if connected, 0 if not connected, or IOS_INTERRUPTED
+     */
+    public static native int pollConnect(FileDescriptor fd, long timeout)
+        throws IOException;
+
+    /**
+     * Return the number of bytes in the socket input buffer.
+     */
+    static native int available(FileDescriptor fd) throws IOException;
+
+    /**
+     * Send one byte of urgent data (MSG_OOB) on the socket.
+     */
+    static native int sendOOB(FileDescriptor fd, byte data) throws IOException;
+
+
     // -- Multicast support --
 
-
     /**
      * Join IPv4 multicast group
      */
--- a/src/java.base/share/classes/sun/nio/ch/SocketChannelImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/nio/ch/SocketChannelImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -65,7 +65,7 @@
     implements SelChImpl
 {
     // Used to make native read and write calls
-    private static NativeDispatcher nd;
+    private static final NativeDispatcher nd = new SocketDispatcher();
 
     // Our file descriptor object
     private final FileDescriptor fd;
@@ -517,10 +517,10 @@
                 beginWrite(blocking);
                 if (blocking) {
                     do {
-                        n = sendOutOfBandData(fd, b);
+                        n = Net.sendOOB(fd, b);
                     } while (n == IOStatus.INTERRUPTED && isOpen());
                 } else {
-                    n = sendOutOfBandData(fd, b);
+                    n = Net.sendOOB(fd, b);
                 }
             } finally {
                 endWrite(blocking, n > 0);
@@ -772,10 +772,10 @@
                         int n = 0;
                         if (blocking) {
                             do {
-                                n = checkConnect(fd, true);
+                                n = Net.pollConnect(fd, -1);
                             } while ((n == 0 || n == IOStatus.INTERRUPTED) && isOpen());
                         } else {
-                            n = checkConnect(fd, false);
+                            n = Net.pollConnect(fd, 0);
                         }
                         connected = (n > 0);
                     } finally {
@@ -1112,19 +1112,4 @@
         sb.append(']');
         return sb.toString();
     }
-
-
-    // -- Native methods --
-
-    private static native int checkConnect(FileDescriptor fd, boolean block)
-        throws IOException;
-
-    private static native int sendOutOfBandData(FileDescriptor fd, byte data)
-        throws IOException;
-
-    static {
-        IOUtil.load();
-        nd = new SocketDispatcher();
-    }
-
 }
--- a/src/java.base/share/classes/sun/security/util/ECUtil.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/security/util/ECUtil.java	Tue Jan 29 09:38:31 2019 -0500
@@ -31,7 +31,6 @@
 import java.security.interfaces.*;
 import java.security.spec.*;
 import java.util.Arrays;
-import sun.security.x509.X509Key;
 
 public class ECUtil {
 
@@ -103,7 +102,7 @@
             ECParameterSpec params) throws InvalidKeySpecException {
         KeyFactory keyFactory = getKeyFactory();
         ECPublicKeySpec keySpec = new ECPublicKeySpec(w, params);
-        X509Key key = (X509Key)keyFactory.generatePublic(keySpec);
+        Key key = keyFactory.generatePublic(keySpec);
 
         return key.getEncoded();
     }
--- a/src/java.base/share/classes/sun/security/validator/CADistrustPolicy.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/security/validator/CADistrustPolicy.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -39,17 +39,19 @@
 enum CADistrustPolicy {
     /**
      * Distrust TLS Server certificates anchored by a Symantec root CA and
-     * issued after April 16, 2019. If enabled, this policy is currently
-     * enforced by the PKIX and SunX509 TrustManager implementations of the
-     * SunJSSE provider implementation.
+     * issued after April 16, 2019 (with exceptions for a couple of subordinate
+     * CAs, see the jdk.security.caDistrustPolicies definition in the
+     * java.security file for more details). If enabled, this policy is
+     * currently enforced by the PKIX and SunX509 TrustManager implementations
+     * of the SunJSSE provider implementation.
      */
     SYMANTEC_TLS {
-        void checkDistrust(String variant, X509Certificate anchor,
-                           X509Certificate ee) throws ValidatorException {
+        void checkDistrust(String variant, X509Certificate[] chain)
+                           throws ValidatorException {
             if (!variant.equals(Validator.VAR_TLS_SERVER)) {
                 return;
             }
-            SymantecTLSPolicy.checkDistrust(anchor, ee);
+            SymantecTLSPolicy.checkDistrust(chain);
         }
     };
 
@@ -57,13 +59,13 @@
      * Checks if the end-entity certificate is distrusted.
      *
      * @param variant the type of certificate being checked
-     * @param anchor the trust anchor certificate
-     * @param ee the end-entity certificate to check
+     * @param chain the end-entity's certificate chain. The end entity cert
+     *              is at index 0, the trust anchor at index n-1.
      * @throws ValidatorException if the end-entity certificate is distrusted
      */
     abstract void checkDistrust(String variant,
-                                X509Certificate anchor,
-                                X509Certificate ee) throws ValidatorException;
+                                X509Certificate[] chain)
+                                throws ValidatorException;
 
     // The policies set in the jdk.security.caDistrustPolicies property.
     static final EnumSet<CADistrustPolicy> POLICIES = parseProperty();
--- a/src/java.base/share/classes/sun/security/validator/EndEntityChecker.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/security/validator/EndEntityChecker.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -132,27 +132,26 @@
         return new EndEntityChecker(type, variant);
     }
 
-    void check(X509Certificate cert, Object parameter,
-            boolean checkUnresolvedCritExts, X509Certificate anchor)
-            throws CertificateException {
+    void check(X509Certificate[] chain, Object parameter,
+            boolean checkUnresolvedCritExts) throws CertificateException {
 
         if (variant.equals(Validator.VAR_GENERIC)) {
             return; // no checks
         }
 
-        Set<String> exts = getCriticalExtensions(cert);
+        Set<String> exts = getCriticalExtensions(chain[0]);
         if (variant.equals(Validator.VAR_TLS_SERVER)) {
-            checkTLSServer(cert, (String)parameter, exts);
+            checkTLSServer(chain[0], (String)parameter, exts);
         } else if (variant.equals(Validator.VAR_TLS_CLIENT)) {
-            checkTLSClient(cert, exts);
+            checkTLSClient(chain[0], exts);
         } else if (variant.equals(Validator.VAR_CODE_SIGNING)) {
-            checkCodeSigning(cert, exts);
+            checkCodeSigning(chain[0], exts);
         } else if (variant.equals(Validator.VAR_JCE_SIGNING)) {
-            checkCodeSigning(cert, exts);
+            checkCodeSigning(chain[0], exts);
         } else if (variant.equals(Validator.VAR_PLUGIN_CODE_SIGNING)) {
-            checkCodeSigning(cert, exts);
+            checkCodeSigning(chain[0], exts);
         } else if (variant.equals(Validator.VAR_TSA_SERVER)) {
-            checkTSAServer(cert, exts);
+            checkTSAServer(chain[0], exts);
         } else {
             throw new CertificateException("Unknown variant: " + variant);
         }
@@ -165,7 +164,7 @@
         // check if certificate should be distrusted according to policies
         // set in the jdk.security.caDistrustPolicies security property
         for (CADistrustPolicy policy : CADistrustPolicy.POLICIES) {
-            policy.checkDistrust(variant, anchor, cert);
+            policy.checkDistrust(variant, chain);
         }
     }
 
--- a/src/java.base/share/classes/sun/security/validator/SymantecTLSPolicy.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/security/validator/SymantecTLSPolicy.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -29,6 +29,7 @@
 import java.time.Month;
 import java.time.ZoneOffset;
 import java.util.Date;
+import java.util.Map;
 import java.util.Set;
 
 import sun.security.x509.X509CertImpl;
@@ -119,6 +120,24 @@
         "2399561127A57125DE8CEFEA610DDF2FA078B5C8067F4E828290BFB860E84B3C"
     );
 
+    private static final LocalDate DECEMBER_31_2019 =
+        LocalDate.of(2019, Month.DECEMBER, 31);
+    // SHA-256 certificate fingerprints of subCAs with later distrust dates
+    private static final Map<String, LocalDate> EXEMPT_SUBCAS = Map.of(
+        // Subject DN: C=US, O=Apple Inc., OU=Certification Authority,
+        //             CN=Apple IST CA 2 - G1
+        // Issuer DN: CN=GeoTrust Global CA, O=GeoTrust Inc., C=US
+        "AC2B922ECFD5E01711772FEA8ED372DE9D1E2245FCE3F57A9CDBEC77296A424B",
+        DECEMBER_31_2019,
+        // Subject DN: C=US, O=Apple Inc., OU=Certification Authority,
+        //             CN=Apple IST CA 8 - G1
+        // Issuer DN: CN=GeoTrust Primary Certification Authority - G2,
+        //            OU=(c) 2007 GeoTrust Inc. - For authorized use only,
+        //            O=GeoTrust Inc., C=US
+        "A4FE7C7F15155F3F0AEF7AAA83CF6E06DEB97CA3F909DF920AC1490882D488ED",
+        DECEMBER_31_2019
+    );
+
     // Any TLS Server certificate that is anchored by one of the Symantec
     // roots above and is issued after this date will be distrusted.
     private static final LocalDate APRIL_16_2019 =
@@ -128,28 +147,47 @@
      * This method assumes the eeCert is a TLS Server Cert and chains back to
      * the anchor.
      *
-     * @param anchor the trust anchor certificate
-     * @param eeCert the certificate to check
+     * @param chain the end-entity's certificate chain. The end entity cert
+     *              is at index 0, the trust anchor at index n-1.
      * @throws ValidatorException if the certificate is distrusted
      */
-    static void checkDistrust(X509Certificate anchor,
-                              X509Certificate eeCert)
+    static void checkDistrust(X509Certificate[] chain)
                               throws ValidatorException {
-        String fp = (anchor instanceof X509CertImpl)
-                    ? ((X509CertImpl)anchor).getFingerprint("SHA-256")
-                    : X509CertImpl.getFingerprint("SHA-256", anchor);
-        if (FINGERPRINTS.contains(fp)) {
-            // reject if certificate is issued after April 16, 2019
-            Date notBefore = eeCert.getNotBefore();
+        X509Certificate anchor = chain[chain.length-1];
+        if (FINGERPRINTS.contains(fingerprint(anchor))) {
+            Date notBefore = chain[0].getNotBefore();
             LocalDate ldNotBefore = LocalDate.ofInstant(notBefore.toInstant(),
                                                         ZoneOffset.UTC);
-            if (ldNotBefore.isAfter(APRIL_16_2019)) {
-                throw new ValidatorException
-                    ("TLS Server certificate issued after " + APRIL_16_2019 +
-                     " and anchored by a distrusted legacy Symantec root CA: "
-                     + anchor.getSubjectX500Principal(),
-                     ValidatorException.T_UNTRUSTED_CERT, anchor);
+            // check if chain goes through one of the subCAs
+            if (chain.length > 2) {
+                X509Certificate subCA = chain[chain.length-2];
+                LocalDate distrustDate = EXEMPT_SUBCAS.get(fingerprint(subCA));
+                if (distrustDate != null) {
+                    // reject if certificate is issued after specified date
+                    checkNotBefore(ldNotBefore, distrustDate, anchor);
+                    return; // success
+                }
             }
+            // reject if certificate is issued after April 16, 2019
+            checkNotBefore(ldNotBefore, APRIL_16_2019, anchor);
+        }
+    }
+
+    private static String fingerprint(X509Certificate cert) {
+        return (cert instanceof X509CertImpl)
+               ? ((X509CertImpl)cert).getFingerprint("SHA-256")
+               : X509CertImpl.getFingerprint("SHA-256", cert);
+    }
+
+    private static void checkNotBefore(LocalDate notBeforeDate,
+            LocalDate distrustDate, X509Certificate anchor)
+            throws ValidatorException {
+        if (notBeforeDate.isAfter(distrustDate)) {
+            throw new ValidatorException
+                ("TLS Server certificate issued after " + distrustDate +
+                 " and anchored by a distrusted legacy Symantec root CA: "
+                 + anchor.getSubjectX500Principal(),
+                 ValidatorException.T_UNTRUSTED_CERT, anchor);
         }
     }
 
--- a/src/java.base/share/classes/sun/security/validator/Validator.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/security/validator/Validator.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -274,9 +274,8 @@
             // redundant.
             boolean checkUnresolvedCritExts =
                     (type == TYPE_PKIX) ? false : true;
-            endEntityChecker.check(chain[0], parameter,
-                                   checkUnresolvedCritExts,
-                                   chain[chain.length-1]);
+            endEntityChecker.check(chain, parameter,
+                                   checkUnresolvedCritExts);
         }
 
         return chain;
--- a/src/java.base/share/classes/sun/util/cldr/CLDRTimeZoneNameProviderImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/classes/sun/util/cldr/CLDRTimeZoneNameProviderImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -148,6 +148,12 @@
 
     private void deriveFallbackName(String[] names, int index, Locale locale, boolean noDST) {
         if (exists(names, index)) {
+            if (names[index].equals(NO_INHERITANCE_MARKER)) {
+                // CLDR's "no inheritance marker"
+                names[index] = toGMTFormat(names[INDEX_TZID],
+                                    index == INDEX_DST_LONG || index == INDEX_DST_SHORT,
+                                    index % 2 != 0, locale);
+            }
             return;
         }
 
--- a/src/java.base/share/conf/security/java.security	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/conf/security/java.security	Tue Jan 29 09:38:31 2019 -0500
@@ -1167,8 +1167,15 @@
 # of which represents a policy for determining if a CA should be distrusted.
 # The supported values are:
 #
-# SYMANTEC_TLS : Distrust TLS Server certificates anchored by
-#                a Symantec root CA and issued after April 16, 2019.
+#   SYMANTEC_TLS : Distrust TLS Server certificates anchored by a Symantec
+#   root CA and issued after April 16, 2019 unless issued by one of the
+#   following subordinate CAs which have a later distrust date:
+#     1. Apple IST CA 2 - G1, SHA-256 fingerprint:
+#        AC2B922ECFD5E01711772FEA8ED372DE9D1E2245FCE3F57A9CDBEC77296A424B
+#        Distrust after December 31, 2019.
+#     2. Apple IST CA 8 - G1, SHA-256 fingerprint:
+#        A4FE7C7F15155F3F0AEF7AAA83CF6E06DEB97CA3F909DF920AC1490882D488ED
+#        Distrust after December 31, 2019.
 #
 # Leading and trailing whitespace surrounding each value are ignored.
 # Unknown values are ignored. If the property is commented out or set to the
--- a/src/java.base/share/lib/security/default.policy	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/lib/security/default.policy	Tue Jan 29 09:38:31 2019 -0500
@@ -201,6 +201,7 @@
     permission java.io.FilePermission "<<ALL FILES>>", "read,write,delete";
     permission java.lang.RuntimePermission "fileSystemProvider";
     permission java.util.PropertyPermission "os.name", "read";
+    permission java.util.PropertyPermission "user.dir", "read";
 };
 
 // permissions needed by applications using java.desktop module
--- a/src/java.base/share/native/libnet/net_util.h	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/share/native/libnet/net_util.h	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -181,6 +181,9 @@
  */
 
 JNIEXPORT int JNICALL
+NET_SocketAvailable(int fd, int *pbytes);
+
+JNIEXPORT int JNICALL
 NET_GetSockOpt(int fd, int level, int opt, void *result, int *len);
 
 JNIEXPORT int JNICALL
--- a/src/java.base/unix/native/libnet/PlainSocketImpl.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/unix/native/libnet/PlainSocketImpl.c	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -740,8 +740,7 @@
  */
 JNIEXPORT jint JNICALL
 Java_java_net_PlainSocketImpl_socketAvailable(JNIEnv *env, jobject this) {
-
-    jint ret = -1;
+    int count = 0;
     jobject fdObj = (*env)->GetObjectField(env, this, psi_fdID);
     jint fd;
 
@@ -752,8 +751,7 @@
     } else {
         fd = (*env)->GetIntField(env, fdObj, IO_fd_fdID);
     }
-    /* NET_SocketAvailable returns 0 for failure, 1 for success */
-    if (NET_SocketAvailable(fd, &ret) == 0){
+    if (NET_SocketAvailable(fd, &count) != 0) {
         if (errno == ECONNRESET) {
             JNU_ThrowByName(env, "sun/net/ConnectionResetException", "");
         } else {
@@ -761,7 +759,7 @@
                 (env, JNU_JAVANETPKG "SocketException", "ioctl FIONREAD failed");
         }
     }
-    return ret;
+    return (jint) count;
 }
 
 /*
--- a/src/java.base/unix/native/libnet/net_util_md.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/unix/native/libnet/net_util_md.c	Tue Jan 29 09:38:31 2019 -0500
@@ -123,12 +123,10 @@
     } while((_result == -1) && (errno == EINTR)); \
 } while(0)
 
-int NET_SocketAvailable(int s, jint *pbytes) {
+int NET_SocketAvailable(int s, int *pbytes) {
     int result;
     RESTARTABLE(ioctl(s, FIONREAD, pbytes), result);
-    // note: ioctl can return 0 when successful, NET_SocketAvailable
-    // is expected to return 0 on failure and 1 on success.
-    return (result == -1) ? 0 : 1;
+    return result;
 }
 
 #ifdef __solaris__
--- a/src/java.base/unix/native/libnet/net_util_md.h	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/unix/native/libnet/net_util_md.h	Tue Jan 29 09:38:31 2019 -0500
@@ -92,7 +92,6 @@
 int NET_SocketClose(int s);
 int NET_Dup2(int oldfd, int newfd);
 int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout);
-int NET_SocketAvailable(int s, jint *pbytes);
 
 void NET_ThrowUnknownHostExceptionWithGaiError(JNIEnv *env,
                                                const char* hostname,
--- a/src/java.base/unix/native/libnio/ch/Net.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/unix/native/libnio/ch/Net.c	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -684,6 +684,17 @@
 }
 
 JNIEXPORT jint JNICALL
+Java_sun_nio_ch_Net_available(JNIEnv *env, jclass cl, jobject fdo)
+{
+    int count = 0;
+    if (NET_SocketAvailable(fdval(env, fdo), &count) != 0) {
+        handleSocketError(env, errno);
+        return IOS_THROWN;
+    }
+    return (jint) count;
+}
+
+JNIEXPORT jint JNICALL
 Java_sun_nio_ch_Net_poll(JNIEnv* env, jclass this, jobject fdo, jint events, jlong timeout)
 {
     struct pollfd pfd;
@@ -708,6 +719,50 @@
     }
 }
 
+JNIEXPORT jint JNICALL
+Java_sun_nio_ch_Net_pollConnect(JNIEnv *env, jobject this, jobject fdo, jlong timeout)
+{
+    jint fd = fdval(env, fdo);
+    struct pollfd poller;
+    int result;
+
+    poller.fd = fd;
+    poller.events = POLLOUT;
+    poller.revents = 0;
+    if (timeout < -1) {
+        timeout = -1;
+    } else if (timeout > INT_MAX) {
+        timeout = INT_MAX;
+    }
+
+    result = poll(&poller, 1, (int)timeout);
+
+    if (result > 0) {
+        int error = 0;
+        socklen_t n = sizeof(int);
+        errno = 0;
+        result = getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &n);
+        if (result < 0) {
+            return handleSocketError(env, errno);
+        } else if (error) {
+            return handleSocketError(env, error);
+        } else if ((poller.revents & POLLHUP) != 0) {
+            return handleSocketError(env, ENOTCONN);
+        }
+        // connected
+        return 1;
+    } else if (result == 0) {
+        return 0;
+    } else {
+        if (errno == EINTR) {
+            return IOS_INTERRUPTED;
+        } else {
+            JNU_ThrowIOExceptionWithLastError(env, "poll failed");
+            return IOS_THROWN;
+        }
+    }
+}
+
 JNIEXPORT jshort JNICALL
 Java_sun_nio_ch_Net_pollinValue(JNIEnv *env, jclass this)
 {
@@ -744,6 +799,12 @@
     return (jshort)POLLOUT;
 }
 
+JNIEXPORT jint JNICALL
+Java_sun_nio_ch_Net_sendOOB(JNIEnv* env, jclass this, jobject fdo, jbyte b)
+{
+    int n = send(fdval(env, fdo), (const void*)&b, 1, MSG_OOB);
+    return convertReturnVal(env, n, JNI_FALSE);
+}
 
 /* Declared in nio_util.h */
 
--- a/src/java.base/unix/native/libnio/ch/SocketChannelImpl.c	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,96 +0,0 @@
-/*
- * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-#include <netdb.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <string.h>
-#include <poll.h>
-
-#if __linux__
-#include <netinet/in.h>
-#endif
-
-#include "jni.h"
-#include "jni_util.h"
-#include "net_util.h"
-#include "jvm.h"
-#include "jlong.h"
-#include "sun_nio_ch_SocketChannelImpl.h"
-#include "nio_util.h"
-#include "nio.h"
-
-
-JNIEXPORT jint JNICALL
-Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv *env, jobject this,
-                                               jobject fdo, jboolean block)
-{
-    int error = 0;
-    socklen_t n = sizeof(int);
-    jint fd = fdval(env, fdo);
-    int result = 0;
-    struct pollfd poller;
-
-    poller.fd = fd;
-    poller.events = POLLOUT;
-    poller.revents = 0;
-    result = poll(&poller, 1, block ? -1 : 0);
-
-    if (result < 0) {
-        if (errno == EINTR) {
-            return IOS_INTERRUPTED;
-        } else {
-            JNU_ThrowIOExceptionWithLastError(env, "poll failed");
-            return IOS_THROWN;
-        }
-    }
-    if (!block && (result == 0))
-        return IOS_UNAVAILABLE;
-
-    if (result > 0) {
-        errno = 0;
-        result = getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &n);
-        if (result < 0) {
-            return handleSocketError(env, errno);
-        } else if (error) {
-            return handleSocketError(env, error);
-        } else if ((poller.revents & POLLHUP) != 0) {
-            return handleSocketError(env, ENOTCONN);
-        }
-        // connected
-        return 1;
-    }
-    return 0;
-}
-
-JNIEXPORT jint JNICALL
-Java_sun_nio_ch_SocketChannelImpl_sendOutOfBandData(JNIEnv* env, jclass this,
-                                                    jobject fdo, jbyte b)
-{
-    int n = send(fdval(env, fdo), (const void*)&b, 1, MSG_OOB);
-    return convertReturnVal(env, n, JNI_FALSE);
-}
--- a/src/java.base/unix/native/libnio/ch/SocketDispatcher.c	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-#include "jni.h"
-#include "jni_util.h"
-#include "jvm.h"
-#include "jlong.h"
-
-/* this is a fake c file to make the build happy since there is no
-   real SocketDispatcher.c file on Solaris but there is on windows. */
-
-static jfieldID fd_fdID;        /* for jint 'fd' in java.io.FileDescriptor */
--- a/src/java.base/windows/native/libnet/net_util_md.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/windows/native/libnet/net_util_md.c	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -398,6 +398,17 @@
     return rv;
 }
 
+JNIEXPORT int JNICALL
+NET_SocketAvailable(int s, int *pbytes) {
+    u_long arg;
+    if (ioctlsocket((SOCKET)s, FIONREAD, &arg) == SOCKET_ERROR) {
+        return -1;
+    } else {
+        *pbytes = (int) arg;
+        return 0;
+    }
+}
+
 /*
  * Sets SO_ECLUSIVEADDRUSE if SO_REUSEADDR is not already set.
  */
--- a/src/java.base/windows/native/libnio/ch/Net.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.base/windows/native/libnio/ch/Net.c	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -77,6 +77,11 @@
              NULL, 0, &bytesReturned, NULL, NULL);
 }
 
+jint handleSocketError(JNIEnv *env, int errorValue)
+{
+    NET_ThrowNew(env, errorValue, NULL);
+    return IOS_THROWN;
+}
 
 JNIEXPORT void JNICALL
 Java_sun_nio_ch_Net_initIDs(JNIEnv *env, jclass clazz)
@@ -551,6 +556,17 @@
 }
 
 JNIEXPORT jint JNICALL
+Java_sun_nio_ch_Net_available(JNIEnv *env, jclass cl, jobject fdo)
+{
+    int count = 0;
+    if (NET_SocketAvailable(fdval(env, fdo), &count) != 0) {
+        handleSocketError(env, WSAGetLastError());
+        return IOS_THROWN;
+    }
+    return (jint) count;
+}
+
+JNIEXPORT jint JNICALL
 Java_sun_nio_ch_Net_poll(JNIEnv* env, jclass this, jobject fdo, jint events, jlong timeout)
 {
     int rv;
@@ -596,6 +612,59 @@
     return rv;
 }
 
+JNIEXPORT jint JNICALL
+Java_sun_nio_ch_Net_pollConnect(JNIEnv* env, jclass this, jobject fdo, jlong timeout)
+{
+    int optError = 0;
+    int result;
+    int n = sizeof(int);
+    jint fd = fdval(env, fdo);
+    fd_set wr, ex;
+    struct timeval t;
+
+    FD_ZERO(&wr);
+    FD_ZERO(&ex);
+    FD_SET((u_int)fd, &wr);
+    FD_SET((u_int)fd, &ex);
+
+    if (timeout >= 0) {
+        t.tv_sec = (long)(timeout / 1000);
+        t.tv_usec = (timeout % 1000) * 1000;
+    }
+
+    result = select(fd+1, 0, &wr, &ex, (timeout >= 0) ? &t : NULL);
+
+    if (result == SOCKET_ERROR) {
+        handleSocketError(env, WSAGetLastError());
+        return IOS_THROWN;
+    } else if (result == 0) {
+        return 0;
+    } else {
+        // connection established if writable and no error to check
+        if (FD_ISSET(fd, &wr) && !FD_ISSET(fd, &ex)) {
+            return 1;
+        }
+        result = getsockopt((SOCKET)fd,
+                            SOL_SOCKET,
+                            SO_ERROR,
+                            (char *)&optError,
+                            &n);
+        if (result == SOCKET_ERROR) {
+            int lastError = WSAGetLastError();
+            if (lastError == WSAEINPROGRESS) {
+                return IOS_UNAVAILABLE;
+            }
+            NET_ThrowNew(env, lastError, "getsockopt");
+            return IOS_THROWN;
+        }
+        if (optError != NO_ERROR) {
+            handleSocketError(env, optError);
+            return IOS_THROWN;
+        }
+        return 0;
+    }
+}
+
 JNIEXPORT jshort JNICALL
 Java_sun_nio_ch_Net_pollinValue(JNIEnv *env, jclass this)
 {
@@ -631,3 +700,19 @@
 {
     return (jshort)POLLCONN;
 }
+
+JNIEXPORT jint JNICALL
+Java_sun_nio_ch_Net_sendOOB(JNIEnv* env, jclass this, jobject fdo, jbyte b)
+{
+    int n = send(fdval(env, fdo), (const char*)&b, 1, MSG_OOB);
+    if (n == SOCKET_ERROR) {
+        if (WSAGetLastError() == WSAEWOULDBLOCK) {
+            return IOS_UNAVAILABLE;
+        } else {
+            JNU_ThrowIOExceptionWithLastError(env, "send failed");
+            return IOS_THROWN;
+        }
+    } else {
+        return n;
+    }
+}
--- a/src/java.base/windows/native/libnio/ch/SocketChannelImpl.c	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,120 +0,0 @@
-/*
- * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-#include <windows.h>
-#include <winsock2.h>
-#include <ctype.h>
-#include "jni.h"
-#include "jni_util.h"
-#include "jvm.h"
-#include "jlong.h"
-#include "sun_nio_ch_SocketChannelImpl.h"
-
-#include "nio.h"
-#include "nio_util.h"
-#include "net_util.h"
-
-
-static jfieldID ia_addrID;      /* java.net.InetAddress.address */
-
-JNIEXPORT void JNICALL
-Java_sun_nio_ch_SocketChannelImpl_initIDs(JNIEnv *env, jclass cls)
-{
-    CHECK_NULL(cls = (*env)->FindClass(env, "java/net/InetAddress"));
-    CHECK_NULL(ia_addrID = (*env)->GetFieldID(env, cls, "address", "I"));
-}
-
-jint
-handleSocketError(JNIEnv *env, int errorValue)
-{
-    NET_ThrowNew(env, errorValue, NULL);
-    return IOS_THROWN;
-}
-
-JNIEXPORT jint JNICALL
-Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv *env, jobject this,
-                                               jobject fdo, jboolean block)
-{
-    int optError = 0;
-    int result;
-    int n = sizeof(int);
-    jint fd = fdval(env, fdo);
-    fd_set wr, ex;
-    struct timeval t = { 0, 0 };
-
-    FD_ZERO(&wr);
-    FD_ZERO(&ex);
-    FD_SET((u_int)fd, &wr);
-    FD_SET((u_int)fd, &ex);
-
-    result = select(fd+1, 0, &wr, &ex, block ? NULL : &t);
-
-    if (result == 0) {  /* timeout */
-        return block ? 0 : IOS_UNAVAILABLE;
-    } else {
-        if (result == SOCKET_ERROR) { /* select failed */
-            handleSocketError(env, WSAGetLastError());
-            return IOS_THROWN;
-        }
-    }
-
-    // connection established if writable and no error to check
-    if (FD_ISSET(fd, &wr) && !FD_ISSET(fd, &ex)) {
-        return 1;
-    }
-
-    result = getsockopt((SOCKET)fd,
-                        SOL_SOCKET,
-                        SO_ERROR,
-                        (char *)&optError,
-                        &n);
-    if (result == SOCKET_ERROR) {
-        int lastError = WSAGetLastError();
-        if (lastError == WSAEINPROGRESS) {
-            return IOS_UNAVAILABLE;
-        }
-        NET_ThrowNew(env, lastError, "getsockopt");
-        return IOS_THROWN;
-    }
-    if (optError != NO_ERROR) {
-        handleSocketError(env, optError);
-        return IOS_THROWN;
-    }
-
-    return 0;
-}
-
-JNIEXPORT jint JNICALL
-Java_sun_nio_ch_SocketChannelImpl_sendOutOfBandData(JNIEnv* env, jclass this,
-                                                    jobject fdo, jbyte b)
-{
-    int n = send(fdval(env, fdo), (const char*)&b, 1, MSG_OOB);
-    if (n == SOCKET_ERROR) {
-        handleSocketError(env, WSAGetLastError());
-        return IOS_THROWN;
-    } else {
-        return n;
-    }
-}
--- a/src/java.desktop/share/native/libfontmanager/freetypeScaler.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.desktop/share/native/libfontmanager/freetypeScaler.c	Tue Jan 29 09:38:31 2019 -0500
@@ -754,7 +754,10 @@
     /* generate bitmap if it is not done yet
      e.g. if algorithmic styling is performed and style was added to outline */
     if (ftglyph->format == FT_GLYPH_FORMAT_OUTLINE) {
-        FT_Render_Glyph(ftglyph, FT_LOAD_TARGET_MODE(target));
+        error = FT_Render_Glyph(ftglyph, FT_LOAD_TARGET_MODE(target));
+        if (error != 0) {
+            return ptr_to_jlong(getNullGlyphImage());
+        }
     }
 
     width  = (UInt16) ftglyph->bitmap.width;
--- a/src/java.net.http/share/classes/java/net/http/HttpResponse.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/java/net/http/HttpResponse.java	Tue Jan 29 09:38:31 2019 -0500
@@ -47,6 +47,7 @@
 import java.util.concurrent.Flow.Subscription;
 import java.util.function.Consumer;
 import java.util.function.Function;
+import java.util.function.Supplier;
 import java.util.stream.Stream;
 import javax.net.ssl.SSLSession;
 import jdk.internal.net.http.BufferingSubscriber;
@@ -1282,17 +1283,26 @@
          *
          * <p> The mapping function is executed using the client's {@linkplain
          * HttpClient#executor() executor}, and can therefore be used to map any
-         * response body type, including blocking {@link InputStream}, as shown
-         * in the following example which uses a well-known JSON parser to
+         * response body type, including blocking {@link InputStream}.
+         * However, performing any blocking operation in the mapper function
+         * runs the risk of blocking the executor's thread for an unknown
+         * amount of time (at least until the blocking operation finishes),
+         * which may end up starving the executor of available threads.
+         * Therefore, in the case where mapping to the desired type might
+         * block (e.g. by reading on the {@code InputStream}), then mapping
+         * to a {@link java.util.function.Supplier Supplier} of the desired
+         * type and deferring the blocking operation until {@link Supplier#get()
+         * Supplier::get} is invoked by the caller's thread should be preferred,
+         * as shown in the following example which uses a well-known JSON parser to
          * convert an {@code InputStream} into any annotated Java type.
          *
          * <p>For example:
-         * <pre> {@code  public static <W> BodySubscriber<W> asJSON(Class<W> targetType) {
+         * <pre> {@code  public static <W> BodySubscriber<Supplier<W>> asJSON(Class<W> targetType) {
          *     BodySubscriber<InputStream> upstream = BodySubscribers.ofInputStream();
          *
-         *     BodySubscriber<W> downstream = BodySubscribers.mapping(
+         *     BodySubscriber<Supplier<W>> downstream = BodySubscribers.mapping(
          *           upstream,
-         *           (InputStream is) -> {
+         *           (InputStream is) -> () -> {
          *               try (InputStream stream = is) {
          *                   ObjectMapper objectMapper = new ObjectMapper();
          *                   return objectMapper.readValue(stream, targetType);
@@ -1301,7 +1311,7 @@
          *               }
          *           });
          *    return downstream;
-         * } }</pre>
+         *  } }</pre>
          *
          * @param <T> the upstream body type
          * @param <U> the type of the body subscriber returned
--- a/src/java.net.http/share/classes/jdk/internal/net/http/BufferingSubscriber.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/BufferingSubscriber.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -37,14 +37,14 @@
 import java.net.http.HttpResponse.BodySubscriber;
 import jdk.internal.net.http.common.Demand;
 import jdk.internal.net.http.common.SequentialScheduler;
-import jdk.internal.net.http.common.Utils;
+import jdk.internal.net.http.ResponseSubscribers.TrustedSubscriber;
 
 /**
  * A buffering BodySubscriber. When subscribed, accumulates ( buffers ) a given
  * amount ( in bytes ) of a publisher's data before pushing it to a downstream
  * subscriber.
  */
-public class BufferingSubscriber<T> implements BodySubscriber<T>
+public class BufferingSubscriber<T> implements TrustedSubscriber<T>
 {
     /** The downstream consumer of the data. */
     private final BodySubscriber<T> downstreamSubscriber;
@@ -94,6 +94,11 @@
         return buffers.stream().mapToLong(ByteBuffer::remaining).sum();
     }
 
+    @Override
+    public boolean needsExecutor() {
+        return TrustedSubscriber.needsExecutor(downstreamSubscriber);
+    }
+
     /**
      * Tells whether, or not, there is at least a sufficient number of bytes
      * accumulated in the internal buffers. If the subscriber is COMPLETE, and
--- a/src/java.net.http/share/classes/jdk/internal/net/http/Http1AsyncReceiver.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/Http1AsyncReceiver.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -34,6 +34,7 @@
 import java.util.Set;
 import java.util.concurrent.ConcurrentLinkedDeque;
 import java.util.concurrent.Executor;
+import java.util.concurrent.ExecutorService;
 import java.util.concurrent.Flow;
 import java.util.concurrent.atomic.AtomicBoolean;
 import java.util.concurrent.atomic.AtomicLong;
@@ -199,7 +200,11 @@
     private void flush() {
         ByteBuffer buf;
         try {
-            assert !client.isSelectorThread() :
+            // we should not be running in the selector here,
+            // except if the custom Executor supplied to the client is
+            // something like (r) -> r.run();
+           assert !client.isSelectorThread()
+                   || !(client.theExecutor().delegate() instanceof ExecutorService) :
                     "Http1AsyncReceiver::flush should not run in the selector: "
                     + Thread.currentThread().getName();
 
--- a/src/java.net.http/share/classes/jdk/internal/net/http/Http1Response.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/Http1Response.java	Tue Jan 29 09:38:31 2019 -0500
@@ -41,6 +41,7 @@
 import java.net.http.HttpResponse;
 import jdk.internal.net.http.ResponseContent.BodyParser;
 import jdk.internal.net.http.ResponseContent.UnknownLengthBodyParser;
+import jdk.internal.net.http.ResponseSubscribers.TrustedSubscriber;
 import jdk.internal.net.http.common.Log;
 import jdk.internal.net.http.common.Logger;
 import jdk.internal.net.http.common.MinimalFuture;
@@ -293,7 +294,7 @@
      * subscribed.
      * @param <U> The type of response.
      */
-    final static class Http1BodySubscriber<U> implements HttpResponse.BodySubscriber<U> {
+    final static class Http1BodySubscriber<U> implements TrustedSubscriber<U> {
         final HttpResponse.BodySubscriber<U> userSubscriber;
         final AtomicBoolean completed = new AtomicBoolean();
         volatile Throwable withError;
@@ -302,6 +303,11 @@
             this.userSubscriber = userSubscriber;
         }
 
+        @Override
+        public boolean needsExecutor() {
+            return TrustedSubscriber.needsExecutor(userSubscriber);
+        }
+
         // propagate the error to the user subscriber, even if not
         // subscribed yet.
         private void propagateError(Throwable t) {
@@ -356,6 +362,7 @@
         public CompletionStage<U> getBody() {
             return userSubscriber.getBody();
         }
+
         @Override
         public void onSubscribe(Flow.Subscription subscription) {
             if (!subscribed) {
@@ -475,18 +482,12 @@
                 connection.client().unreference();
             }
         });
-        try {
-            p.getBody().whenComplete((U u, Throwable t) -> {
-                if (t == null)
-                    cf.complete(u);
-                else
-                    cf.completeExceptionally(t);
-            });
-        } catch (Throwable t) {
+
+        ResponseSubscribers.getBodyAsync(executor, p, cf, (t) -> {
             cf.completeExceptionally(t);
             asyncReceiver.setRetryOnError(false);
             asyncReceiver.onReadError(t);
-        }
+        });
 
         return cf.whenComplete((s,t) -> {
             if (t != null) {
--- a/src/java.net.http/share/classes/jdk/internal/net/http/HttpRequestImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/HttpRequestImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -43,6 +43,7 @@
 import java.net.http.HttpRequest;
 import jdk.internal.net.http.common.HttpHeadersBuilder;
 import jdk.internal.net.http.common.Utils;
+import jdk.internal.net.http.websocket.OpeningHandshake;
 import jdk.internal.net.http.websocket.WebSocketRequest;
 
 import static jdk.internal.net.http.common.Utils.ALLOWED_HEADERS;
@@ -157,7 +158,11 @@
 
     /** Returns a new instance suitable for authentication. */
     public static HttpRequestImpl newInstanceForAuthentication(HttpRequestImpl other) {
-        return new HttpRequestImpl(other.uri(), other.method(), other);
+        HttpRequestImpl request = new HttpRequestImpl(other.uri(), other.method(), other);
+        if (request.isWebSocket()) {
+            Utils.setWebSocketUpgradeHeaders(request);
+        }
+        return request;
     }
 
     /**
--- a/src/java.net.http/share/classes/jdk/internal/net/http/MultiExchange.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/MultiExchange.java	Tue Jan 29 09:38:31 2019 -0500
@@ -271,9 +271,9 @@
     private CompletableFuture<HttpResponse<T>> handleNoBody(Response r, Exchange<T> exch) {
         BodySubscriber<T> bs = responseHandler.apply(new ResponseInfoImpl(r.statusCode(),
                 r.headers(), r.version()));
-        CompletionStage<T> cs = bs.getBody();
         bs.onSubscribe(new NullSubscription());
         bs.onComplete();
+        CompletionStage<T> cs = ResponseSubscribers.getBodyAsync(executor, bs);
         MinimalFuture<HttpResponse<T>> result = new MinimalFuture<>();
         cs.whenComplete((nullBody, exception) -> {
             if (exception != null)
--- a/src/java.net.http/share/classes/jdk/internal/net/http/ResponseSubscribers.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/ResponseSubscribers.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -30,9 +30,6 @@
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.InputStreamReader;
-import java.lang.System.Logger.Level;
-import java.net.http.HttpHeaders;
-import java.net.http.HttpResponse;
 import java.nio.ByteBuffer;
 import java.nio.channels.FileChannel;
 import java.nio.charset.Charset;
@@ -50,6 +47,7 @@
 import java.util.concurrent.BlockingQueue;
 import java.util.concurrent.CompletableFuture;
 import java.util.concurrent.CompletionStage;
+import java.util.concurrent.Executor;
 import java.util.concurrent.Flow;
 import java.util.concurrent.Flow.Subscriber;
 import java.util.concurrent.Flow.Subscription;
@@ -67,7 +65,50 @@
 
 public class ResponseSubscribers {
 
-    public static class ConsumerSubscriber implements BodySubscriber<Void> {
+    /**
+     * This interface is used by our BodySubscriber implementations to
+     * declare whether calling getBody() inline is safe, or whether
+     * it needs to be called asynchronously in an executor thread.
+     * Calling getBody() inline is usually safe except when it
+     * might block - which can be the case if the BodySubscriber
+     * is provided by custom code, or if it uses a finisher that
+     * might be called and might block before the last bit is
+     * received (for instance, if a mapping subscriber is used with
+     * a mapper function that maps an InputStream to a GZIPInputStream,
+     * as the the constructor of GZIPInputStream calls read()).
+     * @param <T> The response type.
+     */
+    public interface TrustedSubscriber<T> extends BodySubscriber<T> {
+        /**
+         * Returns true if getBody() should be called asynchronously.
+         * @implSpec The default implementation of this method returns
+         *           false.
+         * @return true if getBody() should be called asynchronously.
+         */
+        default boolean needsExecutor() { return false;}
+
+        /**
+         * Returns true if calling {@code bs::getBody} might block
+         * and requires an executor.
+         *
+         * @implNote
+         * In particular this method returns
+         * true if {@code bs} is not a {@code TrustedSubscriber}.
+         * If it is a {@code TrustedSubscriber}, it returns
+         * {@code ((TrustedSubscriber) bs).needsExecutor()}.
+         *
+         * @param bs A BodySubscriber.
+         * @return true if calling {@code bs::getBody} requires using
+         *         an executor.
+         */
+        static boolean needsExecutor(BodySubscriber<?> bs) {
+            if (bs instanceof TrustedSubscriber) {
+                return ((TrustedSubscriber) bs).needsExecutor();
+            } else return true;
+        }
+    }
+
+    public static class ConsumerSubscriber implements TrustedSubscriber<Void> {
         private final Consumer<Optional<byte[]>> consumer;
         private Flow.Subscription subscription;
         private final CompletableFuture<Void> result = new MinimalFuture<>();
@@ -122,7 +163,7 @@
      * asserts the specific, write, file permissions that were checked during
      * the construction of this PathSubscriber.
      */
-    public static class PathSubscriber implements BodySubscriber<Path> {
+    public static class PathSubscriber implements TrustedSubscriber<Path> {
 
         private static final FilePermission[] EMPTY_FILE_PERMISSIONS = new FilePermission[0];
 
@@ -223,7 +264,7 @@
         }
     }
 
-    public static class ByteArraySubscriber<T> implements BodySubscriber<T> {
+    public static class ByteArraySubscriber<T> implements TrustedSubscriber<T> {
         private final Function<byte[], T> finisher;
         private final CompletableFuture<T> result = new MinimalFuture<>();
         private final List<ByteBuffer> received = new ArrayList<>();
@@ -292,7 +333,7 @@
      * An InputStream built on top of the Flow API.
      */
     public static class HttpResponseInputStream extends InputStream
-        implements BodySubscriber<InputStream>
+        implements TrustedSubscriber<InputStream>
     {
         final static int MAX_BUFFERS_IN_QUEUE = 1;  // lock-step with the producer
 
@@ -410,6 +451,24 @@
         }
 
         @Override
+        public int available() throws IOException {
+            // best effort: returns the number of remaining bytes in
+            // the current buffer if any, or 1 if the current buffer
+            // is null or empty but the queue or current buffer list
+            // are not empty. Returns 0 otherwise.
+            if (closed) return 0;
+            int available = 0;
+            ByteBuffer current = currentBuffer;
+            if (current == LAST_BUFFER) return 0;
+            if (current != null) available = current.remaining();
+            if (available != 0) return available;
+            Iterator<?> iterator = currentListItr;
+            if (iterator != null && iterator.hasNext()) return 1;
+            if (buffers.isEmpty()) return 0;
+            return 1;
+        }
+
+        @Override
         public void onSubscribe(Flow.Subscription s) {
             try {
                 if (!subscribed.compareAndSet(false, true)) {
@@ -517,17 +576,19 @@
     public static BodySubscriber<Stream<String>> createLineStream(Charset charset) {
         Objects.requireNonNull(charset);
         BodySubscriber<InputStream> s = new HttpResponseInputStream();
+        // Creates a MappingSubscriber with a trusted finisher that is
+        // trusted not to block.
         return new MappingSubscriber<InputStream,Stream<String>>(s,
             (InputStream stream) -> {
                 return new BufferedReader(new InputStreamReader(stream, charset))
                             .lines().onClose(() -> Utils.close(stream));
-            });
+            }, true);
     }
 
     /**
      * Currently this consumes all of the data and ignores it
      */
-    public static class NullSubscriber<T> implements BodySubscriber<T> {
+    public static class NullSubscriber<T> implements TrustedSubscriber<T> {
 
         private final CompletableFuture<T> cf = new MinimalFuture<>();
         private final Optional<T> result;
@@ -573,13 +634,16 @@
 
     /** An adapter between {@code BodySubscriber} and {@code Flow.Subscriber}. */
     public static final class SubscriberAdapter<S extends Subscriber<? super List<ByteBuffer>>,R>
-        implements BodySubscriber<R>
+        implements TrustedSubscriber<R>
     {
         private final CompletableFuture<R> cf = new MinimalFuture<>();
         private final S subscriber;
         private final Function<? super S,? extends R> finisher;
         private volatile Subscription subscription;
 
+        // The finisher isn't called until all bytes have been received,
+        // and so shouldn't need an executor. No need to override
+        // TrustedSubscriber::needsExecutor
         public SubscriberAdapter(S subscriber, Function<? super S,? extends R> finisher) {
             this.subscriber = Objects.requireNonNull(subscriber);
             this.finisher = Objects.requireNonNull(finisher);
@@ -647,16 +711,40 @@
      * @param <T> the upstream body type
      * @param <U> this subscriber's body type
      */
-    public static class MappingSubscriber<T,U> implements BodySubscriber<U> {
+    public static class MappingSubscriber<T,U> implements TrustedSubscriber<U> {
         private final BodySubscriber<T> upstream;
         private final Function<? super T,? extends U> mapper;
+        private final boolean trusted;
 
         public MappingSubscriber(BodySubscriber<T> upstream,
                                  Function<? super T,? extends U> mapper) {
+            this(upstream, mapper, false);
+        }
+
+        // creates a MappingSubscriber with a mapper that is trusted
+        // to not block when called.
+        MappingSubscriber(BodySubscriber<T> upstream,
+                          Function<? super T,? extends U> mapper,
+                          boolean trusted) {
             this.upstream = Objects.requireNonNull(upstream);
             this.mapper = Objects.requireNonNull(mapper);
+            this.trusted = trusted;
         }
 
+        // There is no way to know whether a custom mapper function
+        // might block or not - so we should return true unless the
+        // mapper is implemented and trusted by our own code not to
+        // block.
+        @Override
+        public boolean needsExecutor() {
+            return !trusted || TrustedSubscriber.needsExecutor(upstream);
+        }
+
+        // If upstream.getBody() is already completed (case of InputStream),
+        // then calling upstream.getBody().thenApply(mapper) might block
+        // if the mapper blocks. We should probably add a variant of
+        // MappingSubscriber that calls thenApplyAsync instead, but this
+        // needs a new public API point. See needsExecutor() above.
         @Override
         public CompletionStage<U> getBody() {
             return upstream.getBody().thenApply(mapper);
@@ -685,7 +773,7 @@
 
     // A BodySubscriber that returns a Publisher<List<ByteBuffer>>
     static class PublishingBodySubscriber
-            implements BodySubscriber<Flow.Publisher<List<ByteBuffer>>> {
+            implements TrustedSubscriber<Flow.Publisher<List<ByteBuffer>>> {
         private final MinimalFuture<Flow.Subscription>
                 subscriptionCF = new MinimalFuture<>();
         private final MinimalFuture<SubscriberRef>
@@ -894,4 +982,110 @@
         return new PublishingBodySubscriber();
     }
 
+
+    /**
+     * Tries to determine whether bs::getBody must be invoked asynchronously,
+     * and if so, uses the provided executor to do it.
+     * If the executor is a {@link HttpClientImpl.DelegatingExecutor},
+     * uses the executor's delegate.
+     * @param e    The executor to use if an executor is required.
+     * @param bs   The BodySubscriber (trusted or not)
+     * @param <T>  The type of the response.
+     * @return A completion stage that completes when the completion
+     *         stage returned by bs::getBody completes. This may, or
+     *         may not, be the same completion stage.
+     */
+    public static <T> CompletionStage<T> getBodyAsync(Executor e, BodySubscriber<T> bs) {
+        if (TrustedSubscriber.needsExecutor(bs)) {
+            // getBody must be called in the executor
+            return getBodyAsync(e, bs, new MinimalFuture<>());
+        } else {
+            // No executor needed
+            return bs.getBody();
+        }
+    }
+
+    /**
+     * Invokes bs::getBody using the provided executor.
+     * If invoking bs::getBody requires an executor, and the given executor
+     * is a {@link HttpClientImpl.DelegatingExecutor}, then the executor's
+     * delegate is used. If an error occurs anywhere then the given {code cf}
+     * is completed exceptionally (this method does not throw).
+     * @param e   The executor that should be used to call bs::getBody
+     * @param bs  The BodySubscriber
+     * @param cf  A completable future that this function will set up
+     *            to complete when the completion stage returned by
+     *            bs::getBody completes.
+     *            In case of any error while trying to set up the
+     *            completion chain, {@code cf} will be completed
+     *            exceptionally with that error.
+     * @param <T> The response type.
+     * @return The provided {@code cf}.
+     */
+    public static <T> CompletableFuture<T> getBodyAsync(Executor e,
+                                                      BodySubscriber<T> bs,
+                                                      CompletableFuture<T> cf) {
+        return getBodyAsync(e, bs, cf, cf::completeExceptionally);
+    }
+
+    /**
+     * Invokes bs::getBody using the provided executor.
+     * If invoking bs::getBody requires an executor, and the given executor
+     * is a {@link HttpClientImpl.DelegatingExecutor}, then the executor's
+     * delegate is used.
+     * The provided {@code cf} is completed with the result (exceptional
+     * or not) of the completion stage returned by bs::getBody.
+     * If an error occurs when trying to set up the
+     * completion chain, the provided {@code errorHandler} is invoked,
+     * but {@code cf} is not necessarily affected.
+     * This method does not throw.
+     * @param e   The executor that should be used to call bs::getBody
+     * @param bs  The BodySubscriber
+     * @param cf  A completable future that this function will set up
+     *            to complete when the completion stage returned by
+     *            bs::getBody completes.
+     *            In case of any error while trying to set up the
+     *            completion chain, {@code cf} will be completed
+     *            exceptionally with that error.
+     * @param errorHandler The handler to invoke if an error is raised
+     *                     while trying to set up the completion chain.
+     * @param <T> The response type.
+     * @return The provide {@code cf}. If the {@code errorHandler} is
+     * invoked, it is the responsibility of the {@code errorHandler} to
+     * complete the {@code cf}, if needed.
+     */
+    public static <T> CompletableFuture<T> getBodyAsync(Executor e,
+                                                      BodySubscriber<T> bs,
+                                                      CompletableFuture<T> cf,
+                                                      Consumer<Throwable> errorHandler) {
+        assert errorHandler != null;
+        try {
+            assert e != null;
+            assert cf != null;
+
+            if (TrustedSubscriber.needsExecutor(bs)) {
+                e = (e instanceof HttpClientImpl.DelegatingExecutor)
+                        ? ((HttpClientImpl.DelegatingExecutor) e).delegate() : e;
+            }
+
+            e.execute(() -> {
+                try {
+                    bs.getBody().whenComplete((r, t) -> {
+                        if (t != null) {
+                            cf.completeExceptionally(t);
+                        } else {
+                            cf.complete(r);
+                        }
+                    });
+                } catch (Throwable t) {
+                    errorHandler.accept(t);
+                }
+            });
+            return cf;
+
+        } catch (Throwable t) {
+            errorHandler.accept(t);
+        }
+        return cf;
+    }
 }
--- a/src/java.net.http/share/classes/jdk/internal/net/http/Stream.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/Stream.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -333,21 +333,10 @@
     // pushes entire response body into response subscriber
     // blocking when required by local or remote flow control
     CompletableFuture<T> receiveData(BodySubscriber<T> bodySubscriber, Executor executor) {
-        responseBodyCF = new MinimalFuture<>();
         // We want to allow the subscriber's getBody() method to block so it
         // can work with InputStreams. So, we offload execution.
-        executor.execute(() -> {
-            try {
-                bodySubscriber.getBody().whenComplete((T body, Throwable t) -> {
-                    if (t == null)
-                        responseBodyCF.complete(body);
-                    else
-                        responseBodyCF.completeExceptionally(t);
-                });
-            } catch(Throwable t) {
-                cancelImpl(t);
-            }
-        });
+        responseBodyCF = ResponseSubscribers.getBodyAsync(executor, bodySubscriber,
+                new MinimalFuture<>(), this::cancelImpl);
 
         if (isCanceled()) {
             Throwable t = getCancelCause();
--- a/src/java.net.http/share/classes/jdk/internal/net/http/common/Utils.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/common/Utils.java	Tue Jan 29 09:38:31 2019 -0500
@@ -263,6 +263,15 @@
                       : ! PROXY_AUTH_DISABLED_SCHEMES.isEmpty();
     }
 
+    // WebSocket connection Upgrade headers
+    private static final String HEADER_CONNECTION = "Connection";
+    private static final String HEADER_UPGRADE    = "Upgrade";
+
+    public static final void setWebSocketUpgradeHeaders(HttpRequestImpl request) {
+        request.setSystemHeader(HEADER_UPGRADE, "websocket");
+        request.setSystemHeader(HEADER_CONNECTION, "Upgrade");
+    }
+
     public static IllegalArgumentException newIAE(String message, Object... args) {
         return new IllegalArgumentException(format(message, args));
     }
--- a/src/java.net.http/share/classes/jdk/internal/net/http/websocket/OpeningHandshake.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/websocket/OpeningHandshake.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -143,8 +143,7 @@
         requestBuilder.version(Version.HTTP_1_1).GET();
         request = requestBuilder.buildForWebSocket();
         request.isWebSocket(true);
-        request.setSystemHeader(HEADER_UPGRADE, "websocket");
-        request.setSystemHeader(HEADER_CONNECTION, "Upgrade");
+        Utils.setWebSocketUpgradeHeaders(request);
         request.setProxy(proxy);
     }
 
--- a/src/java.xml/share/classes/com/sun/xml/internal/stream/writers/XMLStreamWriterImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/java.xml/share/classes/com/sun/xml/internal/stream/writers/XMLStreamWriterImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -44,6 +44,7 @@
 import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
+import java.util.Objects;
 import java.util.Random;
 import java.util.Set;
 import javax.xml.XMLConstants;
@@ -1729,12 +1730,7 @@
      */
     private boolean isDefaultNamespace(String uri) {
         String defaultNamespace = fInternalNamespaceContext.getURI(DEFAULT_PREFIX);
-
-        if (uri.equals(defaultNamespace)) {
-            return true;
-        }
-
-        return false;
+        return Objects.equals(uri, defaultNamespace);
     }
 
     /**
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM29626C.java.template	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,602 @@
+/*
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+package $PACKAGE$;
+
+import java.nio.ByteBuffer;
+import java.nio.CharBuffer;
+import java.nio.charset.Charset;
+import java.nio.charset.CharsetDecoder;
+import java.nio.charset.CharsetEncoder;
+import java.nio.charset.CoderResult;
+import sun.nio.cs.HistoricallyNamedCharset;
+import sun.nio.cs.DelegatableDecoder;
+import sun.nio.cs.DoubleByte;
+import sun.nio.cs.Surrogate;
+import sun.nio.cs.SingleByte;
+import sun.nio.cs.*;
+import static sun.nio.cs.CharsetMapping.*;
+
+public class IBM29626C
+    extends Charset
+    implements HistoricallyNamedCharset
+{
+    public IBM29626C() {
+        super("x-IBM29626C",  $ALIASES$);
+    }
+
+    public String historicalName() {
+        return "Cp29626C";
+    }
+
+    public boolean contains(Charset cs) {
+        return ((cs.name().equals("US-ASCII"))
+                || (cs instanceof IBM29626C));
+    }
+
+    public CharsetDecoder newDecoder() {
+        return new Decoder(this);
+    }
+
+    public CharsetEncoder newEncoder() {
+        return new Encoder(this);
+    }
+
+    static class Decoder extends CharsetDecoder
+        implements DelegatableDecoder {
+
+        final static SingleByte.Decoder DEC0201 =
+            (SingleByte.Decoder)new JIS_X_0201().newDecoder();
+
+        final static DoubleByte.Decoder DEC0208 =
+            (DoubleByte.Decoder)new JIS_X_0208().newDecoder();
+
+        final static DoubleByte.Decoder DEC0212 =
+            (DoubleByte.Decoder)new JIS_X_0212().newDecoder();
+
+        final static DoubleByte.Encoder ibm943 =
+            (DoubleByte.Encoder)new IBM943().newEncoder();
+
+        private final SingleByte.Decoder dec0201;
+        private final DoubleByte.Decoder dec0208;
+        private final DoubleByte.Decoder dec0212;
+
+        private final String G2_b =
+            "\uA1F1\uA1F2\uA2CC\uADA1\uADA2\uADA3\uADA4\uADA5\uADA6\uADA7"+
+            "\uADA8\uADA9\uADAA\uADAB\uADAC\uADAD\uADAE\uADAF\uADB0\uADB1"+
+            "\uADB2\uADB3\uADB4\uADB5\uADB6\uADB7\uADB8\uADB9\uADBA\uADBB"+
+            "\uADBC\uADBD\uADBE\uADC0\uADC1\uADC2\uADC3\uADC4\uADC5\uADC6"+
+            "\uADC7\uADC8\uADC9\uADCA\uADCB\uADCC\uADCD\uADCE\uADCF\uADD0"+
+            "\uADD1\uADD2\uADD3\uADD4\uADD5\uADD6\uADDF\uADE0\uADE1\uADE2"+
+            "\uADE3\uADE4\uADE5\uADE6\uADE7\uADE8\uADE9\uADEA\uADEB\uADEC"+
+            "\uADED\uADEE\uADEF\uADF0\uADF1\uADF2\uADF3\uADF4\uADF5\uADF6"+
+            "\uADF7\uADF8\uADF9\uADFA\uADFB\uADFC";
+
+        private final String G2_c =
+            "\uFFE0\uFFE1\uFFE2\u2460\u2461\u2462\u2463\u2464\u2465\u2466"+
+            "\u2467\u2468\u2469\u246A\u246B\u246C\u246D\u246E\u246F\u2470"+
+            "\u2471\u2472\u2473\u2160\u2161\u2162\u2163\u2164\u2165\u2166"+
+            "\u2167\u2168\u2169\u3349\u3314\u3322\u334D\u3318\u3327\u3303"+
+            "\u3336\u3351\u3357\u330D\u3326\u3323\u332B\u334A\u333B\u339C"+
+            "\u339D\u339E\u338E\u338F\u33C4\u33A1\u337B\u301D\u301F\u2116"+
+            "\u33CD\u2121\u32A4\u32A5\u32A6\u32A7\u32A8\u3231\u3232\u3239"+
+            "\u337E\u337D\u337C\u2252\u2261\u222B\u222E\u2211\u221A\u22A5"+
+            "\u2220\u221F\u22BF\u2235\u2229\u222A";
+
+        private final String G3_b =
+            "\uF3B8\uF3B9\uF3AB\uF3AC\uF3AD\uF3AE\uF3AF\uF3B0\uF3B1\uF3B2"+
+            "\uF3B3\uF3B4\uF3A1\uF3A2\uF3A3\uF3A4\uF3A5\uF3A6\uF3A7\uF3A8"+
+            "\uF3A9\uF3AA\uF3B7\uF3B8\uF4A2\uF4A3\uF4A4\uF4A5\uF4A6\uF4A8"+
+            "\uF4A9\uF4AC\uF4AE\uF4AF\uF4B0\uF4B2\uF4B3\uF4B4\uF4B5\uF4B6"+
+            "\uF4B7\uF4BA\uF4BD\uF4BE\uF4C0\uF4BF\uF4C2\uF4A1\uF4C6\uF4C7"+
+            "\uF4C8\uF4CB\uF4D0\uF4D4\uF4D5\uF4D7\uF4D9\uF4DC\uF4DF\uF4E0"+
+            "\uF4E1\uF4E5\uF4E7\uF4EA\uF4ED\uF4EE\uF4EF\uF4F4\uF4F5\uF4F6"+
+            "\uF4F8\uF3B8\uF4B9\uF4EB\uF4A7\uF4AA\uF4AB\uF4B1\uF4B8\uF4BB"+
+            "\uF4BC\uF4C4\uF4C5\uF4C9\uF4CC\uF4CD\uF4CE\uF4CF\uF4D1\uF4D3"+
+            "\uF4D6\uF4D8\uF4DA\uF4DB\uF4DE\uF4E2\uF4E3\uF4E4\uF4E6\uF4E8"+
+            "\uF4E9\uF4EC\uF4F1\uF4F2\uF4F3\uF4F7\uF3B6\uF3B5";
+
+        private final String G3_c =
+            "\u2116\u2121\u2160\u2161\u2162\u2163\u2164\u2165\u2166\u2167"+
+            "\u2168\u2169\u2170\u2171\u2172\u2173\u2174\u2175\u2176\u2177"+
+            "\u2178\u2179\u3231\u00A6\u4EFC\u50F4\u51EC\u5307\u5324\u548A"+
+            "\u5759\u589E\u5BEC\u5CF5\u5D53\u5FB7\u6085\u6120\u654E\u663B"+
+            "\u6665\u6801\u6A6B\u6AE2\u6DF2\u6DF8\u7028\u70BB\u7501\u7682"+
+            "\u769E\u7930\u7AE7\u7DA0\u7DD6\u8362\u85B0\u8807\u8B7F\u8CF4"+
+            "\u8D76\u90DE\u9115\u9592\u973B\u974D\u9751\u999E\u9AD9\u9B72"+
+            "\u9ED1\uF86F\uF929\uF9DC\uFA0E\uFA0F\uFA10\uFA11\uFA12\uFA13"+
+            "\uFA14\uFA15\uFA16\uFA17\uFA18\uFA19\uFA1A\uFA1B\uFA1C\uFA1D"+
+            "\uFA1E\uFA1F\uFA20\uFA21\uFA22\uFA23\uFA24\uFA25\uFA26\uFA27"+
+            "\uFA28\uFA29\uFA2A\uFA2B\uFA2C\uFA2D\uFF02\uFF07";
+
+        protected Decoder(Charset cs) {
+            this(cs, 0.5f, 1.0f, DEC0201, DEC0208, DEC0212);
+        }
+
+        protected Decoder(Charset cs, float avgCpb, float maxCpb,
+                          SingleByte.Decoder dec0201,
+                          DoubleByte.Decoder dec0208,
+                          DoubleByte.Decoder dec0212) {
+            super(cs, avgCpb, maxCpb);
+            this.dec0201 = dec0201;
+            this.dec0208 = dec0208;
+            this.dec0212 = dec0212;
+        }
+
+
+        protected char decodeSingle(int b) {
+            if (b < 0x8e)
+                return (char) b;
+            if (b < 0x90)
+                return UNMAPPABLE_DECODING;
+            if (b < 0xa0)
+                return (char) b;
+            return UNMAPPABLE_DECODING;
+        }
+
+        protected char decodeUDC(int byte1, int byte2, int offset) {
+            if ((byte1 >= 0xf5 && byte1 <= 0xfe)
+                && (byte2 >= 0xa1 && byte2 <= 0xfe)) {
+                return (char)((byte1 - 0xf5) * 94 + (byte2 - 0xa1) + offset);
+            }
+            return UNMAPPABLE_DECODING;
+        }
+
+        final static String g1_c = "\u00a2\u00a3\u00ac\\\u007e";
+
+        protected char decodeDouble(int byte1, int byte2) {
+            if (byte1 == 0x8e) {
+                if (byte2 < 0x80)
+                    return UNMAPPABLE_DECODING;
+                char c = dec0201.decode((byte)byte2);
+                if (byte2 >= 0xe0 && byte2 <= 0xe4)
+                    c = g1_c.charAt(byte2 - 0xe0);
+                return c;
+            }
+            if ((byte1 >= 0xa1 && byte1 <= 0xfe)
+                && (byte2 >= 0xa1 && byte2 <= 0xfe)) {
+                char c = (char)((byte1 << 8) + byte2);
+                int idx = G2_b.indexOf(c);
+                if (idx > -1)
+                    return G2_c.charAt(idx);
+            }
+            char ch = dec0208.decodeDouble(byte1 - 0x80, byte2 - 0x80);
+            if (ch == UNMAPPABLE_DECODING)
+                ch = decodeUDC(byte1, byte2, 0xe000);
+            return ch;
+        }
+
+        protected char decodeDoubleG3(int byte1, int byte2) {
+            if ((byte1 >= 0xa1 && byte1 <= 0xfe)
+                && (byte2 >= 0xa1 && byte2 <= 0xfe)) {
+                char c = (char)((byte1 << 8) + byte2);
+                int idx = G3_b.indexOf(c);
+                if (idx > -1)
+                    return G3_c.charAt(idx);
+            }
+            char ch = dec0212.decodeDouble(byte1 - 0x80, byte2 - 0x80);
+            if (ch == '\u2116')
+                ch = UNMAPPABLE_DECODING;
+            if (ch != UNMAPPABLE_DECODING)
+                ch =  ibm943.canEncode(ch) ? ch : UNMAPPABLE_DECODING;
+            if (ch == UNMAPPABLE_DECODING)
+                ch = decodeUDC(byte1, byte2, 0xe3ac);
+            return ch;
+        }
+
+        private CoderResult decodeArrayLoop(ByteBuffer src,
+                                            CharBuffer dst)
+        {
+            byte[] sa = src.array();
+            int sp = src.arrayOffset() + src.position();
+            int sl = src.arrayOffset() + src.limit();
+            assert (sp <= sl);
+            sp = (sp <= sl ? sp : sl);
+
+            char[] da = dst.array();
+            int dp = dst.arrayOffset() + dst.position();
+            int dl = dst.arrayOffset() + dst.limit();
+            assert (dp <= dl);
+            dp = (dp <= dl ? dp : dl);
+
+            int b1 = 0, b2 = 0;
+            int inputSize = 0;
+            char outputChar = UNMAPPABLE_DECODING;
+            try {
+                while (sp < sl) {
+                    b1 = sa[sp] & 0xff;
+                    inputSize = 1;
+
+                    outputChar = decodeSingle(b1);
+                    if (outputChar == UNMAPPABLE_DECODING) { // Multibyte char
+                        if (b1 == 0x8f) {           // JIS0212
+                            if (sp + 3 > sl)
+                               return CoderResult.UNDERFLOW;
+                            b1 = sa[sp + 1] & 0xff;
+                            b2 = sa[sp + 2] & 0xff;
+                            inputSize += 2;
+                            outputChar = decodeDoubleG3(b1, b2);
+                        } else {                     // JIS0201, JIS0208
+                            if (sp + 2 > sl)
+                               return CoderResult.UNDERFLOW;
+                            b2 = sa[sp + 1] & 0xff;
+                            inputSize++;
+                            outputChar = decodeDouble(b1, b2);
+                        }
+                    }
+                    if (outputChar == UNMAPPABLE_DECODING) { // can't be decoded
+                        return CoderResult.unmappableForLength(inputSize);
+                    }
+                    if (dp + 1 > dl)
+                        return CoderResult.OVERFLOW;
+                    da[dp++] = outputChar;
+                    sp += inputSize;
+                }
+                return CoderResult.UNDERFLOW;
+            } finally {
+                src.position(sp - src.arrayOffset());
+                dst.position(dp - dst.arrayOffset());
+            }
+        }
+
+        private CoderResult decodeBufferLoop(ByteBuffer src,
+                                             CharBuffer dst)
+        {
+            int mark = src.position();
+            int b1 = 0, b2 = 0;
+            int inputSize = 0;
+            char outputChar = UNMAPPABLE_DECODING;
+
+            try {
+                while (src.hasRemaining()) {
+                    b1 = src.get() & 0xff;
+                    inputSize = 1;
+                    outputChar = decodeSingle(b1);
+                    if (outputChar == UNMAPPABLE_DECODING) { // Multibyte char
+                        if (b1 == 0x8f) {   // JIS0212
+                            if (src.remaining() < 2)
+                               return CoderResult.UNDERFLOW;
+                            b1 = src.get() & 0xff;
+                            b2 = src.get() & 0xff;
+                            inputSize += 2;
+                            outputChar = decodeDoubleG3(b1, b2);
+                        } else {                     // JIS0201 JIS0208
+                            if (src.remaining() < 1)
+                               return CoderResult.UNDERFLOW;
+                            b2 = src.get() & 0xff;
+                            inputSize++;
+                            outputChar = decodeDouble(b1, b2);
+                        }
+                    }
+                    if (outputChar == UNMAPPABLE_DECODING) {
+                        return CoderResult.unmappableForLength(inputSize);
+                    }
+                if (dst.remaining() < 1)
+                    return CoderResult.OVERFLOW;
+                dst.put(outputChar);
+                mark += inputSize;
+                }
+                return CoderResult.UNDERFLOW;
+            } finally {
+                src.position(mark);
+            }
+        }
+
+        // Make some protected methods public for use by JISAutoDetect
+        public CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) {
+            if (src.hasArray() && dst.hasArray())
+                return decodeArrayLoop(src, dst);
+            else
+                return decodeBufferLoop(src, dst);
+        }
+        public void implReset() {
+            super.implReset();
+        }
+        public CoderResult implFlush(CharBuffer out) {
+            return super.implFlush(out);
+        }
+    }
+
+
+    static class Encoder extends CharsetEncoder {
+
+        final static SingleByte.Encoder ENC0201 =
+            (SingleByte.Encoder)new JIS_X_0201().newEncoder();
+
+        final static DoubleByte.Encoder ENC0208 =
+            (DoubleByte.Encoder)new JIS_X_0208().newEncoder();
+
+        final static DoubleByte.Encoder ENC0212 =
+            (DoubleByte.Encoder)new JIS_X_0212().newEncoder();
+
+        final static DoubleByte.Encoder ibm943 =
+            (DoubleByte.Encoder)new IBM943().newEncoder();
+
+        private final Surrogate.Parser sgp = new Surrogate.Parser();
+
+        private final SingleByte.Encoder enc0201;
+        private final DoubleByte.Encoder enc0208;
+        private final DoubleByte.Encoder enc0212;
+
+        private final String G2_c =
+            "\u2015\u2211\u221F\u2225\u222E\u22BF\u2460\u2461\u2462\u2463"+
+            "\u2464\u2465\u2466\u2467\u2468\u2469\u246A\u246B\u246C\u246D"+
+            "\u246E\u246F\u2470\u2471\u2472\u2473\u301D\u301F\u3232\u3239"+
+            "\u32A4\u32A5\u32A6\u32A7\u32A8\u3303\u330D\u3314\u3318\u3322"+
+            "\u3323\u3326\u3327\u332B\u3336\u333B\u3349\u334A\u334D\u3351"+
+            "\u3357\u337B\u337C\u337D\u337E\u338E\u338F\u339C\u339D\u339E"+
+            "\u33A1\u33C4\u33CD\u4FE0\u525D\u555E\u5699\u56CA\u5861\u5C5B"+
+            "\u5C62\u6414\u6451\u6522\u6805\u688E\u6F51\u7006\u7130\u7626"+
+            "\u79B1\u7C1E\u7E48\u7E61\u7E6B\u8141\u8346\u840A\u8523\u87EC"+
+            "\u881F\u8EC0\u91AC\u91B1\u9830\u9839\u985A\u9A52\u9DD7\u9E7C"+
+            "\u9EB4\u9EB5\uFF0D\uFF5E\uFFE0\uFFE1\uFFE2";
+
+        private final String G2_b =
+            "\uA1BD\uADF4\uADF8\uA1C2\uADF3\uADF9\uADA1\uADA2\uADA3\uADA4"+
+            "\uADA5\uADA6\uADA7\uADA8\uADA9\uADAA\uADAB\uADAC\uADAD\uADAE"+
+            "\uADAF\uADB0\uADB1\uADB2\uADB3\uADB4\uADE0\uADE1\uADEB\uADEC"+
+            "\uADE5\uADE6\uADE7\uADE8\uADE9\uADC6\uADCA\uADC1\uADC4\uADC2"+
+            "\uADCC\uADCB\uADC5\uADCD\uADC7\uADCF\uADC0\uADCE\uADC3\uADC8"+
+            "\uADC9\uADDF\uADEF\uADEE\uADED\uADD3\uADD4\uADD0\uADD1\uADD2"+
+            "\uADD6\uADD5\uADE3\uB6A2\uC7ED\uB0A2\uB3FA\uC7B9\uC5B6\uD6A2"+
+            "\uBCC8\uC1DF\uC4CF\uDAB9\uBAF4\uDBF4\uC8AE\uC6C2\uB1EB\uC1E9"+
+            "\uC5F8\uC3BD\uE5DA\uBDAB\uB7D2\uE7A6\uB7D5\uCDE9\uBED5\uC0E6"+
+            "\uCFB9\uB6ED\uBEDF\uC8B0\uCBCB\uF0F8\uC5BF\uC2CD\uB2AA\uB8B4"+
+            "\uB9ED\uCCCD\uA1DD\uA1C1\uA1F1\uA1F2\uA2CC";
+
+        private final String G3_c =
+            "\u2116\u2121\u2160\u2161\u2162\u2163\u2164\u2165\u2166\u2167"+
+            "\u2168\u2169\u2170\u2171\u2172\u2173\u2174\u2175\u2176\u2177"+
+            "\u2178\u2179\u3231\u4EFC\u50F4\u51EC\u5307\u5324\u548A\u5759"+
+            "\u589E\u5BEC\u5CF5\u5D53\u5FB7\u6085\u6120\u654E\u663B\u6665"+
+            "\u6801\u6A6B\u6AE2\u6DF2\u6DF8\u7028\u70BB\u7501\u7682\u769E"+
+            "\u7930\u7AE7\u7DA0\u7DD6\u8362\u85B0\u8807\u8B7F\u8CF4\u8D76"+
+            "\u90DE\u9115\u9592\u973B\u974D\u9751\u999E\u9AD9\u9B72\u9ED1"+
+            "\uF86F\uF929\uF9DC\uFA0E\uFA0F\uFA10\uFA11\uFA12\uFA13\uFA14"+
+            "\uFA15\uFA16\uFA17\uFA18\uFA19\uFA1A\uFA1B\uFA1C\uFA1D\uFA1E"+
+            "\uFA1F\uFA20\uFA21\uFA22\uFA23\uFA24\uFA25\uFA26\uFA27\uFA28"+
+            "\uFA29\uFA2A\uFA2B\uFA2C\uFA2D\uFF02\uFF07\uFFE4";
+
+        private final String G3_b =
+            "\uF3B8\uF3B9\uF3AB\uF3AC\uF3AD\uF3AE\uF3AF\uF3B0\uF3B1\uF3B2"+
+            "\uF3B3\uF3B4\uF3A1\uF3A2\uF3A3\uF3A4\uF3A5\uF3A6\uF3A7\uF3A8"+
+            "\uF3A9\uF3AA\uF3B7\uF4A2\uF4A3\uF4A4\uF4A5\uF4A6\uF4A8\uF4A9"+
+            "\uF4AC\uF4AE\uF4AF\uF4B0\uF4B2\uF4B3\uF4B4\uF4B5\uF4B6\uF4B7"+
+            "\uF4BA\uF4BD\uF4BE\uF4C0\uF4BF\uF4C2\uF4A1\uF4C6\uF4C7\uF4C8"+
+            "\uF4CB\uF4D0\uF4D4\uF4D5\uF4D7\uF4D9\uF4DC\uF4DF\uF4E0\uF4E1"+
+            "\uF4E5\uF4E7\uF4EA\uF4ED\uF4EE\uF4EF\uF4F4\uF4F5\uF4F6\uF4F8"+
+            "\uF3B8\uF4B9\uF4EB\uF4A7\uF4AA\uF4AB\uF4B1\uF4B8\uF4BB\uF4BC"+
+            "\uF4C4\uF4C5\uF4C9\uF4CC\uF4CD\uF4CE\uF4CF\uF4D1\uF4D3\uF4D6"+
+            "\uF4D8\uF4DA\uF4DB\uF4DE\uF4E2\uF4E3\uF4E4\uF4E6\uF4E8\uF4E9"+
+            "\uF4EC\uF4F1\uF4F2\uF4F3\uF4F7\uF3B6\uF3B5\uA2C3";
+
+        protected Encoder(Charset cs) {
+            this(cs, 3.0f, 3.0f, ENC0201, ENC0208, ENC0212);
+        }
+
+        protected Encoder(Charset cs, float avgBpc, float maxBpc,
+                          SingleByte.Encoder enc0201,
+                          DoubleByte.Encoder enc0208,
+                          DoubleByte.Encoder enc0212) {
+            super(cs, avgBpc, maxBpc);
+            this.enc0201 = enc0201;
+            this.enc0208 = enc0208;
+            this.enc0212 = enc0212;
+        }
+
+        public boolean canEncode(char c) {
+            byte[]  encodedBytes = new byte[3];
+            return encodeSingle(c, encodedBytes) != 0 ||
+                   encodeDouble(c) != UNMAPPABLE_ENCODING;
+        }
+
+        private final static String G1_c = "\u00A2\u00A3\u00AC";
+
+        protected int encodeSingle(char inputChar, byte[] outputByte) {
+            if (inputChar >= 0x80 && inputChar < 0x8e) {
+                outputByte[0] = (byte)inputChar;
+                return 1;
+            }
+            if (inputChar >= 0x90 && inputChar < 0xa0) {
+                outputByte[0] = (byte)inputChar;
+                return 1;
+            }
+            int b = enc0201.encode(inputChar);
+            if (b == UNMAPPABLE_ENCODING) {
+                int idx = G1_c.indexOf(inputChar);
+                if (idx > -1)
+                    b = 0xe0 + idx;
+            }
+            if (b == UNMAPPABLE_ENCODING)
+                return 0;
+            if (b >= 0 && b < 128) {
+                outputByte[0] = (byte)b;
+                return 1;
+            }
+            outputByte[0] = (byte)0x8e;
+            outputByte[1] = (byte)b;
+            return 2;
+        }
+
+        protected int encodeUDC(char ch) {
+            if (ch >= '\ue000' && ch <= '\ue757') {
+                if (ch < '\ue3ac') {
+                   int offset = (int)ch - 0xe000;
+                   int b = ((offset / 94) << 8) + (offset % 94);
+                   return b + 0xf5a1;
+                } else {
+                   int offset = (int)ch - 0xe3ac;
+                   int b = ((offset / 94) << 8) + (offset % 94);
+                   return b + 0x8ff5a1;
+                }
+            }
+            return UNMAPPABLE_ENCODING;
+        }
+
+        protected int encodeDouble(char ch) {
+            int idx = G2_c.indexOf(ch);
+            if (idx > -1)
+                return (int)G2_b.charAt(idx);
+            idx = G3_c.indexOf(ch);
+            if (idx > -1)
+                return (int)G3_b.charAt(idx) + 0x8f0000;
+            int b = enc0208.encodeChar(ch);
+            if (b != UNMAPPABLE_ENCODING)
+                return b + 0x8080;
+            b = encodeUDC(ch);
+            if (b != UNMAPPABLE_ENCODING)
+                return b;
+            if (ibm943.canEncode(ch)) {
+                b = enc0212.encodeChar(ch);
+                if (b != UNMAPPABLE_ENCODING) {
+                    b += 0x8F8080;
+                    return b;
+                }
+            }
+            return b;
+        }
+
+        private CoderResult encodeArrayLoop(CharBuffer src,
+                                            ByteBuffer dst)
+        {
+            char[] sa = src.array();
+            int sp = src.arrayOffset() + src.position();
+            int sl = src.arrayOffset() + src.limit();
+            assert (sp <= sl);
+            sp = (sp <= sl ? sp : sl);
+            byte[] da = dst.array();
+            int dp = dst.arrayOffset() + dst.position();
+            int dl = dst.arrayOffset() + dst.limit();
+            assert (dp <= dl);
+            dp = (dp <= dl ? dp : dl);
+
+            int outputSize = 0;
+            byte[]  outputByte;
+            int     inputSize = 0;                 // Size of input
+            byte[]  tmpBuf = new byte[3];
+
+            try {
+                while (sp < sl) {
+                    outputByte = tmpBuf;
+                    char c = sa[sp];
+                    if (Character.isSurrogate(c)) {
+                        if (sgp.parse(c, sa, sp, sl) < 0)
+                            return sgp.error();
+                        return sgp.unmappableResult();
+                    }
+                    outputSize = encodeSingle(c, outputByte);
+                    if (outputSize == 0) { // DoubleByte
+                        int ncode = encodeDouble(c);
+                        if (ncode != UNMAPPABLE_ENCODING) {
+                            if ((ncode & 0xFF0000) == 0) {
+                                outputByte[0] = (byte) ((ncode & 0xff00) >> 8);
+                                outputByte[1] = (byte) (ncode & 0xff);
+                                outputSize = 2;
+                            } else {
+                                outputByte[0] = (byte) 0x8f;
+                                outputByte[1] = (byte) ((ncode & 0xff00) >> 8);
+                                outputByte[2] = (byte) (ncode & 0xff);
+                                outputSize = 3;
+                            }
+                        } else {
+                            return CoderResult.unmappableForLength(1);
+                        }
+                    }
+                    if (dl - dp < outputSize)
+                        return CoderResult.OVERFLOW;
+                    // Put the byte in the output buffer
+                    for (int i = 0; i < outputSize; i++) {
+                        da[dp++] = outputByte[i];
+                    }
+                    sp++;
+                }
+                return CoderResult.UNDERFLOW;
+            } finally {
+                src.position(sp - src.arrayOffset());
+                dst.position(dp - dst.arrayOffset());
+            }
+        }
+
+        private CoderResult encodeBufferLoop(CharBuffer src,
+                                             ByteBuffer dst)
+        {
+            int outputSize = 0;
+            byte[]  outputByte;
+            int     inputSize = 0;                 // Size of input
+            byte[]  tmpBuf = new byte[3];
+
+            int mark = src.position();
+
+            try {
+                while (src.hasRemaining()) {
+                    outputByte = tmpBuf;
+                    char c = src.get();
+                    if (Character.isSurrogate(c)) {
+                        if (sgp.parse(c, src) < 0)
+                            return sgp.error();
+                        return sgp.unmappableResult();
+                    }
+                    outputSize = encodeSingle(c, outputByte);
+                    if (outputSize == 0) { // DoubleByte
+                        int ncode = encodeDouble(c);
+                        if (ncode != UNMAPPABLE_ENCODING) {
+                            if ((ncode & 0xFF0000) == 0) {
+                                outputByte[0] = (byte) ((ncode & 0xff00) >> 8);
+                                outputByte[1] = (byte) (ncode & 0xff);
+                                outputSize = 2;
+                            } else {
+                                outputByte[0] = (byte) 0x8f;
+                                outputByte[1] = (byte) ((ncode & 0xff00) >> 8);
+                                outputByte[2] = (byte) (ncode & 0xff);
+                                outputSize = 3;
+                            }
+                        } else {
+                            return CoderResult.unmappableForLength(1);
+                        }
+                    }
+                    if (dst.remaining() < outputSize)
+                        return CoderResult.OVERFLOW;
+                    // Put the byte in the output buffer
+                    for (int i = 0; i < outputSize; i++) {
+                        dst.put(outputByte[i]);
+                    }
+                    mark++;
+                }
+                return CoderResult.UNDERFLOW;
+            } finally {
+                src.position(mark);
+            }
+        }
+
+        protected CoderResult encodeLoop(CharBuffer src,
+                                         ByteBuffer dst)
+        {
+            if (src.hasArray() && dst.hasArray())
+                return encodeArrayLoop(src, dst);
+            else
+                return encodeBufferLoop(src, dst);
+        }
+    }
+}
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Type.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Type.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -896,7 +896,7 @@
             if (moreInfo && bound != null && !isPrintingBound)
                 try {
                     isPrintingBound = true;
-                    s.append("{:").append(bound.bound).append(":}");
+                    s.append("{:").append(bound.getUpperBound()).append(":}");
                 } finally {
                     isPrintingBound = false;
                 }
@@ -1607,7 +1607,7 @@
          *  itself. Furthermore, the erasure_field of the class
          *  points to the first class or interface bound.
          */
-        public Type bound = null;
+        private Type _bound = null;
 
         /** The lower bound of this type variable.
          *  TypeVars don't normally have a lower bound, so it is normally set
@@ -1620,7 +1620,7 @@
             super(null, TypeMetadata.EMPTY);
             Assert.checkNonNull(lower);
             tsym = new TypeVariableSymbol(0, name, this, owner);
-            this.bound = null;
+            this.setUpperBound(null);
             this.lower = lower;
         }
 
@@ -1632,15 +1632,20 @@
                        TypeMetadata metadata) {
             super(tsym, metadata);
             Assert.checkNonNull(lower);
-            this.bound = bound;
+            this.setUpperBound(bound);
             this.lower = lower;
         }
 
         @Override
         public TypeVar cloneWithMetadata(TypeMetadata md) {
-            return new TypeVar(tsym, bound, lower, md) {
+            return new TypeVar(tsym, getUpperBound(), lower, md) {
                 @Override
                 public Type baseType() { return TypeVar.this.baseType(); }
+
+                @Override @DefinedBy(Api.LANGUAGE_MODEL)
+                public Type getUpperBound() { return TypeVar.this.getUpperBound(); }
+
+                public void setUpperBound(Type bound) { TypeVar.this.setUpperBound(bound); }
             };
         }
 
@@ -1655,12 +1660,9 @@
         }
 
         @Override @DefinedBy(Api.LANGUAGE_MODEL)
-        public Type getUpperBound() {
-            if ((bound == null || bound.hasTag(NONE)) && this != tsym.type) {
-                bound = tsym.type.getUpperBound();
-            }
-            return bound;
-        }
+        public Type getUpperBound() { return _bound; }
+
+        public void setUpperBound(Type bound) { this._bound = bound; }
 
         int rank_field = -1;
 
@@ -1709,7 +1711,7 @@
                             WildcardType wildcard) {
             super(name, owner, lower);
             this.lower = Assert.checkNonNull(lower);
-            this.bound = upper;
+            this.setUpperBound(upper);
             this.wildcard = wildcard;
         }
 
@@ -1725,9 +1727,14 @@
 
         @Override
         public CapturedType cloneWithMetadata(TypeMetadata md) {
-            return new CapturedType(tsym, bound, bound, lower, wildcard, md) {
+            return new CapturedType(tsym, getUpperBound(), getUpperBound(), lower, wildcard, md) {
                 @Override
                 public Type baseType() { return CapturedType.this.baseType(); }
+
+                @Override @DefinedBy(Api.LANGUAGE_MODEL)
+                public Type getUpperBound() { return CapturedType.this.getUpperBound(); }
+
+                public void setUpperBound(Type bound) { CapturedType.this.setUpperBound(bound); }
             };
         }
 
@@ -1832,7 +1839,7 @@
 
         public void complete() {
             for (List<Type> l = tvars; l.nonEmpty(); l = l.tail) {
-                ((TypeVar)l.head).bound.complete();
+                ((TypeVar)l.head).getUpperBound().complete();
             }
             qtype.complete();
         }
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -132,7 +132,7 @@
         if (t.hasTag(WILDCARD)) {
             WildcardType w = (WildcardType) t;
             if (w.isSuperBound())
-                return w.bound == null ? syms.objectType : w.bound.bound;
+                return w.bound == null ? syms.objectType : w.bound.getUpperBound();
             else
                 return wildUpperBound(w.type);
         }
@@ -146,7 +146,7 @@
     public Type cvarUpperBound(Type t) {
         if (t.hasTag(TYPEVAR)) {
             TypeVar v = (TypeVar) t;
-            return v.isCaptured() ? cvarUpperBound(v.bound) : v;
+            return v.isCaptured() ? cvarUpperBound(v.getUpperBound()) : v;
         }
         else return t;
     }
@@ -1821,14 +1821,14 @@
                 case TYPEVAR:
                     if (isSubtype(t, s)) {
                         return true;
-                    } else if (isCastable(t.bound, s, noWarnings)) {
+                    } else if (isCastable(t.getUpperBound(), s, noWarnings)) {
                         warnStack.head.warn(LintCategory.UNCHECKED);
                         return true;
                     } else {
                         return false;
                     }
                 default:
-                    return isCastable(t.bound, s, warnStack.head);
+                    return isCastable(t.getUpperBound(), s, warnStack.head);
                 }
             }
 
@@ -1954,7 +1954,7 @@
         if (t == s) return false;
         if (t.hasTag(TYPEVAR)) {
             TypeVar tv = (TypeVar) t;
-            return !isCastable(tv.bound,
+            return !isCastable(tv.getUpperBound(),
                                relaxBound(s),
                                noWarnings);
         }
@@ -2150,7 +2150,7 @@
                 if (t.tsym == sym)
                     return t;
                 else
-                    return asSuper(t.bound, sym);
+                    return asSuper(t.getUpperBound(), sym);
             }
 
             @Override
@@ -2269,7 +2269,7 @@
 
             @Override
             public Type visitTypeVar(TypeVar t, Symbol sym) {
-                return memberType(t.bound, sym);
+                return memberType(t.getUpperBound(), sym);
             }
 
             @Override
@@ -2392,7 +2392,7 @@
 
             @Override
             public Type visitTypeVar(TypeVar t, Boolean recurse) {
-                Type erased = erasure(t.bound, recurse);
+                Type erased = erasure(t.getUpperBound(), recurse);
                 return combineMetadata(erased, t);
             }
         };
@@ -2498,11 +2498,11 @@
              */
             @Override
             public Type visitTypeVar(TypeVar t, Void ignored) {
-                if (t.bound.hasTag(TYPEVAR) ||
-                    (!t.bound.isCompound() && !t.bound.isInterface())) {
-                    return t.bound;
+                if (t.getUpperBound().hasTag(TYPEVAR) ||
+                    (!t.getUpperBound().isCompound() && !t.getUpperBound().isInterface())) {
+                    return t.getUpperBound();
                 } else {
-                    return supertype(t.bound);
+                    return supertype(t.getUpperBound());
                 }
             }
 
@@ -2573,11 +2573,11 @@
 
             @Override
             public List<Type> visitTypeVar(TypeVar t, Void ignored) {
-                if (t.bound.isCompound())
-                    return interfaces(t.bound);
-
-                if (t.bound.isInterface())
-                    return List.of(t.bound);
+                if (t.getUpperBound().isCompound())
+                    return interfaces(t.getUpperBound());
+
+                if (t.getUpperBound().isInterface())
+                    return List.of(t.getUpperBound());
 
                 return List.nil();
             }
@@ -2662,9 +2662,9 @@
      * @param allInterfaces are all bounds interface types?
      */
     public void setBounds(TypeVar t, List<Type> bounds, boolean allInterfaces) {
-        t.bound = bounds.tail.isEmpty() ?
+        t.setUpperBound( bounds.tail.isEmpty() ?
                 bounds.head :
-                makeIntersectionType(bounds, allInterfaces);
+                makeIntersectionType(bounds, allInterfaces) );
         t.rank_field = -1;
     }
     // </editor-fold>
@@ -2674,10 +2674,10 @@
      * Return list of bounds of the given type variable.
      */
     public List<Type> getBounds(TypeVar t) {
-        if (t.bound.hasTag(NONE))
+        if (t.getUpperBound().hasTag(NONE))
             return List.nil();
-        else if (t.bound.isErroneous() || !t.bound.isCompound())
-            return List.of(t.bound);
+        else if (t.getUpperBound().isErroneous() || !t.getUpperBound().isCompound())
+            return List.of(t.getUpperBound());
         else if ((erasure(t).tsym.flags() & INTERFACE) == 0)
             return interfaces(t).prepend(supertype(t));
         else
@@ -3361,8 +3361,8 @@
         // calculate new bounds
         for (Type t : tvars) {
             TypeVar tv = (TypeVar) t;
-            Type bound = subst(tv.bound, from, to);
-            if (bound != tv.bound)
+            Type bound = subst(tv.getUpperBound(), from, to);
+            if (bound != tv.getUpperBound())
                 changed = true;
             newBoundsBuf.append(bound);
         }
@@ -3386,15 +3386,15 @@
         // set the bounds of new type variables to the new bounds
         for (Type t : newTvars.toList()) {
             TypeVar tv = (TypeVar) t;
-            tv.bound = newBounds.head;
+            tv.setUpperBound( newBounds.head );
             newBounds = newBounds.tail;
         }
         return newTvars.toList();
     }
 
     public TypeVar substBound(TypeVar t, List<Type> from, List<Type> to) {
-        Type bound1 = subst(t.bound, from, to);
-        if (bound1 == t.bound)
+        Type bound1 = subst(t.getUpperBound(), from, to);
+        if (bound1 == t.getUpperBound())
             return t;
         else {
             // create new type variable without bounds
@@ -3402,7 +3402,7 @@
                                      t.getMetadata());
             // the new bound should use the new type variable in place
             // of the old
-            tv.bound = subst(bound1, List.of(t), List.of(tv));
+            tv.setUpperBound( subst(bound1, List.of(t), List.of(tv)) );
             return tv;
         }
     }
@@ -3435,7 +3435,7 @@
         List<Type> tvars1 = tvars.map(newInstanceFun);
         for (List<Type> l = tvars1; l.nonEmpty(); l = l.tail) {
             TypeVar tv = (TypeVar) l.head;
-            tv.bound = subst(tv.bound, tvars, tvars1);
+            tv.setUpperBound( subst(tv.getUpperBound(), tvars, tvars1) );
         }
         return tvars1;
     }
@@ -3614,11 +3614,11 @@
         }
         private void appendTyparamString(TypeVar t, StringBuilder buf) {
             buf.append(t);
-            if (t.bound == null ||
-                t.bound.tsym.getQualifiedName() == names.java_lang_Object)
+            if (t.getUpperBound() == null ||
+                t.getUpperBound().tsym.getQualifiedName() == names.java_lang_Object)
                 return;
             buf.append(" extends "); // Java syntax; no need for i18n
-            Type bound = t.bound;
+            Type bound = t.getUpperBound();
             if (!bound.isCompound()) {
                 buf.append(bound);
             } else if ((erasure(t).tsym.flags() & INTERFACE) == 0) {
@@ -4375,24 +4375,24 @@
                     Ui = syms.objectType;
                 switch (Ti.kind) {
                 case UNBOUND:
-                    Si.bound = subst(Ui, A, S);
+                    Si.setUpperBound( subst(Ui, A, S) );
                     Si.lower = syms.botType;
                     break;
                 case EXTENDS:
-                    Si.bound = glb(Ti.getExtendsBound(), subst(Ui, A, S));
+                    Si.setUpperBound( glb(Ti.getExtendsBound(), subst(Ui, A, S)) );
                     Si.lower = syms.botType;
                     break;
                 case SUPER:
-                    Si.bound = subst(Ui, A, S);
+                    Si.setUpperBound( subst(Ui, A, S) );
                     Si.lower = Ti.getSuperBound();
                     break;
                 }
-                Type tmpBound = Si.bound.hasTag(UNDETVAR) ? ((UndetVar)Si.bound).qtype : Si.bound;
+                Type tmpBound = Si.getUpperBound().hasTag(UNDETVAR) ? ((UndetVar)Si.getUpperBound()).qtype : Si.getUpperBound();
                 Type tmpLower = Si.lower.hasTag(UNDETVAR) ? ((UndetVar)Si.lower).qtype : Si.lower;
-                if (!Si.bound.hasTag(ERROR) &&
+                if (!Si.getUpperBound().hasTag(ERROR) &&
                     !Si.lower.hasTag(ERROR) &&
                     isSameType(tmpBound, tmpLower)) {
-                    currentS.head = Si.bound;
+                    currentS.head = Si.getUpperBound();
                 }
             }
             currentA = currentA.tail;
@@ -4720,9 +4720,9 @@
         @Override
         public Type visitTypeVar(TypeVar t, Void s) {
             if (rewriteTypeVars) {
-                Type bound = t.bound.contains(t) ?
-                        erasure(t.bound) :
-                        visit(t.bound);
+                Type bound = t.getUpperBound().contains(t) ?
+                        erasure(t.getUpperBound()) :
+                        visit(t.getUpperBound());
                 return rewriteAsWildcardType(bound, t, EXTENDS);
             } else {
                 return t;
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java	Tue Jan 29 09:38:31 2019 -0500
@@ -798,7 +798,7 @@
         for (JCTypeParameter tvar : typarams) {
             TypeVar a = (TypeVar)tvar.type;
             a.tsym.flags_field |= UNATTRIBUTED;
-            a.bound = Type.noType;
+            a.setUpperBound(Type.noType);
             if (!tvar.bounds.isEmpty()) {
                 List<Type> bounds = List.of(attribType(tvar.bounds.head, env));
                 for (JCExpression bound : tvar.bounds.tail)
@@ -4520,9 +4520,9 @@
             annotate.annotateTypeParameterSecondStage(tree, tree.annotations);
         }
 
-        if (!typeVar.bound.isErroneous()) {
+        if (!typeVar.getUpperBound().isErroneous()) {
             //fixup type-parameter bound computed in 'attribTypeVariables'
-            typeVar.bound = checkIntersection(tree, tree.bounds);
+            typeVar.setUpperBound(checkIntersection(tree, tree.bounds));
         }
     }
 
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java	Tue Jan 29 09:38:31 2019 -0500
@@ -2285,7 +2285,7 @@
             return;
         if (seen.contains(t)) {
             tv = (TypeVar)t;
-            tv.bound = types.createErrorType(t);
+            tv.setUpperBound(types.createErrorType(t));
             log.error(pos, Errors.CyclicInheritance(t));
         } else if (t.hasTag(TYPEVAR)) {
             tv = (TypeVar)t;
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Infer.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Infer.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -537,8 +537,8 @@
         for (Type t : todo) {
             UndetVar uv = (UndetVar)t;
             TypeVar ct = (TypeVar)uv.getInst();
-            ct.bound = types.glb(inferenceContext.asInstTypes(types.getBounds(ct)));
-            if (ct.bound.isErroneous()) {
+            ct.setUpperBound( types.glb(inferenceContext.asInstTypes(types.getBounds(ct))) );
+            if (ct.getUpperBound().isErroneous()) {
                 //report inference error if glb fails
                 reportBoundError(uv, InferenceBound.UPPER);
             }
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/LambdaToMethod.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/LambdaToMethod.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -989,7 +989,7 @@
                 // use the SAM parameter type
                 if (checkForIntersection && descPTypes.head.getKind() == TypeKind.TYPEVAR) {
                     TypeVar tv = (TypeVar) descPTypes.head;
-                    if (tv.bound.getKind() == TypeKind.INTERSECTION) {
+                    if (tv.getUpperBound().getKind() == TypeKind.INTERSECTION) {
                         parmType = samPTypes.head;
                     }
                 }
@@ -2375,7 +2375,7 @@
                         return true;
                     case TYPEVAR:
                         TypeVar tv = (TypeVar) t;
-                        return isIntersectionOrUnionType(tv.bound);
+                        return isIntersectionOrUnionType(tv.getUpperBound());
                 }
                 return false;
             }
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/util/RichDiagnosticFormatter.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/util/RichDiagnosticFormatter.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -506,11 +506,11 @@
         public Void visitCapturedType(CapturedType t, Void ignored) {
             if (indexOf(t, WhereClauseKind.CAPTURED) == -1) {
                 String suffix = t.lower == syms.botType ? ".1" : "";
-                JCDiagnostic d = diags.fragment("where.captured"+ suffix, t, t.bound, t.lower, t.wildcard);
+                JCDiagnostic d = diags.fragment("where.captured"+ suffix, t, t.getUpperBound(), t.lower, t.wildcard);
                 whereClauses.get(WhereClauseKind.CAPTURED).put(t, d);
                 visit(t.wildcard);
                 visit(t.lower);
-                visit(t.bound);
+                visit(t.getUpperBound());
             }
             return null;
         }
@@ -555,7 +555,7 @@
             t = (TypeVar)t.stripMetadataIfNeeded();
             if (indexOf(t, WhereClauseKind.TYPEVAR) == -1) {
                 //access the bound type and skip error types
-                Type bound = t.bound;
+                Type bound = t.getUpperBound();
                 while ((bound instanceof ErrorType))
                     bound = ((ErrorType)bound).getOriginalType();
                 //retrieve the bound list - if the type variable
--- a/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/VM.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/VM.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -130,6 +130,7 @@
   private static Type intxType;
   private static Type uintxType;
   private static Type sizetType;
+  private static Type uint64tType;
   private static CIntegerType boolType;
   private Boolean sharingEnabled;
   private Boolean compressedOopsEnabled;
@@ -231,6 +232,50 @@
         return addr.getCIntegerAt(0, sizetType.getSize(), true);
      }
 
+     public boolean isCcstr() {
+        return type.equals("ccstr");
+     }
+
+     public String getCcstr() {
+        if (Assert.ASSERTS_ENABLED) {
+           Assert.that(isCcstr(), "not a ccstr flag!");
+        }
+        return CStringUtilities.getString(addr.getAddressAt(0));
+     }
+
+     public boolean isCcstrlist() {
+        return type.equals("ccstrlist");
+     }
+
+     public String getCcstrlist() {
+        if (Assert.ASSERTS_ENABLED) {
+           Assert.that(isCcstrlist(), "not a ccstrlist flag!");
+        }
+        return CStringUtilities.getString(addr.getAddressAt(0));
+     }
+
+     public boolean isDouble() {
+        return type.equals("double");
+     }
+
+     public double getDouble() {
+        if (Assert.ASSERTS_ENABLED) {
+           Assert.that(isDouble(), "not a double flag!");
+        }
+        return addr.getJDoubleAt(0);
+     }
+
+     public boolean isUint64t() {
+        return type.equals("uint64_t");
+     }
+
+     public long getUint64t() {
+        if (Assert.ASSERTS_ENABLED) {
+           Assert.that(isUint64t(), "not an uint64_t flag!");
+        }
+        return addr.getCIntegerAt(0, uint64tType.getSize(), true);
+     }
+
      public String getValue() {
         if (isBool()) {
            return Boolean.toString(getBool());
@@ -241,11 +286,27 @@
         } else if (isIntx()) {
            return Long.toString(getIntx());
         } else if (isUIntx()) {
-           return Long.toString(getUIntx());
+           return Long.toUnsignedString(getUIntx());
         } else if (isSizet()) {
-            return Long.toString(getSizet());
+           return Long.toUnsignedString(getSizet());
+        } else if (isCcstr()) {
+           var str = getCcstr();
+           if (str != null) {
+               str = "\"" + str + "\"";
+           }
+           return str;
+        } else if (isCcstrlist()) {
+           var str = getCcstrlist();
+           if (str != null) {
+               str = "\"" + str + "\"";
+           }
+           return str;
+        } else if (isDouble()) {
+           return Double.toString(getDouble());
+        } else if (isUint64t()) {
+           return Long.toUnsignedString(getUint64t());
         } else {
-           return null;
+           throw new WrongTypeException("Unknown type: " + type + " (" + name + ")");
         }
      }
   };
@@ -383,6 +444,7 @@
     intxType = db.lookupType("intx");
     uintxType = db.lookupType("uintx");
     sizetType = db.lookupType("size_t");
+    uint64tType = db.lookupType("uint64_t");
     boolType = (CIntegerType) db.lookupType("bool");
 
     minObjAlignmentInBytes = getObjectAlignmentInBytes();
--- a/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/HeapSummary.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/HeapSummary.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -294,6 +294,8 @@
       if (f != null) {
          if (f.isBool()) {
             return f.getBool()? 1L : 0L;
+         } else if (f.isUIntx() || f.isSizet() || f.isUint64t()) {
+            return Long.parseUnsignedLong(f.getValue());
          } else {
             return Long.parseLong(f.getValue());
          }
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfig.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfig.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -309,8 +309,11 @@
     public final int jvmAccWrittenFlags = getConstant("JVM_ACC_WRITTEN_FLAGS", Integer.class);
     public final int jvmAccSynthetic = getConstant("JVM_ACC_SYNTHETIC", Integer.class);
 
+    public final int jvmciCompileStateCanPostOnExceptionsOffset = getFieldOffset("JVMCIEnv::_jvmti_can_post_on_exceptions", Integer.class, "jbyte", Integer.MIN_VALUE);
+
     public final int threadTlabOffset = getFieldOffset("Thread::_tlab", Integer.class, "ThreadLocalAllocBuffer");
     public final int javaThreadAnchorOffset = getFieldOffset("JavaThread::_anchor", Integer.class, "JavaFrameAnchor");
+    public final int javaThreadShouldPostOnExceptionsFlagOffset = getFieldOffset("JavaThread::_should_post_on_exceptions_flag", Integer.class, "int", Integer.MIN_VALUE);
     public final int threadObjectOffset = getFieldOffset("JavaThread::_threadObj", Integer.class, "oop");
     public final int osThreadOffset = getFieldOffset("JavaThread::_osthread", Integer.class, "OSThread*");
     public final int threadIsMethodHandleReturnOffset = getFieldOffset("JavaThread::_is_method_handle_return", Integer.class, "int");
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -124,7 +124,7 @@
         Plugins plugins = new Plugins(invocationPlugins);
         NodeIntrinsificationProvider nodeIntrinsificationProvider = new NodeIntrinsificationProvider(metaAccess, snippetReflection, foreignCalls, wordTypes);
         HotSpotWordOperationPlugin wordOperationPlugin = new HotSpotWordOperationPlugin(snippetReflection, wordTypes);
-        HotSpotNodePlugin nodePlugin = new HotSpotNodePlugin(wordOperationPlugin);
+        HotSpotNodePlugin nodePlugin = new HotSpotNodePlugin(wordOperationPlugin, config, wordTypes);
 
         plugins.appendTypePlugin(nodePlugin);
         plugins.appendNodePlugin(nodePlugin);
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotNodePlugin.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotNodePlugin.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,21 +24,41 @@
 
 package org.graalvm.compiler.hotspot.meta;
 
+import static jdk.vm.ci.meta.DeoptimizationAction.None;
+import static jdk.vm.ci.meta.DeoptimizationReason.TransferToInterpreter;
 import static org.graalvm.compiler.core.common.GraalOptions.ImmutableCode;
 
+import org.graalvm.compiler.core.common.CompilationIdentifier;
+import org.graalvm.compiler.core.common.type.StampFactory;
 import org.graalvm.compiler.core.common.type.StampPair;
+import org.graalvm.compiler.hotspot.GraalHotSpotVMConfig;
+import org.graalvm.compiler.hotspot.HotSpotCompilationIdentifier;
+import org.graalvm.compiler.hotspot.nodes.CurrentJavaThreadNode;
+import org.graalvm.compiler.hotspot.word.HotSpotWordTypes;
 import org.graalvm.compiler.nodes.ConstantNode;
+import org.graalvm.compiler.nodes.FixedGuardNode;
+import org.graalvm.compiler.nodes.FixedWithNextNode;
+import org.graalvm.compiler.nodes.LogicNode;
+import org.graalvm.compiler.nodes.NamedLocationIdentity;
+import org.graalvm.compiler.nodes.StructuredGraph;
 import org.graalvm.compiler.nodes.ValueNode;
+import org.graalvm.compiler.nodes.calc.IntegerEqualsNode;
 import org.graalvm.compiler.nodes.extended.GuardingNode;
 import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderContext;
 import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderTool;
 import org.graalvm.compiler.nodes.graphbuilderconf.InlineInvokePlugin;
 import org.graalvm.compiler.nodes.graphbuilderconf.NodePlugin;
 import org.graalvm.compiler.nodes.graphbuilderconf.TypePlugin;
+import org.graalvm.compiler.nodes.memory.HeapAccess.BarrierType;
+import org.graalvm.compiler.nodes.memory.ReadNode;
+import org.graalvm.compiler.nodes.memory.address.AddressNode;
+import org.graalvm.compiler.nodes.memory.address.OffsetAddressNode;
 import org.graalvm.compiler.nodes.util.ConstantFoldUtil;
 import org.graalvm.compiler.word.Word;
 import org.graalvm.compiler.word.WordOperationPlugin;
+import jdk.internal.vm.compiler.word.LocationIdentity;
 
+import jdk.vm.ci.hotspot.HotSpotCompilationRequest;
 import jdk.vm.ci.meta.JavaConstant;
 import jdk.vm.ci.meta.JavaKind;
 import jdk.vm.ci.meta.JavaType;
@@ -47,23 +67,30 @@
 import jdk.vm.ci.meta.ResolvedJavaMethod;
 import jdk.vm.ci.meta.ResolvedJavaType;
 
+import java.lang.reflect.Field;
+import sun.misc.Unsafe;
+
 /**
- * This plugin handles the HotSpot-specific customizations of bytecode parsing:
- * <p>
- * {@link Word}-type rewriting for {@link GraphBuilderContext#parsingIntrinsic intrinsic} functions
- * (snippets and method substitutions), by forwarding to the {@link WordOperationPlugin}. Note that
- * we forward the {@link NodePlugin} and {@link TypePlugin} methods, but not the
+ * This plugin does HotSpot-specific customization of bytecode parsing:
+ * <ul>
+ * <li>{@link Word}-type rewriting for {@link GraphBuilderContext#parsingIntrinsic intrinsic}
+ * functions (snippets and method substitutions), by forwarding to the {@link WordOperationPlugin}.
+ * Note that we forward the {@link NodePlugin} and {@link TypePlugin} methods, but not the
  * {@link InlineInvokePlugin} methods implemented by {@link WordOperationPlugin}. The latter is not
  * necessary because HotSpot only uses the {@link Word} type in methods that are force-inlined,
- * i.e., there are never non-inlined invokes that involve the {@link Word} type.
- * <p>
- * Constant folding of field loads.
+ * i.e., there are never non-inlined invokes that involve the {@link Word} type.</li>
+ * <li>Constant folding of field loads.</li>
+ * </ul>
  */
 public final class HotSpotNodePlugin implements NodePlugin, TypePlugin {
     protected final WordOperationPlugin wordOperationPlugin;
+    private final GraalHotSpotVMConfig config;
+    private final HotSpotWordTypes wordTypes;
 
-    public HotSpotNodePlugin(WordOperationPlugin wordOperationPlugin) {
+    public HotSpotNodePlugin(WordOperationPlugin wordOperationPlugin, GraalHotSpotVMConfig config, HotSpotWordTypes wordTypes) {
         this.wordOperationPlugin = wordOperationPlugin;
+        this.config = config;
+        this.wordTypes = wordTypes;
     }
 
     @Override
@@ -180,4 +207,58 @@
         }
         return false;
     }
+
+    @Override
+    public FixedWithNextNode instrumentExceptionDispatch(StructuredGraph graph, FixedWithNextNode afterExceptionLoaded) {
+        CompilationIdentifier id = graph.compilationId();
+        if (id instanceof HotSpotCompilationIdentifier) {
+            HotSpotCompilationRequest request = ((HotSpotCompilationIdentifier) id).getRequest();
+            if (request != null) {
+                long compileState = request.getJvmciEnv();
+                if (compileState != 0 &&
+                                config.jvmciCompileStateCanPostOnExceptionsOffset != Integer.MIN_VALUE &&
+                                config.javaThreadShouldPostOnExceptionsFlagOffset != Integer.MIN_VALUE) {
+                    long canPostOnExceptionsOffset = compileState + config.jvmciCompileStateCanPostOnExceptionsOffset;
+                    boolean canPostOnExceptions = UNSAFE.getByte(canPostOnExceptionsOffset) != 0;
+                    if (canPostOnExceptions) {
+                        // If the exception capability is set, then generate code
+                        // to check the JavaThread.should_post_on_exceptions flag to see
+                        // if we actually need to report exception events for the current
+                        // thread. If not, take the fast path otherwise deoptimize.
+                        CurrentJavaThreadNode thread = graph.unique(new CurrentJavaThreadNode(wordTypes.getWordKind()));
+                        ValueNode offset = graph.unique(ConstantNode.forLong(config.javaThreadShouldPostOnExceptionsFlagOffset));
+                        AddressNode address = graph.unique(new OffsetAddressNode(thread, offset));
+                        ReadNode shouldPostException = graph.add(new ReadNode(address, JAVA_THREAD_SHOULD_POST_ON_EXCEPTIONS_FLAG_LOCATION, StampFactory.intValue(), BarrierType.NONE));
+                        afterExceptionLoaded.setNext(shouldPostException);
+                        ValueNode zero = graph.unique(ConstantNode.forInt(0));
+                        LogicNode cond = graph.unique(new IntegerEqualsNode(shouldPostException, zero));
+                        FixedGuardNode check = graph.add(new FixedGuardNode(cond, TransferToInterpreter, None, false));
+                        shouldPostException.setNext(check);
+                        return check;
+                    }
+                }
+            }
+        }
+        return afterExceptionLoaded;
+    }
+
+    private static final LocationIdentity JAVA_THREAD_SHOULD_POST_ON_EXCEPTIONS_FLAG_LOCATION = NamedLocationIdentity.mutable("JavaThread::_should_post_on_exceptions_flag");
+
+    private static final Unsafe UNSAFE = initUnsafe();
+
+    private static Unsafe initUnsafe() {
+        try {
+            // Fast path when we are trusted.
+            return Unsafe.getUnsafe();
+        } catch (SecurityException se) {
+            // Slow path when we are not trusted.
+            try {
+                Field theUnsafe = Unsafe.class.getDeclaredField("theUnsafe");
+                theUnsafe.setAccessible(true);
+                return (Unsafe) theUnsafe.get(Unsafe.class);
+            } catch (Exception e) {
+                throw new RuntimeException("exception while trying to get Unsafe", e);
+            }
+        }
+    }
 }
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/BytecodeParser.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/BytecodeParser.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1106,7 +1106,11 @@
         deopt.updateNodeSourcePosition(() -> createBytecodePosition());
     }
 
+    /**
+     * @return the entry point to exception dispatch
+     */
     private AbstractBeginNode handleException(ValueNode exceptionObject, int bci, boolean deoptimizeOnly) {
+        FixedWithNextNode currentLastInstr = lastInstr;
         assert bci == BytecodeFrame.BEFORE_BCI || bci == bci() : "invalid bci";
         debug.log("Creating exception dispatch edges at %d, exception object=%s, exception seen=%s", bci, exceptionObject, (profilingInfo == null ? "" : profilingInfo.getExceptionSeen(bci)));
 
@@ -1126,18 +1130,25 @@
             dispatchState.setRethrowException(true);
         }
         this.controlFlowSplit = true;
-        FixedWithNextNode finishedDispatch = finishInstruction(dispatchBegin, dispatchState);
+        FixedWithNextNode afterExceptionLoaded = finishInstruction(dispatchBegin, dispatchState);
 
         if (deoptimizeOnly) {
             DeoptimizeNode deoptimizeNode = graph.add(new DeoptimizeNode(DeoptimizationAction.None, DeoptimizationReason.TransferToInterpreter));
-            dispatchBegin.setNext(BeginNode.begin(deoptimizeNode));
+            afterExceptionLoaded.setNext(BeginNode.begin(deoptimizeNode));
         } else {
-            createHandleExceptionTarget(finishedDispatch, bci, dispatchState);
-        }
+            createHandleExceptionTarget(afterExceptionLoaded, bci, dispatchState);
+        }
+        assert currentLastInstr == lastInstr;
         return dispatchBegin;
     }
 
-    protected void createHandleExceptionTarget(FixedWithNextNode finishedDispatch, int bci, FrameStateBuilder dispatchState) {
+    protected void createHandleExceptionTarget(FixedWithNextNode afterExceptionLoaded, int bci, FrameStateBuilder dispatchState) {
+        FixedWithNextNode afterInstrumentation = afterExceptionLoaded;
+        for (NodePlugin plugin : graphBuilderConfig.getPlugins().getNodePlugins()) {
+            afterInstrumentation = plugin.instrumentExceptionDispatch(graph, afterInstrumentation);
+            assert afterInstrumentation.next() == null : "exception dispatch instrumentation will be linked to dispatch block";
+        }
+
         BciBlock dispatchBlock = currentBlock.exceptionDispatchBlock();
         /*
          * The exception dispatch block is always for the last bytecode of a block, so if we are not
@@ -1149,7 +1160,7 @@
         }
 
         FixedNode target = createTarget(dispatchBlock, dispatchState);
-        finishedDispatch.setNext(target);
+        afterInstrumentation.setNext(target);
     }
 
     protected ValueNode genLoadIndexed(ValueNode array, ValueNode index, GuardingNode boundsCheck, JavaKind kind) {
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/NodePlugin.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/NodePlugin.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,9 @@
 
 package org.graalvm.compiler.nodes.graphbuilderconf;
 
+import org.graalvm.compiler.graph.Node.ValueNumberable;
+import org.graalvm.compiler.nodes.FixedWithNextNode;
+import org.graalvm.compiler.nodes.StructuredGraph;
 import org.graalvm.compiler.nodes.ValueNode;
 import org.graalvm.compiler.nodes.extended.GuardingNode;
 
@@ -210,6 +213,23 @@
     }
 
     /**
+     * Allows this plugin to add nodes after the exception object has been loaded in the dispatch
+     * sequence. Note that a {@link StructuredGraph} is provided to this call instead of a
+     * {@link GraphBuilderContext} so that the caller has a guarantee that its current control flow
+     * insertion point is not changed by this call. This means nodes must be added to the graph with
+     * the appropriate method (e.g., {@link StructuredGraph#unique} for {@link ValueNumberable}
+     * nodes) and fixed nodes must be manually {@linkplain FixedWithNextNode#setNext added} as
+     * successors of {@code afterExceptionLoaded}.
+     *
+     * @param graph the graph being parsed
+     * @param afterExceptionLoaded the last fixed node after loading the exception
+     * @return the last fixed node after instrumentation
+     */
+    default FixedWithNextNode instrumentExceptionDispatch(StructuredGraph graph, FixedWithNextNode afterExceptionLoaded) {
+        return afterExceptionLoaded;
+    }
+
+    /**
      * If the plugin {@link GraphBuilderContext#push pushes} a value with a different
      * {@link JavaKind} than specified by the bytecode, it must override this method and return
      * {@code true}. This disables assertion checking for value kinds.
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/IntegerExactExceptionTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/IntegerExactExceptionTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -98,6 +98,10 @@
         }
     }
 
+    public void testIntegerExactOverflowWithoutUse3() {
+        Math.addExact(Integer.MAX_VALUE, 1);
+    }
+
     @Test
     public void testIntegerExactWithoutUse1() throws InvalidInstalledCodeException {
         ResolvedJavaMethod method = getResolvedJavaMethod("testIntegerExactOverflowWithoutUse1");
@@ -126,6 +130,20 @@
         assertTrue(gotException);
     }
 
+    @Test
+    public void testIntegerExactWithoutUse3() throws InvalidInstalledCodeException {
+        ResolvedJavaMethod method = getResolvedJavaMethod("testIntegerExactOverflowWithoutUse3");
+        InstalledCode code = getCode(method);
+
+        boolean gotException = false;
+        try {
+            code.executeVarargs(this);
+        } catch (ArithmeticException e) {
+            gotException = true;
+        }
+        assertTrue(gotException);
+    }
+
     static long longCounter = 10;
 
     public void testLongExactOverflowSnippet(long input) {
--- a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/StandardGraphBuilderPlugins.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/StandardGraphBuilderPlugins.java	Tue Jan 29 09:38:31 2019 -0500
@@ -560,19 +560,14 @@
     }
 
     private static boolean createIntegerExactOperation(GraphBuilderContext b, JavaKind kind, ValueNode x, ValueNode y, IntegerExactOp op) {
-        if (x.isConstant() && y.isConstant()) {
-            b.addPush(kind, createIntegerExactArithmeticNode(x, y, null, op));
+        BytecodeExceptionKind exceptionKind = kind == JavaKind.Int ? BytecodeExceptionKind.INTEGER_EXACT_OVERFLOW : BytecodeExceptionKind.LONG_EXACT_OVERFLOW;
+        AbstractBeginNode exceptionEdge = b.genExplicitExceptionEdge(exceptionKind);
+        if (exceptionEdge != null) {
+            IntegerExactArithmeticSplitNode split = b.addPush(kind, createIntegerExactSplit(x, y, exceptionEdge, op));
+            split.setNext(b.add(new BeginNode()));
             return true;
-        } else {
-            BytecodeExceptionKind exceptionKind = kind == JavaKind.Int ? BytecodeExceptionKind.INTEGER_EXACT_OVERFLOW : BytecodeExceptionKind.LONG_EXACT_OVERFLOW;
-            AbstractBeginNode exceptionEdge = b.genExplicitExceptionEdge(exceptionKind);
-            if (exceptionEdge != null) {
-                IntegerExactArithmeticSplitNode split = b.addPush(kind, createIntegerExactSplit(x, y, exceptionEdge, op));
-                split.setNext(b.add(new BeginNode()));
-                return true;
-            }
-            return false;
         }
+        return false;
     }
 
     private static void registerMathPlugins(InvocationPlugins plugins, boolean allowDeoptimization) {
--- a/src/jdk.pack/share/native/common-unpack/zip.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.pack/share/native/common-unpack/zip.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -416,9 +416,11 @@
     ((uLong)h << 11) | ((uLong)m << 5) | ((uLong)s >> 1);
 }
 
-#ifdef _REENTRANT // solaris
-extern "C" struct tm *gmtime_r(const time_t *, struct tm *);
-#else
+/*
+ * For thread-safe reasons, non-Windows platforms need gmtime_r
+ * while Windows can directly use gmtime that is already thread-safe.
+ */
+#ifdef _MSC_VER
 #define gmtime_r(t, s) gmtime(t)
 #endif
 /*
--- a/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpChannelImpl.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpChannelImpl.java	Tue Jan 29 09:38:31 2019 -0500
@@ -478,7 +478,7 @@
                             }
                             if (!isBlocking()) {
                                 for (;;) {
-                                    n = checkConnect(fd, false, readyToConnect);
+                                    n = Net.pollConnect(fd, 0);
                                     if (  (n == IOStatus.INTERRUPTED)
                                           && isOpen())
                                         continue;
@@ -486,7 +486,7 @@
                                 }
                             } else {
                                 for (;;) {
-                                    n = checkConnect(fd, true, readyToConnect);
+                                    n = Net.pollConnect(fd, -1);
                                     if (n == 0) {
                                         // Loop in case of
                                         // spurious notifications
@@ -1104,9 +1104,6 @@
             InetAddress addr, int port, int assocId, int streamNumber,
             boolean unordered, int ppid) throws IOException;
 
-    private static native int checkConnect(FileDescriptor fd, boolean block,
-            boolean ready) throws IOException;
-
     static {
         IOUtil.load();   /* loads nio & net native libraries */
         java.security.AccessController.doPrivileged(
--- a/src/jdk.sctp/unix/native/libsctp/SctpChannelImpl.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.sctp/unix/native/libsctp/SctpChannelImpl.c	Tue Jan 29 09:38:31 2019 -0500
@@ -72,10 +72,6 @@
 
 jint handleSocketError(JNIEnv *env, jint errorValue);
 
-/* use SocketChannelImpl's checkConnect implementation */
-extern jint Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv* env,
-    jobject this, jobject fdo, jboolean block, jboolean ready);
-
 /*
  * Class:     sun_nio_ch_sctp_SctpChannelImpl
  * Method:    initIDs
@@ -598,13 +594,3 @@
     return rv;
 }
 
-/*
- * Class:     sun_nio_ch_sctp_SctpChannelImpl
- * Method:    checkConnect
- * Signature: (Ljava/io/FileDescriptor;ZZ)I
- */
-JNIEXPORT jint JNICALL Java_sun_nio_ch_sctp_SctpChannelImpl_checkConnect
-  (JNIEnv* env, jobject this, jobject fdo, jboolean block, jboolean ready) {
-    return Java_sun_nio_ch_SocketChannelImpl_checkConnect(env, this,
-                                                          fdo, block, ready);
-}
--- a/src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystemProvider.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystemProvider.java	Tue Jan 29 09:38:31 2019 -0500
@@ -39,6 +39,9 @@
 import java.nio.file.attribute.FileAttribute;
 import java.nio.file.attribute.FileAttributeView;
 import java.nio.file.spi.FileSystemProvider;
+import java.security.AccessController;
+import java.security.PrivilegedActionException;
+import java.security.PrivilegedExceptionAction;
 import java.util.HashMap;
 import java.util.Map;
 import java.util.Set;
@@ -317,7 +320,13 @@
     //////////////////////////////////////////////////////////////
     void removeFileSystem(Path zfpath, ZipFileSystem zfs) throws IOException {
         synchronized (filesystems) {
-            zfpath = zfpath.toRealPath();
+            Path tempPath = zfpath;
+            PrivilegedExceptionAction<Path> action = tempPath::toRealPath;
+            try {
+                zfpath = AccessController.doPrivileged(action);
+            } catch (PrivilegedActionException e) {
+                throw (IOException) e.getException();
+            }
             if (filesystems.get(zfpath) == zfs)
                 filesystems.remove(zfpath);
         }
--- a/test/Makefile	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,124 +0,0 @@
-#
-# Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# Makefile to run tests from multiple sibling directories
-#
-
-$(info WARNING: This way of running tests ("cd test && make") is deprecated)
-$(info Please use "make test TEST=..." instead. See doc/testing.md for details)
-
-# Macro to run a test target in a subdir
-define SUBDIR_TEST # subdirectory target
-if [ -d $1 ] ; then \
-  if [ -r $1/Makefile ] ; then \
-    $(MAKE) --no-print-directory -k -C $1 $2 ; \
-    echo 'WARNING: This way of running tests ("cd test && make") is deprecated' ; \
-    echo 'Please use "make test TEST=..." instead. See doc/testing.md for details' ; \
-  else \
-    echo "ERROR: File does not exist: $1/Makefile"; \
-    exit 1; \
-  fi; \
-else \
-  echo "WARNING: No testing done, directory does not exist: $1"; \
-fi
-endef
-
-# Default test target (core)
-default: jdk_core langtools_jtreg jaxp_all
-
-# All testing
-all: jdk_all langtools_all jaxp_all
-
-ifeq ($(TEST_JOBS), 0)
-  JDK_TEST_JOBS=$(JOBS)
-else
-  JDK_TEST_JOBS=$(TEST_JOBS)
-endif
-# Test targets
-langtools_% :
-	@$(NO_STOPPING)$(call SUBDIR_TEST, langtools, \
-	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) \
-	    JT_JAVA=$(PRODUCT_HOME) JTREG_HOME=$(JT_HOME) \
-	    TEST="$(subst langtools_,,$@)" $(subst langtools_,,$@))
-
-jdk_% core_%s svc_%:
-	@$(NO_STOPPING)$(call SUBDIR_TEST, jdk, \
-	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
-
-jaxp_%:
-	@$(NO_STOPPING)$(call SUBDIR_TEST, jaxp, \
-	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
-
-nashorn_%:
-	@$(NO_STOPPING)$(call SUBDIR_TEST, nashorn, \
-	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
-
-SUB_MAKE_ARGS :=
-ifneq ($(TEST_JOBS), 0)
-  ifneq ($(TEST_JOBS), )
-    SUB_MAKE_ARGS += CONCURRENCY=$(TEST_JOBS)
-  endif
-endif
-hotspot_%:
-	@$(NO_STOPPING)$(call SUBDIR_TEST, hotspot/jtreg, $(SUB_MAKE_ARGS) TEST="$@" $@)
-
-#
-# jtreg_tests
-#
-# Invocation:
-#
-# make jtreg_tests TESTDIRS=<test-dirs> TEST_SELECTION=<path to test or jtreg group> TEST_OUTPUT_DIR=<path>
-#
-# where <test-dirs> is something like '../<component>/test/runtime',
-# <component> in turn being one of the top level directories (for
-# example 'hotspot').
-#
-# The below will strip the path prefix and delegate to the
-# corresponding ../<component>/test/Makefile.
-
-ifneq ($(TESTDIRS),)
-  # Extract the component from ../test/<component>/...
-  TESTDIRS_NORM := $(patsubst test/%, %, $(patsubst ../%, %, $(TESTDIRS)))
-  COMPONENT := $(word 1,$(subst /, ,$(TESTDIRS_NORM)))
-
-  # Strip off the ../<component>/test prefix and pass the rest as TESTDIRS
-  # to the delegate Makefile
-  # The hotspot tests are in a subdir "java". Accept paths both including
-  # and excluding this extra subdir
-  TESTDIRS_TESTS := $(patsubst $(COMPONENT)/%,%,$(patsubst hotspot/jtreg/%,%, \
-      $(patsubst ../%, %, $(TESTDIRS_NORM))))
-endif
-
-jtreg_tests:
-	$(MAKE) --no-print-directory TESTDIRS=$(TESTDIRS_TESTS) \
-	    $(COMPONENT)_jtreg_tests
-
-################################################################
-
-# Phony targets (e.g. these are not filenames)
-.PHONY: all clean
-
-################################################################
--- a/test/TestCommon.gmk	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,472 +0,0 @@
-#
-# Copyright (c) 1995, 2018, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# Common logic to run various tests for a component, to be included by the
-# component specific test makefiles.
-#
-
-# Default values for some properties that can be overridden by components.
-USE_JTREG_VERSION ?= 4.2
-JTREG_VM_TYPE ?= -agentvm
-USE_JTREG_ASSERT ?= true
-LIMIT_JTREG_VM_MEMORY ?= true
-
-X:=
-SPACE:=$(X) $(X)
-
-.DEFAULT : all
-
-# Empty these to get rid of some default rules
-.SUFFIXES:
-.SUFFIXES: .java
-CO=
-GET=
-
-# Utilities used
-AWK       = awk
-CAT       = cat
-CD        = cd
-CHMOD     = chmod
-CP        = cp
-CUT       = cut
-DIRNAME   = dirname
-ECHO      = echo
-EGREP     = egrep
-EXPAND    = expand
-FIND      = find
-MKDIR     = mkdir
-PWD       = pwd
-RM        = rm -f
-SED       = sed
-SORT      = sort
-TEE       = tee
-UNAME     = uname
-UNIQ      = uniq
-WC        = wc
-ZIPEXE    = zip
-
-# Get OS name from uname (Cygwin inexplicably adds _NT-5.1)
-UNAME_S := $(shell $(UNAME) -s | $(CUT) -f1 -d_)
-
-# Commands to run on paths to make mixed paths for java on windows
-ifeq ($(findstring CYGWIN,$(UNAME_S)), CYGWIN)
-  # Location of developer shared files
-  SLASH_JAVA = J:
-  GETMIXEDPATH = cygpath -m
-  PLATFORM = windows
-else
-  # Location of developer shared files
-  SLASH_JAVA = /java
-  GETMIXEDPATH = $(ECHO)
-  PLATFORM = unix # we only care about windows or bsd.
-  ifeq ($(UNAME_S), Darwin)
-    PLATFORM = bsd
-  endif
-  ifeq ($(findstring BSD,$(UNAME_S)), BSD)
-    PLATFORM = bsd
-  endif
-endif
-
-# convert list of directories to dos paths
-define MixedDirs
-$(foreach i,$1,$(shell $(GETMIXEDPATH) "${i}"))
-endef
-
-ifdef ALT_SLASH_JAVA
-  SLASH_JAVA = $(ALT_SLASH_JAVA)
-endif
-
-# Root of this test area (important to use full paths in some places)
-TEST_ROOT := $(shell $(PWD))
-
-# Root of all test results
-ifdef TEST_OUTPUT_DIR
-  $(shell $(MKDIR) -p $(TEST_OUTPUT_DIR)/jtreg)
-  ABS_TEST_OUTPUT_DIR := \
-    $(shell $(CD) $(TEST_OUTPUT_DIR)/jtreg && $(PWD))
-else
-  ifdef ALT_OUTPUTDIR
-    ABS_OUTPUTDIR = $(shell $(CD) $(ALT_OUTPUTDIR) && $(PWD))
-  else
-    ABS_OUTPUTDIR = $(shell $(CD) $(TEST_ROOT)/.. && $(PWD))
-  endif
-
-  ABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR)
-  ABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR)
-endif
-
-# If unset, set up the PRODUCT_HOME variable to the jdk to test
-ifndef PRODUCT_HOME
-  # Try to use images/jdk if it exists
-  ABS_JDK_IMAGE = $(ABS_PLATFORM_BUILD_ROOT)/images/jdk
-  PRODUCT_HOME :=                               \
-    $(shell                                     \
-      if [ -d $(ABS_JDK_IMAGE) ] ; then         \
-         $(ECHO) "$(ABS_JDK_IMAGE)";            \
-       else                                     \
-         $(ECHO) "$(ABS_PLATFORM_BUILD_ROOT)";  \
-       fi)
-  PRODUCT_HOME := $(PRODUCT_HOME)
-endif
-
-# On Windows, setup the _NT_SYMBOL_PATH if possible.
-ifeq ($(PLATFORM), windows)
-  ifndef _NT_SYMBOL_PATH
-    ifdef PRODUCT_SYMBOLS_HOME
-      _NT_SYMBOL_PATH := \
-          $(subst $(SPACE),;,$(strip $(call MixedDirs, $(sort $(dir $(wildcard \
-          $(addprefix $(PRODUCT_SYMBOLS_HOME)/bin/, *.pdb */*.pdb)))))))
-      export _NT_SYMBOL_PATH
-    endif
-  endif
-  JTREG_BASIC_OPTIONS += -e:_NT_SYMBOL_PATH='$(_NT_SYMBOL_PATH)'
-endif
-
-ifneq ($(NATIVE_TEST_PATH), )
-  # jtreg -nativepath <dir>
-  #
-  # Local make tests will be TEST_IMAGE_DIR
-  ifdef TEST_IMAGE_DIR
-    TESTNATIVE_DIR = $(TEST_IMAGE_DIR)
-  endif
-  ifdef TESTNATIVE_DIR
-    JTREG_NATIVE_PATH = -nativepath:$(shell $(GETMIXEDPATH) "$(TESTNATIVE_DIR)/$(NATIVE_TEST_PATH)")
-  endif
-endif
-
-ifeq ($(USE_FAILURE_HANDLER), true)
-  # jtreg failure handler config
-  ifeq ($(FAILURE_HANDLER_DIR), )
-    ifneq ($(TESTNATIVE_DIR), )
-      FAILURE_HANDLER_DIR := $(TESTNATIVE_DIR)/failure_handler
-    endif
-  endif
-  ifneq ($(FAILURE_HANDLER_DIR), )
-    FAILURE_HANDLER_DIR_MIXED := $(shell $(GETMIXEDPATH) "$(FAILURE_HANDLER_DIR)")
-    JTREG_FAILURE_HANDLER_OPTIONS := \
-        -timeoutHandlerDir:$(FAILURE_HANDLER_DIR_MIXED)/jtregFailureHandler.jar \
-        -observerDir:$(FAILURE_HANDLER_DIR_MIXED)/jtregFailureHandler.jar \
-        -timeoutHandler:jdk.test.failurehandler.jtreg.GatherProcessInfoTimeoutHandler \
-        -observer:jdk.test.failurehandler.jtreg.GatherDiagnosticInfoObserver \
-        -timeoutHandlerTimeout:0
-  ifeq ($(PLATFORM), windows)
-      JTREG_FAILURE_HANDLER_OPTIONS += -J-Djava.library.path="$(FAILURE_HANDLER_DIR_MIXED)"
-    endif
-  endif
-endif
-
-# How to create the test bundle (pass or fail, we want to create this)
-#   Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
-ifneq ($(ARCHIVE_BUNDLE), )
-  ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`     \
-	           && $(CD) $(ABS_TEST_OUTPUT_DIR)             \
-	           && $(CHMOD) -R a+r . \
-	           && $(ZIPEXE) -q -r $(ARCHIVE_BUNDLE) . ) ;
-  CLEAN_ARCHIVE_BUNDLE = @$(RM) $(ARCHIVE_BUNDLE)
-endif
-
-# AddressSanitizer
-ifeq ($(ASAN_ENABLED), yes)
-  export ASAN_OPTIONS="handle_segv=0 detect_leaks=0"
-  JTREG_BASIC_OPTIONS += -e:ASAN_OPTIONS=$(ASAN_OPTIONS)
-  ifneq ($(DEVKIT_LIB_DIR),)
-    export LD_LIBRARY_PATH:=$(LD_LIBRARY_PATH):$(DEVKIT_LIB_DIR)
-    JTREG_BASIC_OPTIONS += -e:LD_LIBRARY_PATH=$(LD_LIBRARY_PATH)
-  endif
-endif
-
-# important results files
-SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport/text/summary.txt")
-STATS_TXT_NAME = Stats.txt
-STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/$(STATS_TXT_NAME)")
-RUNLIST   = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/runlist.txt")
-PASSLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/passlist.txt")
-FAILLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/faillist.txt")
-EXITCODE  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/exitcode.txt")
-
-TESTEXIT = \
-  if [ ! -s $(EXITCODE) ] ; then \
-    $(ECHO) "ERROR: EXITCODE file not filled in."; \
-    $(ECHO) "1" > $(EXITCODE); \
-  fi ; \
-  testExitCode=`$(CAT) $(EXITCODE)`; \
-  $(ECHO) "EXIT CODE: $${testExitCode}"; \
-  exit $${testExitCode}
-
-ifeq ($(TREAT_EXIT_CODE_1_AS_0), true)
-  ADJUST_EXIT_CODE := \
-  if [ $${jtregExitCode} = 1 ] ; then \
-    jtregExitCode=0; \
-  fi
-else
-  # colon is the shell no-op
-  ADJUST_EXIT_CODE := :
-endif
-
-BUNDLE_UP_AND_EXIT = \
-( \
-  jtregExitCode=$$? && \
-  _summary="$(SUMMARY_TXT)"; \
-  $(ADJUST_EXIT_CODE) ; \
-  $(RM) -f $(STATS_TXT) $(RUNLIST) $(PASSLIST) $(FAILLIST) $(EXITCODE); \
-  $(ECHO) "$${jtregExitCode}" > $(EXITCODE); \
-  if [ -r "$${_summary}" ] ; then \
-    $(ECHO) "Summary: $(UNIQUE_DIR)" > $(STATS_TXT); \
-    $(EXPAND) $${_summary} | $(EGREP) -v ' Not run\.' > $(RUNLIST); \
-    $(EGREP) ' Passed\.' $(RUNLIST) \
-      | $(EGREP) -v ' Error\.' \
-      | $(EGREP) -v ' Failed\.' > $(PASSLIST); \
-    ( $(EGREP) ' Failed\.' $(RUNLIST); \
-      $(EGREP) ' Error\.' $(RUNLIST); \
-      $(EGREP) -v ' Passed\.' $(RUNLIST) ) \
-      | $(SORT) | $(UNIQ) > $(FAILLIST); \
-    if [ $${jtregExitCode} != 0 -o -s $(FAILLIST) ] ; then \
-      $(EXPAND) $(FAILLIST) \
-        | $(CUT) -d' ' -f1 \
-        | $(SED) -e 's@^@FAILED: @' >> $(STATS_TXT); \
-      if [ $${jtregExitCode} = 0 ] ; then \
-        jtregExitCode=1; \
-      fi; \
-    fi; \
-    runc="`$(CAT) $(RUNLIST)      | $(WC) -l | $(AWK) '{print $$1;}'`"; \
-    passc="`$(CAT) $(PASSLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
-    failc="`$(CAT) $(FAILLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
-    exclc="FIXME CODETOOLS-7900176"; \
-    $(ECHO) "TEST STATS: name=$(UNIQUE_DIR)  run=$${runc}  pass=$${passc}  fail=$${failc}" \
-      >> $(STATS_TXT); \
-  else \
-    $(ECHO) "Missing file: $${_summary}" >> $(STATS_TXT); \
-  fi; \
-  if [ -f $(STATS_TXT) ] ; then \
-    $(CAT) $(STATS_TXT); \
-  fi; \
-  $(ZIP_UP_RESULTS) \
-  $(TESTEXIT) \
-)
-
-################################################################
-
-# Prep for output
-# Change execute permissions on shared library files.
-# Files in repositories should never have execute permissions, but
-# there are some tests that have pre-built shared libraries, and these
-# windows dll files must have execute permission. Adding execute
-# permission may happen automatically on windows when using certain
-# versions of mercurial but it cannot be guaranteed. And blindly
-# adding execute permission might be seen as a mercurial 'change', so
-# we avoid adding execute permission to repository files. But testing
-# from a plain source tree needs the chmod a+rx. Applying the chmod to
-# all shared libraries not just dll files. And with CYGWIN and sshd
-# service, you may need CYGWIN=ntsec for this to work.
-prep:
-	@$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
-	@if [ ! -d $(TEST_ROOT)/../../.hg ] && [ ! -d $(TEST_ROOT)/../../../.hg ]; then  \
-	  $(FIND) $(TEST_ROOT) \( -name \*.dll -o -name \*.DLL -o -name \*.so \)  \
-	        -exec $(CHMOD) a+rx {} \; ;                                       \
-	fi
-
-ifeq ($(CLEAN_BEFORE_PREP), true)
-prep: clean
-
-endif
-
-# Cleanup
-clean:
-	@$(RM) -r $(ABS_TEST_OUTPUT_DIR)
-	$(CLEAN_ARCHIVE_BUNDLE)
-
-################################################################
-
-# jtreg tests
-
-# Expect JT_HOME to be set for jtreg tests. (home for jtreg)
-ifndef JT_HOME
-  JT_HOME = $(SLASH_JAVA)/re/jtreg/$(USE_JTREG_VERSION)/promoted/latest/binaries/jtreg
-endif
-
-# Problematic tests to be excluded
-EXTRA_PROBLEM_LISTS :=
-PROBLEM_LISTS := ProblemList.txt $(EXTRA_PROBLEM_LISTS)
-
-# Create exclude list for this platform and arch
-ifdef NO_EXCLUDES
-  JTREG_EXCLUSIONS =
-else
-  JTREG_EXCLUSIONS = $(addprefix -exclude:, $(wildcard $(PROBLEM_LISTS)))
-endif
-
-# ------------------------------------------------------------------
-
-# The TESTDIRS variable can be used to select the jtreg tests to run
-ifdef TESTDIRS
-  TEST_SELECTION = $(TESTDIRS)
-endif
-
-ifeq ($(UNAME_S), SunOS)
-  NUM_CORES := $(shell LC_MESSAGES=C /usr/sbin/psrinfo -v | grep -c on-line)
-endif
-ifeq ($(UNAME_S), Linux)
-  NUM_CORES := $(shell cat /proc/cpuinfo  | grep -c processor)
-endif
-ifeq ($(UNAME_S), Darwin)
-  NUM_CORES := $(shell /usr/sbin/sysctl -n hw.ncpu)
-endif
-ifeq ($(findstring CYGWIN,$(UNAME_S)), CYGWIN)
-  ifneq ($(NUMBER_OF_PROCESSORS), )
-    NUM_CORES := $(NUMBER_OF_PROCESSORS)
-  else
-    ifneq ($(HOTSPOT_BUILD_JOBS), )
-      NUM_CORES := $(HOTSPOT_BUILD_JOBS)
-    else
-      NUM_CORES := 1 # fallback
-    endif
-  endif
-endif
-
-ifndef CONCURRENCY_FACTOR
-  CONCURRENCY_FACTOR = 1
-endif
-
-# Concurrency based on min(cores / 2, 12) * CONCURRENCY_FACTOR
-CONCURRENCY := $(shell $(AWK) \
-  'BEGIN { \
-    c = $(NUM_CORES) / 2; \
-    if (c > 12) c = 12; \
-    c = c * $(CONCURRENCY_FACTOR); \
-    if (c < 1) c = 1; \
-    printf "%.0f", c; \
-  }')
-JTREG_BASIC_OPTIONS += -concurrency:$(CONCURRENCY)
-
-# Make sure MaxRAMPercentage is low enough to not cause OOM or swapping since
-# we may end up with a lot of JVM's
-MAX_RAM_PERCENTAGE := $(shell expr 25 / $(CONCURRENCY))
-JTREG_BASIC_OPTIONS += -vmoption:-XX:MaxRAMPercentage=$(MAX_RAM_PERCENTAGE)
-
-ifdef EXTRA_JTREG_OPTIONS
-  JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
-endif
-
-# Default JTREG to run
-JTREG = $(JT_HOME)/bin/jtreg
-# run in agentvm/othervm mode
-JTREG_BASIC_OPTIONS += $(JTREG_VM_TYPE)
-# Only run automatic tests
-JTREG_BASIC_OPTIONS += -a
-# Always turn on assertions
-ifeq ($(USE_JTREG_ASSERT), true)
-  JTREG_ASSERT_OPTION = -ea -esa
-endif
-JTREG_BASIC_OPTIONS += $(JTREG_ASSERT_OPTION)
-# jtreg verbosity setting
-# Default is to report details on all failed or error tests, times too
-JTREG_VERBOSE ?= fail,error,time
-JTREG_BASIC_OPTIONS += $(if $(JTREG_VERBOSE),-v:$(JTREG_VERBOSE))
-# Retain all files for failing tests
-JTREG_BASIC_OPTIONS += -retain:fail,error
-# Ignore tests are not run and completely silent about it
-JTREG_IGNORE_OPTION = -ignore:quiet
-JTREG_BASIC_OPTIONS += $(JTREG_IGNORE_OPTION)
-# Multiply by 4 the timeout factor
-JTREG_TIMEOUT_OPTION =  -timeoutFactor:4
-JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
-ifeq ($(LIMIT_JTREG_VM_MEMORY), true)
-  # Set the max memory for jtreg control vm
-  JTREG_MEMORY_OPTION = -J-Xmx512m
-  JTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
-  # Set the max memory for jtreg target test vms
-  JTREG_TESTVM_MEMORY_OPTION = -vmoption:-Xmx512m
-  JTREG_TEST_OPTIONS += $(JTREG_TESTVM_MEMORY_OPTION)
-endif
-# Make it possible to specify the JIB_DATA_DIR for tests using the
-# JIB Artifact resolver
-JTREG_BASIC_OPTIONS += -e:JIB_DATA_DIR
-# Give tests access to JT_JAVA, see JDK-8141609
-JTREG_BASIC_OPTIONS += -e:JDK8_HOME=${JT_JAVA}
-# Give aot tests access to Visual Studio installation
-ifneq ($(VS120COMNTOOLS), )
-  JTREG_BASIC_OPTIONS += -e:VS120COMNTOOLS="$(shell $(GETMIXEDPATH) "$(patsubst %\,%,$(VS120COMNTOOLS))")"
-endif
-
-JTREG_BASIC_OPTIONS += -e:TEST_IMAGE_GRAAL_DIR=${TEST_IMAGE_DIR}/hotspot/jtreg/graal
-
-# Set other vm and test options
-JTREG_TEST_OPTIONS += $(JAVA_ARGS:%=-javaoptions:%) $(JAVA_VM_ARGS:%=-vmoption:%)
-ifneq ($(JIB_HOME), )
-  JTREG_BASIC_OPTIONS += -e:JIB_HOME=$(shell $(GETMIXEDPATH) "$(JIB_HOME)")
-endif
-ifeq ($(IGNORE_MARKED_TESTS), true)
-  # Option to tell jtreg to not run tests marked with "ignore"
-  ifeq ($(PLATFORM), windows)
-    JTREG_KEY_OPTION = -k:!ignore
-  else
-    JTREG_KEY_OPTION = -k:\!ignore
-  endif
-  JTREG_BASIC_OPTIONS += $(JTREG_KEY_OPTION)
-endif
-
-# Make sure jtreg exists
-ifeq ($(USE_WINDOWS_EXISTENCE_CHECK), true)
-  jtreg_exists:
-	test -d $(shell $(GETMIXEDPATH) "$(JT_HOME)")
-	test -f $(shell $(GETMIXEDPATH) "$(JTREG)")
-
-else
-  jtreg_exists: $(JT_HOME)
-endif
-PHONY_LIST += jtreg_exists
-
-# Run jtreg
-jtreg_tests: prep jtreg_exists $(PRODUCT_HOME) $(TEST_PREREQS)
-	(                                                                    \
-	  ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)");                   \
-	    export JT_HOME;                                                  \
-	    $(shell $(GETMIXEDPATH) "$(JTREG)")                              \
-	      $(JTREG_BASIC_OPTIONS)                                         \
-	      -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport")  \
-	      -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTwork")    \
-	      -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)")                \
-	      $(JTREG_NATIVE_PATH)                                           \
-	      $(JTREG_FAILURE_HANDLER_OPTIONS)                               \
-	      $(JTREG_EXCLUSIONS)                                            \
-	      $(JTREG_TEST_OPTIONS)                                          \
-	      $(TEST_SELECTION)                                              \
-	  ) ;                                                                \
-	  $(BUNDLE_UP_AND_EXIT)                                              \
-	) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
-
-PHONY_LIST += jtreg_tests
-
-# Make it possible to call this with <component>_jtreg_tests
-%_jtreg_tests: jtreg_tests
-	# Must have a fake recipe here to prevent make from matching any other rule
-
-################################################################
-
-# Phony targets (e.g. these are not filenames)
-.PHONY: all clean prep $(PHONY_LIST)
-
-################################################################
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/gtest/gc/g1/test_g1FreeIdSet.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,165 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#include "precompiled.hpp"
+#include "gc/g1/g1FreeIdSet.hpp"
+#include "memory/allocation.hpp"
+#include "runtime/atomic.hpp"
+#include "runtime/interfaceSupport.inline.hpp"
+#include "runtime/orderAccess.hpp"
+#include "runtime/semaphore.inline.hpp"
+#include "runtime/thread.hpp"
+#include "utilities/debug.hpp"
+#include "utilities/globalDefinitions.hpp"
+#include "utilities/ostream.hpp"
+#include "threadHelper.inline.hpp"
+#include "unittest.hpp"
+
+struct G1FreeIdSet::TestSupport : AllStatic {
+  static uint next(const G1FreeIdSet& set, uint index) {
+    assert(index < set._size, "precondition");
+    return set._next[index];
+  }
+
+  static uint start(const G1FreeIdSet& set) { return set._start; }
+  static uint size(const G1FreeIdSet& set) { return set._size; }
+  static uintx mask(const G1FreeIdSet& set) { return set._head_index_mask; }
+  static uintx head(const G1FreeIdSet& set) { return Atomic::load(&set._head); }
+
+  static uint head_index(const G1FreeIdSet& set, uintx head) {
+    return set.head_index(head);
+  }
+};
+
+typedef G1FreeIdSet::TestSupport TestSupport;
+
+TEST_VM(G1FreeIdSetTest, initial_state) {
+  const uint start = 5;
+  const uint size = 4;
+  G1FreeIdSet set(start, size);
+
+  ASSERT_EQ(start, TestSupport::start(set));
+  ASSERT_EQ(size, TestSupport::size(set));
+  ASSERT_EQ(7u, TestSupport::mask(set));
+  ASSERT_EQ(0u, TestSupport::head(set));
+  for (uint i = 0; i < size; ++i) {
+    ASSERT_EQ(i + 1, TestSupport::next(set, i));
+  }
+}
+
+TEST_VM(G1FreeIdSetTest, non_blocking_ops) {
+  const uint start = 5;
+  const uint size = 3;
+  G1FreeIdSet set(start, size);
+
+  ASSERT_EQ(5u, set.claim_par_id());
+  ASSERT_EQ(1u, TestSupport::head_index(set, TestSupport::head(set)));
+  ASSERT_EQ(6u, set.claim_par_id());
+  ASSERT_EQ(2u, TestSupport::head_index(set, TestSupport::head(set)));
+  ASSERT_EQ(7u, set.claim_par_id());
+  ASSERT_EQ(3u, TestSupport::head_index(set, TestSupport::head(set)));
+
+  set.release_par_id(5u);
+  set.release_par_id(6u);
+  ASSERT_EQ(6u, set.claim_par_id());
+  ASSERT_EQ(5u, set.claim_par_id());
+}
+
+class TestG1FreeIdSetThread : public JavaTestThread {
+  G1FreeIdSet* _set;
+  volatile size_t* _total_allocations;
+  volatile bool* _continue_running;
+  size_t _allocations;
+  uint _thread_number;
+
+public:
+  TestG1FreeIdSetThread(uint thread_number,
+                        Semaphore* post,
+                        G1FreeIdSet* set,
+                        volatile size_t* total_allocations,
+                        volatile bool* continue_running) :
+    JavaTestThread(post),
+    _set(set),
+    _total_allocations(total_allocations),
+    _continue_running(continue_running),
+    _allocations(0),
+    _thread_number(thread_number)
+  {}
+
+  virtual void main_run() {
+    while (OrderAccess::load_acquire(_continue_running)) {
+      uint id = _set->claim_par_id();
+      _set->release_par_id(id);
+      ++_allocations;
+      ThreadBlockInVM tbiv(this); // Safepoint check.
+    }
+    tty->print_cr("%u allocations: " SIZE_FORMAT, _thread_number, _allocations);
+    Atomic::add(_allocations, _total_allocations);
+  }
+};
+
+TEST_VM(G1FreeIdSetTest, stress) {
+  const uint start = 5;
+  const uint size = 3;
+  const uint nthreads = size + 1;
+  const uint milliseconds_to_run = 1000;
+
+  Semaphore post;
+  volatile size_t total_allocations = 0;
+  volatile bool continue_running = true;
+
+  G1FreeIdSet set(start, size);
+
+  TestG1FreeIdSetThread* threads[nthreads] = {};
+  for (uint i = 0; i < nthreads; ++i) {
+    threads[i] = new TestG1FreeIdSetThread(i,
+                                           &post,
+                                           &set,
+                                           &total_allocations,
+                                           &continue_running);
+    threads[i]->doit();
+  }
+
+  JavaThread* this_thread = JavaThread::current();
+  tty->print_cr("Stressing G1FreeIdSet for %u ms", milliseconds_to_run);
+  {
+    ThreadInVMfromNative invm(this_thread);
+    os::sleep(this_thread, milliseconds_to_run, true);
+  }
+  OrderAccess::release_store(&continue_running, false);
+  for (uint i = 0; i < nthreads; ++i) {
+    ThreadInVMfromNative invm(this_thread);
+    post.wait_with_safepoint_check(this_thread);
+  }
+  tty->print_cr("total allocations: " SIZE_FORMAT, total_allocations);
+  tty->print_cr("final free list: ");
+  uint ids[size] = {};
+  for (uint i = 0; i < size; ++i) {
+    uint id = set.claim_par_id();
+    uint index = id - TestSupport::start(set);
+    ASSERT_LT(index, TestSupport::size(set));
+    tty->print_cr("  %u: %u", i, index);
+  }
+  ASSERT_EQ(size, TestSupport::head_index(set, TestSupport::head(set)));
+}
--- a/test/hotspot/gtest/memory/test_virtualSpaceNode.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/gtest/memory/test_virtualSpaceNode.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -28,6 +28,9 @@
 #include "utilities/formatBuffer.hpp"
 #include "unittest.hpp"
 
+// include as last, or otherwise we pull in an incompatible "assert" macro
+#include <vector>
+
 using namespace metaspace;
 
 namespace {
@@ -71,24 +74,55 @@
 
 // removes all the chunks added to the ChunkManager since creation of ChunkManagerRestorer
 class ChunkManagerRestorer {
-  ChunkManager* const _cm;
-  Metachunk* _chunks[NumberOfFreeLists];
- public:
-  ChunkManagerRestorer(ChunkManager* cm) : _cm(cm) {
-    for (ChunkIndex i = ZeroIndex; i < NumberOfFreeLists; i = next_chunk_index(i)) {
-      ChunkList* l = ChunkManagerTest::free_chunks(_cm, i);
-      _chunks[i] = l->tail();
+  metaspace::ChunkManager* const _cm;
+  std::vector<metaspace::Metachunk*>* _free_chunks[metaspace::NumberOfFreeLists];
+  int _count_pre_existing;
+public:
+  ChunkManagerRestorer(metaspace::ChunkManager* cm) : _cm(cm), _count_pre_existing(0) {
+    _cm->locked_verify();
+    for (metaspace::ChunkIndex i = metaspace::ZeroIndex; i < metaspace::NumberOfFreeLists; i = next_chunk_index(i)) {
+      metaspace::ChunkList* l = ChunkManagerTest::free_chunks(_cm, i);
+      _count_pre_existing += l->count();
+      std::vector<metaspace::Metachunk*> *v = new std::vector<metaspace::Metachunk*>(l->count());
+      metaspace::Metachunk* c = l->head();
+      while (c) {
+        v->push_back(c);
+        c = c->next();
+      }
+      _free_chunks[i] = v;
     }
   }
   ~ChunkManagerRestorer() {
+    _cm->locked_verify();
+    for (metaspace::ChunkIndex i = metaspace::ZeroIndex; i < metaspace::NumberOfFreeLists; i = next_chunk_index(i)) {
+      metaspace::ChunkList* l = ChunkManagerTest::free_chunks(_cm, i);
+      std::vector<metaspace::Metachunk*> *v = _free_chunks[i];
+      ssize_t count = l->count();
+      for (ssize_t j = 0; j < count; j++) {
+        metaspace::Metachunk* c = l->head();
+        while (c) {
+          bool found = false;
+          for (size_t k = 0; k < v->size() && !found; k++) {
+            found = (c == v->at(k));
+          }
+          if (found) {
+            c = c->next();
+          } else {
+            _cm->remove_chunk(c);
+            break;
+          }
+        }
+      }
+      delete _free_chunks[i];
+      _free_chunks[i] = NULL;
+   }
+    int count_after_cleanup = 0;
     for (ChunkIndex i = ZeroIndex; i < NumberOfFreeLists; i = next_chunk_index(i)) {
       ChunkList* l = ChunkManagerTest::free_chunks(_cm, i);
-      Metachunk* t = l->tail();
-      while (t != _chunks[i]) {
-        _cm->remove_chunk(t);
-        t = l->tail();
-      }
+      count_after_cleanup += l->count();
     }
+    EXPECT_EQ(_count_pre_existing, count_after_cleanup);
+    _cm->locked_verify();
   }
 };
 
@@ -121,7 +155,6 @@
 
   // committed - used = words left to retire
   const size_t words_left = page_chunks - SmallChunk - SpecializedChunk;
-
   size_t num_medium_chunks, num_small_chunks, num_spec_chunks;
   chunk_up(words_left, num_medium_chunks, num_small_chunks, num_spec_chunks);
 
@@ -155,7 +188,6 @@
 
 TEST_VM(VirtualSpaceNodeTest, all_vsn_is_committed_half_is_used_by_chunks) {
   MutexLockerEx ml(MetaspaceExpand_lock, Mutex::_no_safepoint_check_flag);
-
   ChunkManager cm(false);
   VirtualSpaceNode vsn(false, vsn_test_size_bytes);
   ChunkManagerRestorer c(Metaspace::get_chunk_manager(false));
@@ -165,6 +197,7 @@
   vsn.get_chunk_vs(MediumChunk);
   vsn.get_chunk_vs(MediumChunk);
   vsn.retire(&cm);
+
   // DISABLED: checks started to fail after 8198423
   // EXPECT_EQ(2UL, ChunkManagerTest::sum_free_chunks_count(&cm)) << "should have been memory left for 2 chunks";
   // EXPECT_EQ(2UL * MediumChunk, ChunkManagerTest::sum_free_chunks(&cm)) << "sizes should add up";
@@ -172,13 +205,13 @@
 
 TEST_VM(VirtualSpaceNodeTest, no_committed_memory) {
   MutexLockerEx ml(MetaspaceExpand_lock, Mutex::_no_safepoint_check_flag);
-
   ChunkManager cm(false);
   VirtualSpaceNode vsn(false, vsn_test_size_bytes);
   ChunkManagerRestorer c(Metaspace::get_chunk_manager(false));
 
   vsn.initialize();
   vsn.retire(&cm);
+
   ASSERT_EQ(0UL, ChunkManagerTest::sum_free_chunks_count(&cm)) << "did not commit any memory in the VSN";
 }
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/gtest/utilities/test_count_leading_zeros.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,57 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#include "precompiled.hpp"
+#include "utilities/count_leading_zeros.hpp"
+#include "utilities/globalDefinitions.hpp"
+#include "unittest.hpp"
+
+TEST(count_leading_zeros, one_or_two_set_bits) {
+  unsigned i = 0;                  // Position of a set bit.
+  for (uint32_t ix = 1; ix != 0; ix <<= 1, ++i) {
+    unsigned j = 0;                // Position of a set bit.
+    for (uint32_t jx = 1; jx != 0; jx <<= 1, ++j) {
+      uint32_t value = ix | jx;
+      EXPECT_EQ(31u - MAX2(i, j), count_leading_zeros(value))
+        << "value = " << value;
+    }
+  }
+}
+
+TEST(count_leading_zeros, high_zeros_low_ones) {
+  unsigned i = 0;                  // Number of leading zeros
+  uint32_t value = ~(uint32_t)0;
+  for ( ; value != 0; value >>= 1, ++i) {
+    EXPECT_EQ(i, count_leading_zeros(value))
+      << "value = " << value;
+  }
+}
+
+TEST(count_leading_zeros, high_ones_low_zeros) {
+  uint32_t value = ~(uint32_t)0;
+  for ( ; value != 0; value <<= 1) {
+    EXPECT_EQ(0u, count_leading_zeros(value))
+      << "value = " << value;
+  }
+}
--- a/test/hotspot/gtest/utilities/test_count_trailing_zeros.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/gtest/utilities/test_count_trailing_zeros.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -39,16 +39,15 @@
   }
 }
 
-TEST(count_trailing_zeros, all_ones_followed_by_all_zeros) {
-  unsigned i = BitsPerWord - 1; // Index of most significant set bit.
+TEST(count_trailing_zeros, high_zeros_low_ones) {
   uintx value = ~(uintx)0;
-  for ( ; value != 0; value >>= 1, --i) {
+  for ( ; value != 0; value >>= 1) {
     EXPECT_EQ(0u, count_trailing_zeros(value))
       << "value = " << value;
   }
 }
 
-TEST(count_trailing_zeros, all_zeros_followed_by_all_ones) {
+TEST(count_trailing_zeros, high_ones_low_zeros) {
   unsigned i = 0;               // Index of least significant set bit.
   uintx value = ~(uintx)0;
   for ( ; value != 0; value <<= 1, ++i) {
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/gtest/utilities/test_population_count.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,77 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#include "precompiled.hpp"
+#include "libadt/vectset.hpp"
+#include "runtime/os.hpp"
+#include "utilities/population_count.hpp"
+#include "utilities/globalDefinitions.hpp"
+#include "unittest.hpp"
+
+uint8_t test_popcnt_bitsInByte[BITS_IN_BYTE_ARRAY_SIZE] = {
+        0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4,
+        1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
+        1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
+        2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
+        1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
+        2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
+        2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
+        3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
+        1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
+        2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
+        2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
+        3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
+        2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
+        3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
+        3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
+        4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8
+};
+
+TEST(population_count, sparse) {
+  // Step through the entire input range from a random starting point,
+  // verify population_count return values against the lookup table
+  // approach used historically
+  uint32_t step = 4711;
+  for (uint32_t value = os::random() % step; value < UINT_MAX - step; value += step) {
+    uint32_t lookup = test_popcnt_bitsInByte[(value >> 24) & 0xff] +
+                      test_popcnt_bitsInByte[(value >> 16) & 0xff] +
+                      test_popcnt_bitsInByte[(value >> 8)  & 0xff] +
+                      test_popcnt_bitsInByte[ value        & 0xff];
+
+    EXPECT_EQ(lookup, population_count(value))
+        << "value = " << value;
+  }
+
+  // Test a few edge cases
+  EXPECT_EQ(0u, population_count(0u))
+      << "value = " << 0;
+  EXPECT_EQ(1u, population_count(1u))
+      << "value = " << 1;
+  EXPECT_EQ(1u, population_count(2u))
+      << "value = " << 2;
+  EXPECT_EQ(32u, population_count(UINT_MAX))
+      << "value = " << UINT_MAX;
+  EXPECT_EQ(31u, population_count(UINT_MAX - 1))
+      << "value = " << (UINT_MAX - 1);
+}
--- a/test/hotspot/jtreg/Makefile	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,84 +0,0 @@
-#
-# Copyright (c) 1995, 2018, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-#
-
-NATIVE_TEST_PATH := hotspot/jtreg/native
-
-CLEAN_BEFORE_PREP := true
-
-USE_JTREG_VERSION := 4.1
-
-USE_JTREG_ASSERT := false
-
-LIMIT_JTREG_VM_MEMORY := false
-
-IGNORE_MARKED_TESTS := true
-
-# Include the common base file with most of the logic
-include ../../TestCommon.gmk
-
-################################################################
-# Default make rule (runs jtreg_tests)
-all: hotspot_all
-	@$(ECHO) "Testing completed successfully"
-
-# Support "hotspot_" prefixed test make targets (too)
-# The hotspot_% targets are used by the top level Makefile
-# Unless explicitly defined below, hotspot_<x> is interpreted as a jtreg test group name
-hotspot_%:
-	$(ECHO) "Running tests: $@"
-	$(MAKE) -j 1 TEST_SELECTION=":$@" UNIQUE_DIR=$@ jtreg_tests;
-
-################################################################
-
-# Set up the directory in which the jvm directories live (client/, server/, etc.)
-ifeq ($(PLATFORM),windows)
-JVMS_DIR := $(PRODUCT_HOME)/bin
-else
-JVMS_DIR := $(PRODUCT_HOME)/lib
-endif
-
-# Use the existance of a directory as a sign that jvm variant is available
-CANDIDATE_JVM_VARIANTS := client minimal server
-JVM_VARIANTS := $(strip $(foreach x,$(CANDIDATE_JVM_VARIANTS),$(if $(wildcard $(JVMS_DIR)/$(x)),$(x))))
-
-################################################################
-
-# Run the native gtest tests from the test image
-
-define NEWLINE
-
-
-endef
-
-
-hotspot_gtest:
-	$(foreach v, $(JVM_VARIANTS), \
-	  $(MAKE) hotspot_gtest$v $(NEWLINE) )
-
-hotspot_gtestserver hotspot_gtestclient hotspot_gtestminimal: hotspot_gtest%:
-	$(TESTNATIVE_DIR)/hotspot/gtest/$*/gtestLauncher \
-	    -jdk $(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)")
-
-PHONY_LIST += hotspot_gtest hotspot_gtestserver hotspot_gtestclient \
-    hotspot_gtestminimal
--- a/test/hotspot/jtreg/ProblemList-Xcomp.txt	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/ProblemList-Xcomp.txt	Tue Jan 29 09:38:31 2019 -0500
@@ -28,4 +28,3 @@
 #############################################################################
 
 vmTestbase/vm/mlvm/meth/stress/jni/nativeAndMH/Test.java 8208235 solaris-all
-runtime/appcds/cacheObject/DifferentHeapSizes.java 8210102 solaris-all
--- a/test/hotspot/jtreg/ProblemList-graal.txt	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/ProblemList-graal.txt	Tue Jan 29 09:38:31 2019 -0500
@@ -39,8 +39,6 @@
 
 compiler/graalunit/JttThreadsTest.java                          8208066   generic-all
 
-compiler/intrinsics/mathexact/LongMulOverflowTest.java          8196568   generic-all
-
 compiler/jvmci/SecurityRestrictionsTest.java                    8181837   generic-all
 
 compiler/unsafe/UnsafeGetConstantField.java                     8181833   generic-all
@@ -64,7 +62,7 @@
 
 compiler/compilercontrol/directives/LogTest.java                8181753   generic-all
 
-gc/parallel/TestPrintGCDetailsVerbose.java                      8200186   macosx-all
+gc/parallel/TestPrintGCDetailsVerbose.java                      8196611   macosx-all
 
 compiler/jvmci/compilerToVM/ReprofileTest.java                  8201333   generic-all
 
@@ -107,18 +105,10 @@
 
 vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn007/TestDescription.java       8195600   generic-all
 
-vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses026/TestDescription.java   8195627   generic-all
-vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses028/TestDescription.java   8195627   generic-all
-vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses030/TestDescription.java   8195627   generic-all
-vmTestbase/nsk/jdb/wherei/wherei001/wherei001.java                                          8195627   generic-all
-
 vmTestbase/vm/mlvm/anonloader/stress/oome/heap/Test.java         8186299   generic-all
 vmTestbase/vm/mlvm/anonloader/stress/oome/metaspace/Test.java    8186299   generic-all
 
 # jvmti tests
-vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/TestDescription.java         8193577   generic-all
-vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-tagged/TestDescription.java   8193577   generic-all
-
 vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/TestDescription.java       8195635   generic-all
 
 vmTestbase/nsk/jvmti/PopFrame/popframe009/TestDescription.java                     8195639   generic-all
@@ -135,8 +125,6 @@
 vmTestbase/nsk/jvmti/PopFrame/popframe005/TestDescription.java                     8207013   generic-all
 vmTestbase/nsk/jvmti/StopThread/stopthrd007/TestDescription.java                   8207013   generic-all
 
-vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t003/TestDescription.java         8051349   generic-all
-
 serviceability/jvmti/FieldAccessWatch/FieldAccessWatch.java                        8202482   generic-all
 
 compiler/stable/TestStableBoolean.java                           8204347   generic-all
@@ -157,13 +145,10 @@
 org.graalvm.compiler.core.test.OptionsVerifierTest                               8205081
 org.graalvm.compiler.hotspot.test.CompilationWrapperTest                         8205081
 org.graalvm.compiler.replacements.test.classfile.ClassfileBytecodeProviderTest   8205081
+org.graalvm.compiler.debug.test.DebugContextTest                                 8205081
 
 org.graalvm.compiler.core.test.deopt.CompiledMethodTest          8202955
-org.graalvm.compiler.debug.test.DebugContextTest                 8203504
 
-org.graalvm.compiler.hotspot.test.GraalOSRTest                   8206947
 org.graalvm.compiler.hotspot.test.ReservedStackAccessTest        8213567   windows-all
 
-org.graalvm.compiler.replacements.test.StringCompressInflateTest 8213556
-
-org.graalvm.compiler.debug.test.TimerKeyTest                     8213598
+org.graalvm.compiler.replacements.test.StringCompressInflateTest 8214947
--- a/test/hotspot/jtreg/ProblemList.txt	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/ProblemList.txt	Tue Jan 29 09:38:31 2019 -0500
@@ -53,14 +53,14 @@
 
 compiler/c2/Test6852078.java 8194310 generic-all
 
-applications/ctw/modules/java_desktop.java 8189604 windows-all
-applications/ctw/modules/java_desktop_2.java 8189604 windows-all
-applications/ctw/modules/jdk_jconsole.java 8189604 windows-all
-
 compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java 8190680 generic-all
 
 compiler/runtime/Test8168712.java 8211769,8211771 generic-ppc64,generic-ppc64le,linux-s390x
 
+applications/ctw/modules/java_desktop.java 8217851 windows-all
+applications/ctw/modules/java_desktop_2.java 8217851 windows-all
+applications/ctw/modules/jdk_jconsole.java 8217851 windows-all
+
 #############################################################################
 
 # :hotspot_gc
@@ -74,18 +74,13 @@
 gc/stress/gclocker/TestGCLockerWithG1.java 8180622 generic-all
 gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java 8177765 generic-all
 gc/stress/TestJNIBlockFullGC/TestJNIBlockFullGC.java 8192647 generic-all
-gc/logging/TestUnifiedLoggingSwitchStress.java 8208778 macosx-x64
 gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java 8193639 solaris-all
 
 #############################################################################
 
 # :hotspot_runtime
 
-runtime/appcds/javaldr/GCSharedStringsDuringDump.java 8208778 macosx-x64
-runtime/appcds/javaldr/GCDuringDump.java 8208778 macosx-x64
-runtime/CompressedOops/UseCompressedOops.java 8079353 generic-all
 runtime/handshake/HandshakeWalkSuspendExitTest.java 8214174 generic-all
-runtime/RedefineTests/RedefineRunningMethods.java 8208778 macosx-x64
 runtime/SharedArchiveFile/SASymbolTableTest.java 8193639 solaris-all
 
 #############################################################################
@@ -161,35 +156,24 @@
 vmTestbase/nsk/monitoring/MemoryPoolMBean/isUsageThresholdExceeded/isexceeded005/TestDescription.java 8153598 generic-all
 vmTestbase/nsk/monitoring/ThreadMXBean/ThreadInfo/Deadlock/JavaDeadlock001/TestDescription.java 8060733 generic-all
 
-vmTestbase/nsk/jdi/AttachingConnector/attachnosuspend/attachnosuspend001/TestDescription.java 8153613 generic-all
-vmTestbase/nsk/jdi/ThreadReference/frameCount/framecount001/TestDescription.java 6530620 generic-all
 vmTestbase/nsk/jdi/ThreadReference/isSuspended/issuspended002/TestDescription.java 4903717 generic-all
 vmTestbase/nsk/jdi/ThreadReference/resume/resume001/TestDescription.java 8072701 generic-all
 vmTestbase/nsk/jdi/ThreadReference/stop/stop001/TestDescription.java 7034630 generic-all
 vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x001/TestDescription.java 8013728 generic-all
-vmTestbase/nsk/jdi/BScenarios/multithrd/tc02x004/TestDescription.java 4751860 generic-all
 vmTestbase/nsk/jdi/EventRequest/setEnabled/setenabled003/TestDescription.java 8066993 generic-all
-vmTestbase/nsk/jdi/StackFrame/_bounds_/bounds001/TestDescription.java 6604963 generic-all
 vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses021/TestDescription.java 8065773 generic-all
 vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses023/TestDescription.java 8065773 generic-all
 vmTestbase/nsk/jdi/EventQueue/remove_l/remove_l005/TestDescription.java 8068225 generic-all
-vmTestbase/nsk/jdi/stress/ClassPrepareEvents/ClassPrepareEvents001/ClassPrepareEvents001.java 6426321 generic-all
 
 vmTestbase/metaspace/gc/firstGC_10m/TestDescription.java 8208250 generic-all
 vmTestbase/metaspace/gc/firstGC_50m/TestDescription.java 8208250 generic-all
 vmTestbase/metaspace/gc/firstGC_99m/TestDescription.java 8208250 generic-all
 vmTestbase/metaspace/gc/firstGC_default/TestDescription.java 8208250 generic-all
 
-vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk001/TestDescription.java 8016181 generic-all
-vmTestbase/nsk/jvmti/FieldModification/fieldmod001/TestDescription.java 8016181 generic-all
-vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted001/TestDescription.java 7013634 generic-all
 vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java 6606767 generic-all
 vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java 7013634,6606767 generic-all
-vmTestbase/nsk/jvmti/ThreadStart/threadstart001/TestDescription.java 8016181 generic-all
 vmTestbase/nsk/jvmti/scenarios/extension/EX03/ex03t001/TestDescription.java 8173658 generic-all
-vmTestbase/nsk/jvmti/AttachOnDemand/attach034/TestDescription.java 8042145 generic-all
 vmTestbase/nsk/jvmti/AttachOnDemand/attach045/TestDescription.java 8202971 generic-all
-vmTestbase/nsk/jvmti/unit/heap/HeapWalkTests/TestDescription.java 8016181 generic-all
 
 vmTestbase/gc/lock/jni/jnilock002/TestDescription.java 8208243,8192647 generic-all
 
@@ -197,18 +181,15 @@
 vmTestbase/jit/escape/LockCoarsening/LockCoarsening002/TestDescription.java 8208259 generic-all
 
 vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInBootstrap/TestDescription.java 8013267 generic-all
-vmTestbase/vm/mlvm/indy/stress/java/relinkMutableCallSite/Test.java 8079664 generic-all
-vmTestbase/vm/mlvm/indy/stress/java/relinkVolatileCallSite/Test.java 8079664 generic-all
 vmTestbase/vm/mlvm/meth/func/java/throwException/Test.java 8208255 generic-all
 vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/Test.java 8208257,8208255 generic-all
-vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/Test.java 8079642,8208255 generic-all
+vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/Test.java 8208255 generic-all
 vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java 8208255 generic-all
 vmTestbase/vm/mlvm/meth/stress/compiler/sequences/Test.java 8208255 generic-all
 vmTestbase/vm/mlvm/meth/stress/gc/callSequencesDuringGC/Test.java 8208255 generic-all
 vmTestbase/vm/mlvm/meth/stress/java/sequences/Test.java 8208255 generic-all
 vmTestbase/vm/mlvm/meth/stress/jdi/breakpointInCompiledCode/Test.java 8208255 generic-all
 vmTestbase/vm/mlvm/mixed/stress/java/findDeadlock/TestDescription.java 8208278 generic-all
-vmTestbase/vm/mlvm/mixed/stress/regression/b6969574/INDIFY_Test.java 8079650 generic-all
 vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_a/TestDescription.java 8013267 generic-all
 vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_b/TestDescription.java 8013267 generic-all
 vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_b/TestDescription.java 8013267 generic-all
--- a/test/hotspot/jtreg/TEST.ROOT	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/TEST.ROOT	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -59,6 +59,7 @@
     vm.rtm.cpu \
     vm.rtm.compiler \
     vm.aot \
+    vm.aot.enabled \
     vm.cds \
     vm.cds.custom.loaders \
     vm.cds.archived.java.heap \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/jtreg/compiler/c2/Test8217359.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,74 @@
+/*
+ * Copyright (c) 2019, Huawei Technologies Co. Ltd. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * @test
+ * @bug 8217359
+ * @summary C2 compiler triggers SIGSEGV after transformation in ConvI2LNode::Ideal
+ *
+ * @run main/othervm -XX:-TieredCompilation
+ *      -XX:CompileCommand=compileonly,compiler.c2.Test8217359::test
+ *      compiler.c2.Test8217359
+ */
+
+package compiler.c2;
+
+public class Test8217359 {
+
+    public static int ival = 0;
+    public static long lsum = 0;
+    public static long lval = 0;
+
+    public static void test() {
+        short s = -25632;
+        float f = 0.512F, f1 = 2.556F;
+        int i6 = 32547, i7 = 9, i8 = -9, i9 = 36, i10 = -223;
+
+        for (i6 = 4; i6 < 182; i6++) {
+            i8 = 1;
+            while (++i8 < 17) {
+                f1 = 1;
+                do {
+                    i7 += (182 + (f1 * f1));
+                } while (++f1 < 1);
+
+                Test8217359.ival += (i8 | Test8217359.ival);
+            }
+        }
+
+        for (i9 = 9; i9 < 100; ++i9) {
+            i10 -= i6;
+            i10 >>= s;
+            i7 += (((i9 * i10) + i6) - Test8217359.lval);
+        }
+
+        lsum += i6 + i7 + i8;
+    }
+
+    public static void main(String[] args) {
+        for (int i = 0; i < 16000; i++) {
+            test();
+        }
+    }
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/jtreg/compiler/c2/TestMatcherLargeOffset.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,60 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * @test
+ * @bug 8202952
+ * @summary C2: Unexpected dead nodes after matching
+ *
+ * @run main/othervm -XX:-TieredCompilation -Xcomp -XX:CompileOnly=::test
+ *      compiler.c2.TestMatcherLargeOffset
+ */
+package compiler.c2;
+
+public class TestMatcherLargeOffset {
+    public static final int N = 400;
+    public static int iArrFld[] = new int[N];
+
+    public static void m(int i4) {
+        i4 |= -104;
+        iArrFld[(i4 >>> 1) % N] >>= i4;
+    }
+
+    public static void test() {
+        int i2 = 1, i24 = 65;
+        for (int i1 = 7; i1 < 384; ++i1) {
+            for (long l = 2; l < 67; l++) {
+                m(i2);
+                for (i24 = 1; 2 > i24; ++i24) {
+                    iArrFld = iArrFld;
+                }
+            }
+            i2 = (-229 / i24);
+        }
+    }
+    public static void main(String[] strArr) {
+        for (int i = 0; i < 5; i++ ) {
+            test();
+        }
+    }
+}
--- a/test/hotspot/jtreg/compiler/ciReplay/CiReplayBase.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/compiler/ciReplay/CiReplayBase.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -71,6 +71,11 @@
         "-XX:+ReplayCompiles", REPLAY_FILE_OPTION};
     protected final Optional<Boolean> runServer;
 
+    public static class EmptyMain {
+        public static void main(String[] args) {
+        }
+    }
+
     static {
         try {
             CLIENT_VM_AVAILABLE = ProcessTools.executeTestJvm(CLIENT_VM_OPTION, VERSION_OPTION)
@@ -135,7 +140,7 @@
             options.addAll(Arrays.asList(REPLAY_GENERATION_OPTIONS));
             options.addAll(Arrays.asList(vmopts));
             options.add(needCoreDump ? ENABLE_COREDUMP_ON_CRASH : DISABLE_COREDUMP_ON_CRASH);
-            options.add(VERSION_OPTION);
+            options.add(EmptyMain.class.getName());
             if (needCoreDump) {
                 crashOut = ProcessTools.executeProcess(getTestJavaCommandlineWithPrefix(
                         RUN_SHELL_NO_LIMIT, options.toArray(new String[0])));
--- a/test/hotspot/jtreg/compiler/intrinsics/bigInteger/TestMulAdd.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/compiler/intrinsics/bigInteger/TestMulAdd.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -25,6 +25,8 @@
  * @test
  * @bug 8081778
  * @summary Add C2 x86 intrinsic for BigInteger::mulAdd() method
+ * @comment the test disables intrinsics, so it can't be run w/ AOT'ed java.base
+ * @requires !vm.aot.enabled
  *
  * @run main/othervm/timeout=600 -XX:-TieredCompilation -Xbatch
  *      -XX:+IgnoreUnrecognizedVMOptions -XX:+UnlockDiagnosticVMOptions -XX:-UseSquareToLenIntrinsic -XX:-UseMultiplyToLenIntrinsic
--- a/test/hotspot/jtreg/compiler/jsr292/NonInlinedCall/InvokeTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/compiler/jsr292/NonInlinedCall/InvokeTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -60,6 +60,8 @@
     static final MethodHandle privateMH; // invokespecial   I.f4 T
     static final MethodHandle basicMH;
 
+    static final MethodHandle intrinsicMH; // invokevirtual Object.hashCode
+
     static final WhiteBox WB = WhiteBox.getWhiteBox();
 
     static volatile boolean doDeopt = false;
@@ -75,6 +77,7 @@
             specialMH  = LOOKUP.findSpecial(T.class, "f4", mtype, T.class);
             privateMH  = LOOKUP.findSpecial(I.class, "f4", mtype, I.class);
             basicMH    = NonInlinedReinvoker.make(staticMH);
+            intrinsicMH = LOOKUP.findVirtual(Object.class, "hashCode", MethodType.methodType(int.class));
         } catch (Exception e) {
             throw new Error(e);
         }
@@ -117,6 +120,10 @@
     static class Q2 extends T implements J2 {}
     static class Q3 extends T implements J3 {}
 
+    static class H {
+        public int hashCode() { return 0; }
+    }
+
     @DontInline
     static void linkToVirtual(T recv, Class<?> expected) {
         try {
@@ -138,6 +145,16 @@
     }
 
     @DontInline
+    static void linkToVirtualIntrinsic(Object recv, int expected) {
+        try {
+            int v = (int)intrinsicMH.invokeExact(recv);
+            assertEquals(v, expected);
+        } catch (Throwable e) {
+            throw new Error(e);
+        }
+    }
+
+    @DontInline
     static void linkToInterface(I recv, Class<?> expected) {
         try {
             Class<?> cls = (Class<?>)intfMH.invokeExact(recv);
@@ -177,7 +194,6 @@
         }
     }
 
-
     @DontInline
     static void invokeBasic() {
         try {
@@ -215,6 +231,8 @@
         run(() -> linkToVirtual(new T(), T.class));
         run(() -> linkToVirtualDefault(new T(), I.class));
 
+        run(() -> linkToVirtualIntrinsic(new H(), 0));
+
         // Megamorphic case (optimized virtual call)
         run(() -> {
             linkToVirtual(new T() {}, T.class);
--- a/test/hotspot/jtreg/compiler/jvmci/compilerToVM/MaterializeVirtualObjectTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/compiler/jvmci/compilerToVM/MaterializeVirtualObjectTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,13 @@
 /*
  * @test
  * @bug 8136421
+ *
  * @requires vm.jvmci
- *         & (vm.compMode != "Xcomp" | vm.opt.TieredCompilation == null | vm.opt.TieredCompilation == true)
- * @summary no "-Xcomp -XX:-TieredCompilation" combination allowed until JDK-8140018 is resolved
+ * @requires vm.opt.final.EliminateAllocations == true
+ *
+ * @comment no "-Xcomp -XX:-TieredCompilation" combination allowed until JDK-8140018 is resolved
+ * @requires vm.compMode != "Xcomp" | vm.opt.TieredCompilation == null | vm.opt.TieredCompilation == true
+ *
  * @library / /test/lib
  * @library ../common/patches
  * @modules java.base/jdk.internal.misc
--- a/test/hotspot/jtreg/gc/CondCardMark/Basic.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/CondCardMark/Basic.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,20 +21,22 @@
  * questions.
  */
 
+package gc.CondCardMark;
+
 /**
  * @test
  * @bug 8076987
  * @bug 8078438
  * @summary Verify UseCondCardMark works
  * @modules java.base/jdk.internal.misc
- * @run main/othervm -Xint Basic
- * @run main/othervm -Xint -XX:+UseCondCardMark Basic
- * @run main/othervm -XX:TieredStopAtLevel=1 Basic
- * @run main/othervm -XX:TieredStopAtLevel=1 -XX:+UseCondCardMark Basic
- * @run main/othervm -XX:TieredStopAtLevel=4 Basic
- * @run main/othervm -XX:TieredStopAtLevel=4 -XX:+UseCondCardMark Basic
- * @run main/othervm -XX:-TieredCompilation Basic
- * @run main/othervm -XX:-TieredCompilation -XX:+UseCondCardMark Basic
+ * @run main/othervm -Xint gc.CondCardMark.Basic
+ * @run main/othervm -Xint -XX:+UseCondCardMark gc.CondCardMark.Basic
+ * @run main/othervm -XX:TieredStopAtLevel=1 gc.CondCardMark.Basic
+ * @run main/othervm -XX:TieredStopAtLevel=1 -XX:+UseCondCardMark gc.CondCardMark.Basic
+ * @run main/othervm -XX:TieredStopAtLevel=4 gc.CondCardMark.Basic
+ * @run main/othervm -XX:TieredStopAtLevel=4 -XX:+UseCondCardMark gc.CondCardMark.Basic
+ * @run main/othervm -XX:-TieredCompilation gc.CondCardMark.Basic
+ * @run main/othervm -XX:-TieredCompilation -XX:+UseCondCardMark gc.CondCardMark.Basic
 */
 public class Basic {
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/jtreg/gc/CriticalNative.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2019, Red Hat, Inc. and/or its affiliates. All rights reserved.
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+package gc;
+
+public class CriticalNative {
+    static {
+        System.loadLibrary("CriticalNative");
+    }
+
+    public static native boolean isNull(int[] a);
+    public static native long sum1(long[] a);
+    // More than 6 parameters
+    public static native long sum2(long a1, int[] a2, int[] a3, long[] a4, int[] a5);
+}
--- a/test/hotspot/jtreg/gc/CriticalNativeArgs.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/CriticalNativeArgs.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,45 +21,42 @@
  *
  */
 
+package gc;
 
 /*
  * @test CriticalNativeStressEpsilon
  * @key gc
  * @bug 8199868
+ * @library /
  * @requires (os.arch =="x86_64" | os.arch == "amd64") & vm.gc.Epsilon & !vm.graal.enabled
  * @summary test argument unpacking nmethod wrapper of critical native method
- * @run main/othervm/native -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xcomp -Xmx256M -XX:+CriticalJNINatives CriticalNativeArgs
+ * @run main/othervm/native -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xcomp -Xmx256M -XX:+CriticalJNINatives gc.CriticalNativeArgs
  */
 
 /*
  * @test CriticalNativeStressShenandoah
  * @key gc
  * @bug 8199868
+ * @library /
  * @requires (os.arch =="x86_64" | os.arch == "amd64") & vm.gc.Shenandoah & !vm.graal.enabled
  * @summary test argument unpacking nmethod wrapper of critical native method
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:+ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeArgs
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:-ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeArgs
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:+ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.CriticalNativeArgs
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:-ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.CriticalNativeArgs
  *
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeArgs
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.CriticalNativeArgs
  *
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC                                                                        -Xcomp -Xmx256M -XX:+CriticalJNINatives CriticalNativeArgs
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:+UnlockExperimentalVMOptions -XX:ShenandoahGCHeuristics=traversal  -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeArgs
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC                                                                        -Xcomp -Xmx256M -XX:+CriticalJNINatives gc.CriticalNativeArgs
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:+UnlockExperimentalVMOptions -XX:ShenandoahGCHeuristics=traversal  -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.CriticalNativeArgs
  */
 public class CriticalNativeArgs {
-    static {
-        System.loadLibrary("CriticalNative");
-    }
-
-    static native boolean isNull(int[] a);
-
     public static void main(String[] args) {
         int[] arr = new int[2];
 
-        if (isNull(arr)) {
+        if (CriticalNative.isNull(arr)) {
             throw new RuntimeException("Should not be null");
         }
 
-        if (!isNull(null)) {
+        if (!CriticalNative.isNull(null)) {
             throw new RuntimeException("Should be null");
         }
     }
--- a/test/hotspot/jtreg/gc/TestAgeOutput.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestAgeOutput.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestAgeOutput
  * @bug 8164936
@@ -31,8 +33,8 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -XX:+UseSerialGC TestAgeOutput UseSerialGC
- * @run main/othervm -XX:+UseG1GC TestAgeOutput UseG1GC
+ * @run main/othervm -XX:+UseSerialGC gc.TestAgeOutput UseSerialGC
+ * @run main/othervm -XX:+UseG1GC gc.TestAgeOutput UseG1GC
  */
 
 /*
@@ -45,7 +47,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -XX:+UseConcMarkSweepGC TestAgeOutput UseConcMarkSweepGC
+ * @run main/othervm -XX:+UseConcMarkSweepGC gc.TestAgeOutput UseConcMarkSweepGC
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/TestAllocateHeapAt.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestAllocateHeapAt.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,15 @@
  * questions.
  */
 
+package gc;
+
 /* @test TestAllocateHeapAt.java
  * @key gc
  * @summary Test to check allocation of Java Heap with AllocateHeapAt option
  * @requires vm.gc != "Z" & os.family != "aix"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
+ * @run main gc.TestAllocateHeapAt
  */
 
 import jdk.test.lib.JDKToolFinder;
--- a/test/hotspot/jtreg/gc/TestAllocateHeapAtError.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestAllocateHeapAtError.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,15 @@
  * questions.
  */
 
+package gc;
+
 /* @test TestAllocateHeapAtError.java
  * @key gc
  * @summary Test to check correct handling of non-existent directory passed to AllocateHeapAt option
  * @requires vm.gc != "Z" & os.family != "aix"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
+ * @run main gc.TestAllocateHeapAtError
  */
 
 import java.io.File;
--- a/test/hotspot/jtreg/gc/TestAllocateHeapAtMultiple.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestAllocateHeapAtMultiple.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc;
+
 /* @test TestAllocateHeapAtMultiple.java
  * @key gc
  * @summary Test to check allocation of Java Heap with AllocateHeapAt option. Has multiple sub-tests to cover different code paths.
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  * @requires vm.bits == "64" & vm.gc != "Z" & os.family != "aix"
- * @run main/timeout=360 TestAllocateHeapAtMultiple
+ * @run main/timeout=360 gc.TestAllocateHeapAtMultiple
  */
 
 import jdk.test.lib.JDKToolFinder;
@@ -53,9 +55,8 @@
       "-Xmx32m -Xms32m -XX:+UseCompressedOops",     // 1. With compressedoops enabled.
       "-Xmx32m -Xms32m -XX:-UseCompressedOops",     // 2. With compressedoops disabled.
       "-Xmx32m -Xms32m -XX:HeapBaseMinAddress=3g",  // 3. With user specified HeapBaseMinAddress.
-      "-Xmx4g -Xms4g",                              // 4. With larger heap size (UnscaledNarrowOop not possible).
-      "-Xmx4g -Xms4g -XX:+UseLargePages",           // 5. Set UseLargePages.
-      "-Xmx4g -Xms4g -XX:+UseNUMA"                  // 6. Set UseNUMA.
+      "-Xmx32m -Xms32m -XX:+UseLargePages",         // 4. Set UseLargePages.
+      "-Xmx32m -Xms32m -XX:+UseNUMA"                // 5. Set UseNUMA.
     };
 
     for(String extraOpts : extraOptsList) {
--- a/test/hotspot/jtreg/gc/TestBigObj.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestBigObj.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,11 +21,13 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestBigObj
  * @bug 6845368
  * @summary ensure gc updates references > 64K bytes from the start of the obj
- * @run main/othervm/timeout=720 -Xmx256m -verbose:gc TestBigObj
+ * @run main/othervm/timeout=720 -Xmx256m -verbose:gc gc.TestBigObj
  */
 
 // Allocate an object with a block of reference fields that starts more
--- a/test/hotspot/jtreg/gc/TestCardTablePageCommits.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestCardTablePageCommits.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 import jdk.test.lib.JDKToolFinder;
 import jdk.test.lib.process.ProcessTools;
 import jdk.test.lib.process.OutputAnalyzer;
@@ -34,7 +36,7 @@
  * @requires vm.gc.Parallel
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
- * @run driver TestCardTablePageCommits
+ * @run driver gc.TestCardTablePageCommits
  */
 public class TestCardTablePageCommits {
     public static void main(String args[]) throws Exception {
--- a/test/hotspot/jtreg/gc/TestDisableExplicitGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestDisableExplicitGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestDisableExplicitGC
  * @requires vm.opt.DisableExplicitGC == null
@@ -28,9 +30,9 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  * @modules jdk.management/com.sun.management.internal
- * @run main/othervm                             -Xlog:gc=debug TestDisableExplicitGC
- * @run main/othervm/fail -XX:+DisableExplicitGC -Xlog:gc=debug TestDisableExplicitGC
- * @run main/othervm      -XX:-DisableExplicitGC -Xlog:gc=debug TestDisableExplicitGC
+ * @run main/othervm                             -Xlog:gc=debug gc.TestDisableExplicitGC
+ * @run main/othervm/fail -XX:+DisableExplicitGC -Xlog:gc=debug gc.TestDisableExplicitGC
+ * @run main/othervm      -XX:-DisableExplicitGC -Xlog:gc=debug gc.TestDisableExplicitGC
  */
 import java.lang.management.GarbageCollectorMXBean;
 import java.util.List;
--- a/test/hotspot/jtreg/gc/TestFullGCALot.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestFullGCALot.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestFullGCALot
  * @key gc
  * @bug 4187687 8187819
  * @summary Ensure no access violation when using FullGCALot
  * @requires vm.debug
- * @run main/othervm -XX:NewSize=10m -XX:+FullGCALot -XX:FullGCALotInterval=120 TestFullGCALot
+ * @run main/othervm -XX:NewSize=10m -XX:+FullGCALot -XX:FullGCALotInterval=120 gc.TestFullGCALot
  */
 
 public class TestFullGCALot {
--- a/test/hotspot/jtreg/gc/TestFullGCCount.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestFullGCCount.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /**
  * @test TestFullGCCount.java
  * @bug 7072527
@@ -29,7 +31,7 @@
  * @comment Shenandoah has "ExplicitGCInvokesConcurrent" on by default
  * @requires !(vm.gc == "Shenandoah"    & vm.opt.ExplicitGCInvokesConcurrent != false)
  * @modules java.management
- * @run main/othervm -Xlog:gc TestFullGCCount
+ * @run main/othervm -Xlog:gc gc.TestFullGCCount
  */
 
 import java.lang.management.GarbageCollectorMXBean;
--- a/test/hotspot/jtreg/gc/TestGenerationPerfCounter.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestGenerationPerfCounter.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 import static jdk.test.lib.Asserts.*;
 import gc.testlibrary.PerfCounter;
 import gc.testlibrary.PerfCounters;
@@ -35,9 +37,9 @@
  *          java.compiler
  *          java.management/sun.management
  *          jdk.internal.jvmstat/sun.jvmstat.monitor
- * @run main/othervm -XX:+UsePerfData -XX:+UseSerialGC TestGenerationPerfCounter
- * @run main/othervm -XX:+UsePerfData -XX:+UseParallelGC TestGenerationPerfCounter
- * @run main/othervm -XX:+UsePerfData -XX:+UseG1GC TestGenerationPerfCounter
+ * @run main/othervm -XX:+UsePerfData -XX:+UseSerialGC gc.TestGenerationPerfCounter
+ * @run main/othervm -XX:+UsePerfData -XX:+UseParallelGC gc.TestGenerationPerfCounter
+ * @run main/othervm -XX:+UsePerfData -XX:+UseG1GC gc.TestGenerationPerfCounter
  */
 
 /* @test TestGenerationPerfCounterCMS
@@ -50,7 +52,7 @@
  *          java.compiler
  *          java.management/sun.management
  *          jdk.internal.jvmstat/sun.jvmstat.monitor
- * @run main/othervm -XX:+UsePerfData -XX:+UseConcMarkSweepGC TestGenerationPerfCounter
+ * @run main/othervm -XX:+UsePerfData -XX:+UseConcMarkSweepGC gc.TestGenerationPerfCounter
  */
 
 public class TestGenerationPerfCounter {
--- a/test/hotspot/jtreg/gc/TestHumongousReferenceObject.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestHumongousReferenceObject.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 import jdk.internal.vm.annotation.Contended;
 
 /*
@@ -29,11 +31,11 @@
  * @requires vm.gc == "null"
  * @bug 8151499 8153734
  * @modules java.base/jdk.internal.vm.annotation
- * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseParallelGC -XX:ContendedPaddingWidth=8192 TestHumongousReferenceObject
- * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=1M -XX:ContendedPaddingWidth=8192 TestHumongousReferenceObject
- * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=2M -XX:ContendedPaddingWidth=8192 TestHumongousReferenceObject
- * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=4M -XX:ContendedPaddingWidth=8192 TestHumongousReferenceObject
- * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=8M -XX:ContendedPaddingWidth=8192 TestHumongousReferenceObject
+ * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseParallelGC -XX:ContendedPaddingWidth=8192 gc.TestHumongousReferenceObject
+ * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=1M -XX:ContendedPaddingWidth=8192 gc.TestHumongousReferenceObject
+ * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=2M -XX:ContendedPaddingWidth=8192 gc.TestHumongousReferenceObject
+ * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=4M -XX:ContendedPaddingWidth=8192 gc.TestHumongousReferenceObject
+ * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UseG1GC -XX:G1HeapRegionSize=8M -XX:ContendedPaddingWidth=8192 gc.TestHumongousReferenceObject
  */
 
 /*
@@ -42,8 +44,8 @@
  * @requires vm.gc.Shenandoah
  * @bug 8151499 8153734
  * @modules java.base/jdk.internal.vm.annotation
- * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahHeapRegionSize=8M -XX:ContendedPaddingWidth=8192 TestHumongousReferenceObject
- * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahHeapRegionSize=8M -XX:ContendedPaddingWidth=8192 -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify TestHumongousReferenceObject
+ * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahHeapRegionSize=8M -XX:ContendedPaddingWidth=8192 gc.TestHumongousReferenceObject
+ * @run main/othervm -XX:+EnableContended -XX:-RestrictContended -Xmx128m -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahHeapRegionSize=8M -XX:ContendedPaddingWidth=8192 -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify gc.TestHumongousReferenceObject
  */
 public class TestHumongousReferenceObject {
 
--- a/test/hotspot/jtreg/gc/TestMemoryInitialization.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestMemoryInitialization.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,6 +1,6 @@
 
 /*
- * Copyright (c) 2002, 2017 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  * questions.
  */
 
+package gc;
+
 /*
  * test TestMemoryInitialization
  * bug 4668531
--- a/test/hotspot/jtreg/gc/TestMemoryInitializationWithCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestMemoryInitializationWithCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,16 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestMemoryInitializationWithCMS
  * @key gc
  * @bug 4668531
+ * @library /
  * @requires vm.debug & vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Simple test for -XX:+CheckMemoryInitialization doesn't crash VM
- * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+CheckMemoryInitialization TestMemoryInitializationWithCMS
+ * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+CheckMemoryInitialization gc.TestMemoryInitializationWithCMS
  */
 
 public class TestMemoryInitializationWithCMS {
--- a/test/hotspot/jtreg/gc/TestMemoryInitializationWithSerial.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestMemoryInitializationWithSerial.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,6 +1,6 @@
 
 /*
- * Copyright (c) 2002, 2017 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  * questions.
  */
 
+package gc;
+
 /*
- * @test TestMemoryInitializationWithSerial`
+ * @test TestMemoryInitializationWithSerial
  * @key gc
  * @bug 4668531
+ * @library /
  * @requires vm.debug & vm.gc.Serial
  * @summary Simple test for -XX:+CheckMemoryInitialization doesn't crash VM
- * @run main/othervm -XX:+UseSerialGC -XX:+CheckMemoryInitialization TestMemoryInitializationWithSerial
+ * @run main/othervm -XX:+UseSerialGC -XX:+CheckMemoryInitialization gc.TestMemoryInitializationWithSerial
  */
 
 public class TestMemoryInitializationWithSerial {
--- a/test/hotspot/jtreg/gc/TestMemoryMXBeansAndPoolsPresence.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestMemoryMXBeansAndPoolsPresence.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 import java.util.List;
 import java.util.ArrayList;
 import java.lang.management.*;
@@ -34,9 +36,9 @@
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @requires vm.gc == null
- * @run main/othervm -XX:+UseG1GC TestMemoryMXBeansAndPoolsPresence G1
- * @run main/othervm -XX:+UseParallelGC TestMemoryMXBeansAndPoolsPresence Parallel
- * @run main/othervm -XX:+UseSerialGC TestMemoryMXBeansAndPoolsPresence Serial
+ * @run main/othervm -XX:+UseG1GC gc.TestMemoryMXBeansAndPoolsPresence G1
+ * @run main/othervm -XX:+UseParallelGC gc.TestMemoryMXBeansAndPoolsPresence Parallel
+ * @run main/othervm -XX:+UseSerialGC gc.TestMemoryMXBeansAndPoolsPresence Serial
  */
 
 /* @test TestMemoryMXBeansAndPoolsPresenceCMS
@@ -46,7 +48,7 @@
  *          java.management
  * @comment Graal does not support CMS
  * @requires vm.gc == null & !vm.graal.enabled
- * @run main/othervm -XX:+UseConcMarkSweepGC TestMemoryMXBeansAndPoolsPresence CMS
+ * @run main/othervm -XX:+UseConcMarkSweepGC gc.TestMemoryMXBeansAndPoolsPresence CMS
  */
 
 class GCBeanDescription {
--- a/test/hotspot/jtreg/gc/TestNUMAPageSize.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestNUMAPageSize.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc;
+
 /**
  * @test TestNUMAPageSize
  * @key gc regression
  * @summary Make sure that start up with NUMA support does not cause problems.
  * @bug 8061467
  * @requires vm.gc != "Z"
- * @run main/othervm -Xmx128m -XX:+UseNUMA -XX:+UseLargePages TestNUMAPageSize
+ * @run main/othervm -Xmx128m -XX:+UseNUMA -XX:+UseLargePages gc.TestNUMAPageSize
  */
 
 public class TestNUMAPageSize {
--- a/test/hotspot/jtreg/gc/TestNoPerfCounter.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestNoPerfCounter.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,14 @@
  * questions.
  */
 
+package gc;
+
 /* @test TestNoPerfCounter
  * @bug 8210265
  * @requires vm.gc=="null"
  * @library /test/lib /
  * @summary Tests that disabling perf counters does not crash the VM
- * @run main/othervm -XX:-UsePerfData TestNoPerfCounter
+ * @run main/othervm -XX:-UsePerfData gc.TestNoPerfCounter
  */
 
 public class TestNoPerfCounter {
--- a/test/hotspot/jtreg/gc/TestNumWorkerOutput.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestNumWorkerOutput.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestNumWorkerOutput
  * @bug 8165292
@@ -31,7 +33,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -XX:+UseG1GC TestNumWorkerOutput UseG1GC
+ * @run main/othervm -XX:+UseG1GC gc.TestNumWorkerOutput UseG1GC
  */
 
 /*
@@ -44,7 +46,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -XX:+UseConcMarkSweepGC TestNumWorkerOutput UseConcMarkSweepGC
+ * @run main/othervm -XX:+UseConcMarkSweepGC gc.TestNumWorkerOutput UseConcMarkSweepGC
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/TestObjectAlignment.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestObjectAlignment.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /**
  * @test TestObjectAlignment
  * @key gc
@@ -28,18 +30,18 @@
  * @summary G1: Concurrent marking crashes with -XX:ObjectAlignmentInBytes>=32 in 64bit VMs
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=8
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=32
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=64
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=128
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=256
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=8
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=32
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=64
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=128
- * @run main/othervm TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=256
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=8
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=32
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=64
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=128
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:+ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=256
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=8
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=32
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=64
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=128
+ * @run main/othervm gc.TestObjectAlignment -Xmx20M -XX:-ExplicitGCInvokesConcurrent -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=256
  */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/TestPolicyNamePerfCounter.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestPolicyNamePerfCounter.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 import static jdk.test.lib.Asserts.*;
 import gc.testlibrary.PerfCounter;
 import gc.testlibrary.PerfCounters;
@@ -35,9 +37,9 @@
  *          java.compiler
  *          java.management/sun.management
  *          jdk.internal.jvmstat/sun.jvmstat.monitor
- * @run main/othervm -XX:+UsePerfData -XX:+UseSerialGC TestPolicyNamePerfCounter Copy:MSC
- * @run main/othervm -XX:+UsePerfData -XX:+UseParallelGC TestPolicyNamePerfCounter ParScav:MSC
- * @run main/othervm -XX:+UsePerfData -XX:+UseG1GC TestPolicyNamePerfCounter GarbageFirst
+ * @run main/othervm -XX:+UsePerfData -XX:+UseSerialGC gc.TestPolicyNamePerfCounter Copy:MSC
+ * @run main/othervm -XX:+UsePerfData -XX:+UseParallelGC gc.TestPolicyNamePerfCounter ParScav:MSC
+ * @run main/othervm -XX:+UsePerfData -XX:+UseG1GC gc.TestPolicyNamePerfCounter GarbageFirst
  */
 
 /* @test TestPolicyNamePerfCounterCMS
@@ -50,7 +52,7 @@
  *          java.compiler
  *          java.management/sun.management
  *          jdk.internal.jvmstat/sun.jvmstat.monitor
- * @run main/othervm -XX:+UsePerfData -XX:+UseConcMarkSweepGC TestPolicyNamePerfCounter ParNew:CMS
+ * @run main/othervm -XX:+UsePerfData -XX:+UseConcMarkSweepGC gc.TestPolicyNamePerfCounter ParNew:CMS
  */
 
 public class TestPolicyNamePerfCounter {
--- a/test/hotspot/jtreg/gc/TestSmallHeap.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestSmallHeap.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /**
  * @test TestSmallHeap
  * @bug 8067438 8152239
@@ -30,7 +32,7 @@
  * @modules java.base/jdk.internal.misc
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestSmallHeap
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.TestSmallHeap
  */
 
 /* Note: It would be nice to verify the minimal supported heap size here,
--- a/test/hotspot/jtreg/gc/TestSoftReferencesBehaviorOnOOME.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestSoftReferencesBehaviorOnOOME.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /**
  * @test TestSoftReferencesBehaviorOnOOME
  * @key gc
@@ -28,9 +30,9 @@
  * @requires vm.gc != "Z"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
- * @run main/othervm -Xmx128m TestSoftReferencesBehaviorOnOOME 512 2k
- * @run main/othervm -Xmx128m TestSoftReferencesBehaviorOnOOME 128k 256k
- * @run main/othervm -Xmx128m TestSoftReferencesBehaviorOnOOME 2k 32k
+ * @run main/othervm -Xmx128m gc.TestSoftReferencesBehaviorOnOOME 512 2k
+ * @run main/othervm -Xmx128m gc.TestSoftReferencesBehaviorOnOOME 128k 256k
+ * @run main/othervm -Xmx128m gc.TestSoftReferencesBehaviorOnOOME 2k 32k
  */
 import jdk.test.lib.Utils;
 import jdk.test.lib.Asserts;
--- a/test/hotspot/jtreg/gc/TestStackOverflow.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestStackOverflow.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2017 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,14 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestStackOverflow
  * @key gc
  * @bug 4396719
  * @summary Test verifies only that VM doesn't crash but throw expected Error.
- * @run main/othervm TestStackOverflow
+ * @run main/othervm gc.TestStackOverflow
  */
 
 public class TestStackOverflow {
--- a/test/hotspot/jtreg/gc/TestSystemGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestSystemGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,19 +21,21 @@
  * questions.
  */
 
+package gc;
+
 /*
  * @test TestSystemGC
  * @key gc
  * @requires vm.gc=="null"
  * @summary Runs System.gc() with different flags.
- * @run main/othervm TestSystemGC
- * @run main/othervm -XX:+UseSerialGC TestSystemGC
- * @run main/othervm -XX:+UseParallelGC TestSystemGC
- * @run main/othervm -XX:+UseParallelGC -XX:-UseParallelOldGC TestSystemGC
- * @run main/othervm -XX:+UseG1GC TestSystemGC
- * @run main/othervm -XX:+UseG1GC -XX:+ExplicitGCInvokesConcurrent TestSystemGC
- * @run main/othervm -XX:+UseLargePages TestSystemGC
- * @run main/othervm -XX:+UseLargePages -XX:+UseLargePagesInMetaspace TestSystemGC
+ * @run main/othervm gc.TestSystemGC
+ * @run main/othervm -XX:+UseSerialGC gc.TestSystemGC
+ * @run main/othervm -XX:+UseParallelGC gc.TestSystemGC
+ * @run main/othervm -XX:+UseParallelGC -XX:-UseParallelOldGC gc.TestSystemGC
+ * @run main/othervm -XX:+UseG1GC gc.TestSystemGC
+ * @run main/othervm -XX:+UseG1GC -XX:+ExplicitGCInvokesConcurrent gc.TestSystemGC
+ * @run main/othervm -XX:+UseLargePages gc.TestSystemGC
+ * @run main/othervm -XX:+UseLargePages -XX:+UseLargePagesInMetaspace gc.TestSystemGC
  */
 
 /*
@@ -41,8 +43,8 @@
  * @key gc
  * @comment Graal does not support CMS
  * @requires vm.gc=="null" & !vm.graal.enabled
- * @run main/othervm -XX:+UseConcMarkSweepGC TestSystemGC
- * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent TestSystemGC
+ * @run main/othervm -XX:+UseConcMarkSweepGC gc.TestSystemGC
+ * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent gc.TestSystemGC
  */
 
 /*
@@ -50,8 +52,8 @@
  * @key gc
  * @requires vm.gc.Shenandoah & !vm.graal.enabled
  * @summary Runs System.gc() with different flags.
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC TestSystemGC
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:+ExplicitGCInvokesConcurrent TestSystemGC
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC gc.TestSystemGC
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:+ExplicitGCInvokesConcurrent gc.TestSystemGC
  */
 public class TestSystemGC {
   public static void main(String args[]) throws Exception {
--- a/test/hotspot/jtreg/gc/TestVerifyDuringStartup.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestVerifyDuringStartup.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /* @test TestVerifyDuringStartup.java
  * @key gc
  * @bug 8010463 8011343 8011898
@@ -28,6 +30,7 @@
  * @requires vm.gc != "Z"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
+ * @run main gc.TestVerifyDuringStartup
  */
 
 import jdk.test.lib.JDKToolFinder;
--- a/test/hotspot/jtreg/gc/TestVerifySilently.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestVerifySilently.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc;
+
 /* @test TestVerifySilently.java
  * @key gc
  * @bug 8032771
@@ -28,6 +30,7 @@
  * @requires vm.gc != "Z"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
+ * @run main gc.TestVerifySilently
  */
 
 import jdk.test.lib.process.ProcessTools;
@@ -36,7 +39,7 @@
 import java.util.Collections;
 import jdk.test.lib.Utils;
 
-class RunSystemGC {
+class TestVerifySilentlyRunSystemGC {
   public static void main(String args[]) throws Exception {
     System.gc();
   }
@@ -54,7 +57,7 @@
                                              "-XX:+VerifyBeforeGC",
                                              "-XX:+VerifyAfterGC",
                                              (verifySilently ? "-Xlog:gc":"-Xlog:gc+verify=debug"),
-                                             RunSystemGC.class.getName()});
+                                             TestVerifySilentlyRunSystemGC.class.getName()});
     ProcessBuilder pb =
       ProcessTools.createJavaProcessBuilder(vmOpts.toArray(new String[vmOpts.size()]));
     OutputAnalyzer output = new OutputAnalyzer(pb.start());
--- a/test/hotspot/jtreg/gc/TestVerifySubSet.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/TestVerifySubSet.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,15 @@
  * questions.
  */
 
+package gc;
+
 /* @test TestVerifySubSet.java
  * @key gc
  * @bug 8072725
  * @summary Test VerifySubSet option
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
+ * @run main gc.TestVerifySubSet
  */
 
 import jdk.test.lib.process.ProcessTools;
@@ -35,7 +38,7 @@
 import java.util.Collections;
 import jdk.test.lib.Utils;
 
-class RunSystemGC {
+class TestVerifySubSetRunSystemGC {
     public static void main(String args[]) throws Exception {
         System.gc();
     }
@@ -52,7 +55,7 @@
                                                  "-XX:+VerifyAfterGC",
                                                  "-Xlog:gc+verify=debug",
                                                  "-XX:VerifySubSet="+subset,
-                                                 RunSystemGC.class.getName()});
+                                                 TestVerifySubSetRunSystemGC.class.getName()});
         ProcessBuilder pb =
             ProcessTools.createJavaProcessBuilder(vmOpts.toArray(new String[vmOpts.size()]));
         OutputAnalyzer output = new OutputAnalyzer(pb.start());
--- a/test/hotspot/jtreg/gc/arguments/AllocationHelper.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/AllocationHelper.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import java.util.LinkedList;
 import java.util.concurrent.Callable;
 
--- a/test/hotspot/jtreg/gc/arguments/FlagsValue.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/FlagsValue.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import java.util.regex.*;
 
 public class FlagsValue {
--- a/test/hotspot/jtreg/gc/arguments/GCTypes.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/GCTypes.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import java.lang.management.GarbageCollectorMXBean;
 import java.lang.management.ManagementFactory;
 import java.util.Arrays;
--- a/test/hotspot/jtreg/gc/arguments/HeapRegionUsageTool.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/HeapRegionUsageTool.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import java.lang.management.ManagementFactory;
 import java.lang.management.MemoryPoolMXBean;
 import java.lang.management.MemoryUsage;
--- a/test/hotspot/jtreg/gc/arguments/TestAggressiveHeap.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestAggressiveHeap.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestAggressiveHeap
  * @key gc
@@ -29,7 +31,7 @@
  * @summary Test argument processing for -XX:+AggressiveHeap.
  * @library /test/lib
  * @modules java.base java.management
- * @run driver TestAggressiveHeap
+ * @run driver gc.arguments.TestAggressiveHeap
  */
 
 import java.lang.management.ManagementFactory;
--- a/test/hotspot/jtreg/gc/arguments/TestAlignmentToUseLargePages.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestAlignmentToUseLargePages.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /**
  * @test TestAlignmentToUseLargePages
  * @key gc regression
@@ -28,14 +30,14 @@
  * heap alignment is large page aligned. Other collectors also need to start up with odd sized heaps.
  * @bug 8024396
  * @requires vm.gc=="null"
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:-UseParallelOldGC -XX:+UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:-UseParallelOldGC -XX:-UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:+UseParallelOldGC -XX:+UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:+UseParallelOldGC -XX:-UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseSerialGC -XX:+UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseSerialGC -XX:-UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseG1GC -XX:+UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseG1GC -XX:-UseLargePages TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:-UseParallelOldGC -XX:+UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:-UseParallelOldGC -XX:-UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:+UseParallelOldGC -XX:+UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseParallelGC -XX:+UseParallelOldGC -XX:-UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseSerialGC -XX:+UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseSerialGC -XX:-UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseG1GC -XX:+UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseG1GC -XX:-UseLargePages gc.arguments.TestAlignmentToUseLargePages
  */
 
 /**
@@ -44,8 +46,8 @@
  * @bug 8024396
  * @comment Graal does not support CMS
  * @requires vm.gc=="null" & !vm.graal.enabled
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseConcMarkSweepGC -XX:+UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UseConcMarkSweepGC -XX:-UseLargePages TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseConcMarkSweepGC -XX:+UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UseConcMarkSweepGC -XX:-UseLargePages gc.arguments.TestAlignmentToUseLargePages
  */
 
 /**
@@ -54,8 +56,8 @@
  * @bug 8024396
  * @comment Graal does not support Shenandoah
  * @requires vm.gc.Shenandoah & !vm.graal.enabled
- * @run main/othervm -Xms71M -Xmx91M -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:+UseLargePages TestAlignmentToUseLargePages
- * @run main/othervm -Xms71M -Xmx91M -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:-UseLargePages TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:+UseLargePages gc.arguments.TestAlignmentToUseLargePages
+ * @run main/othervm -Xms71M -Xmx91M -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:-UseLargePages gc.arguments.TestAlignmentToUseLargePages
  */
 
 public class TestAlignmentToUseLargePages {
--- a/test/hotspot/jtreg/gc/arguments/TestArrayAllocatorMallocLimit.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestArrayAllocatorMallocLimit.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestArrayAllocatorMallocLimit
  * @summary Sanity check that the ArrayAllocatorMallocLimit flag can be set.
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver TestArrayAllocatorMallocLimit
+ * @run driver gc.arguments.TestArrayAllocatorMallocLimit
  */
 
 import jdk.test.lib.Asserts;
--- a/test/hotspot/jtreg/gc/arguments/TestCMSHeapSizeFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestCMSHeapSizeFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestCMSHeapSizeFlags
  * @key gc
@@ -28,12 +30,13 @@
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Tests argument processing for initial and maximum heap size for the CMS collector
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestCMSHeapSizeFlags
+ * @run main/othervm gc.arguments.TestCMSHeapSizeFlags
  * @author thomas.schatzl@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/arguments/TestCompressedClassFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestCompressedClassFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import jdk.test.lib.process.OutputAnalyzer;
 import jdk.test.lib.process.ProcessTools;
 import jdk.test.lib.Platform;
@@ -33,6 +35,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.arguments.TestCompressedClassFlags
  */
 public class TestCompressedClassFlags {
     public static void main(String[] args) throws Exception {
--- a/test/hotspot/jtreg/gc/arguments/TestDisableDefaultGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestDisableDefaultGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestDisableDefaultGC
  * @summary Test that the VM complains when the default GC is disabled and no other GC is specified
@@ -30,7 +32,7 @@
  * @requires vm.gc=="null"
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver TestDisableDefaultGC
+ * @run driver gc.arguments.TestDisableDefaultGC
  */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/arguments/TestDynMaxHeapFreeRatio.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestDynMaxHeapFreeRatio.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import static jdk.test.lib.Asserts.assertEQ;
 import static jdk.test.lib.Asserts.assertFalse;
 import static jdk.test.lib.Asserts.assertTrue;
@@ -33,12 +35,12 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  * @modules java.management
- * @run main TestDynMaxHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 TestDynMaxHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 -XX:-UseAdaptiveSizePolicy TestDynMaxHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 TestDynMaxHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=51 -XX:MaxHeapFreeRatio=52 TestDynMaxHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=75 -XX:MaxHeapFreeRatio=100 TestDynMaxHeapFreeRatio
+ * @run main gc.arguments.TestDynMaxHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 gc.arguments.TestDynMaxHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 -XX:-UseAdaptiveSizePolicy gc.arguments.TestDynMaxHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 gc.arguments.TestDynMaxHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=51 -XX:MaxHeapFreeRatio=52 gc.arguments.TestDynMaxHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=75 -XX:MaxHeapFreeRatio=100 gc.arguments.TestDynMaxHeapFreeRatio
  */
 public class TestDynMaxHeapFreeRatio {
 
--- a/test/hotspot/jtreg/gc/arguments/TestDynMinHeapFreeRatio.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestDynMinHeapFreeRatio.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /**
  * @test TestDynMinHeapFreeRatio
  * @bug 8028391
@@ -28,12 +30,12 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  * @modules java.management
- * @run main TestDynMinHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 TestDynMinHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 -XX:-UseAdaptiveSizePolicy TestDynMinHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 TestDynMinHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=51 -XX:MaxHeapFreeRatio=52 TestDynMinHeapFreeRatio
- * @run main/othervm -XX:MinHeapFreeRatio=75 -XX:MaxHeapFreeRatio=100 TestDynMinHeapFreeRatio
+ * @run main gc.arguments.TestDynMinHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 gc.arguments.TestDynMinHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 -XX:-UseAdaptiveSizePolicy gc.arguments.TestDynMinHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=50 gc.arguments.TestDynMinHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=51 -XX:MaxHeapFreeRatio=52 gc.arguments.TestDynMinHeapFreeRatio
+ * @run main/othervm -XX:MinHeapFreeRatio=75 -XX:MaxHeapFreeRatio=100 gc.arguments.TestDynMinHeapFreeRatio
  */
 import static jdk.test.lib.Asserts.assertEQ;
 import static jdk.test.lib.Asserts.assertFalse;
--- a/test/hotspot/jtreg/gc/arguments/TestG1ConcMarkStepDurationMillis.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestG1ConcMarkStepDurationMillis.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestG1ConcMarkStepDurationMillis
  * @key gc
@@ -29,6 +31,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.arguments.TestG1ConcMarkStepDurationMillis
  */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/arguments/TestG1ConcRefinementThreads.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestG1ConcRefinementThreads.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestG1ConcRefinementThreads
  * @key gc
@@ -30,6 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.arguments.TestG1ConcRefinementThreads
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/arguments/TestG1HeapRegionSize.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestG1HeapRegionSize.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestG1HeapRegionSize
  * @key gc
@@ -30,7 +32,7 @@
  * @modules java.base/jdk.internal.misc
  * @modules java.management/sun.management
  * @library /test/lib
- * @run main TestG1HeapRegionSize
+ * @run main gc.arguments.TestG1HeapRegionSize
  */
 
 import java.util.regex.Matcher;
--- a/test/hotspot/jtreg/gc/arguments/TestG1HeapSizeFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestG1HeapSizeFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestG1HeapSizeFlags
  * @key gc
@@ -28,12 +30,13 @@
  * @requires vm.gc.G1
  * @summary Tests argument processing for initial and maximum heap size for the G1 collector
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestG1HeapSizeFlags
+ * @run main/othervm gc.arguments.TestG1HeapSizeFlags
  * @author thomas.schatzl@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/arguments/TestG1PercentageOptions.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestG1PercentageOptions.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestG1PercentageOptions
  * @key gc
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver TestG1PercentageOptions
+ * @run driver gc.arguments.TestG1PercentageOptions
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/arguments/TestHeapFreeRatio.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestHeapFreeRatio.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestHeapFreeRatio
  * @key gc
@@ -29,7 +31,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm TestHeapFreeRatio
+ * @run main/othervm gc.arguments.TestHeapFreeRatio
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/arguments/TestInitialTenuringThreshold.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestInitialTenuringThreshold.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestInitialTenuringThreshold
  * @key gc
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm TestInitialTenuringThreshold
+ * @run main/othervm gc.arguments.TestInitialTenuringThreshold
  * @author thomas.schatzl@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/arguments/TestMaxHeapSizeTools.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestMaxHeapSizeTools.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/arguments/TestMaxMinHeapFreeRatioFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestMaxMinHeapFreeRatioFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,15 +21,18 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestMaxMinHeapFreeRatioFlags
  * @key gc
  * @summary Verify that heap size changes according to max and min heap free ratios.
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver/timeout=240 TestMaxMinHeapFreeRatioFlags
+ * @run driver/timeout=240 gc.arguments.TestMaxMinHeapFreeRatioFlags
  */
 
 import java.util.LinkedList;
--- a/test/hotspot/jtreg/gc/arguments/TestMaxNewSize.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestMaxNewSize.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestMaxNewSize
  * @key gc
@@ -31,9 +33,9 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main TestMaxNewSize -XX:+UseSerialGC
- * @run main TestMaxNewSize -XX:+UseParallelGC
- * @run main TestMaxNewSize -XX:+UseG1GC
+ * @run main gc.arguments.TestMaxNewSize -XX:+UseSerialGC
+ * @run main gc.arguments.TestMaxNewSize -XX:+UseParallelGC
+ * @run main gc.arguments.TestMaxNewSize -XX:+UseG1GC
  * @author thomas.schatzl@oracle.com, jesper.wilhelmsson@oracle.com
  */
 
@@ -46,7 +48,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main TestMaxNewSize -XX:+UseConcMarkSweepGC
+ * @run main gc.arguments.TestMaxNewSize -XX:+UseConcMarkSweepGC
  */
 
 import java.util.regex.Matcher;
--- a/test/hotspot/jtreg/gc/arguments/TestMinAndInitialSurvivorRatioFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestMinAndInitialSurvivorRatioFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,16 +21,19 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestMinAndInitialSurvivorRatioFlags
  * @key gc
  * @summary Verify that MinSurvivorRatio and InitialSurvivorRatio flags work
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver/timeout=240 TestMinAndInitialSurvivorRatioFlags
+ * @run driver/timeout=240 gc.arguments.TestMinAndInitialSurvivorRatioFlags
  */
 
 import java.lang.management.MemoryUsage;
--- a/test/hotspot/jtreg/gc/arguments/TestMinInitialErgonomics.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestMinInitialErgonomics.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,18 +21,21 @@
  * questions.
  */
 
+package gc.arguments;
+
 /**
  * @test TestMinInitialErgonomics
  * @key gc
  * @bug 8006088
  * @summary Test ergonomics decisions related to minimum and initial heap size.
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestMinInitialErgonomics
+ * @run main/othervm gc.arguments.TestMinInitialErgonomics
  * @author thomas.schatzl@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/arguments/TestNewRatioFlag.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestNewRatioFlag.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestNewRatioFlag
  * @key gc
@@ -28,11 +30,12 @@
  * @summary Verify that heap devided among generations according to NewRatio
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver TestNewRatioFlag
+ * @run driver gc.arguments.TestNewRatioFlag
  */
 
 import java.util.Arrays;
--- a/test/hotspot/jtreg/gc/arguments/TestNewSizeFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestNewSizeFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestNewSizeFlags
  * @key gc
@@ -28,11 +30,12 @@
  * @summary Verify that young gen size conforms values specified by NewSize, MaxNewSize and Xmn options
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver/timeout=240  TestNewSizeFlags
+ * @run driver/timeout=240  gc.arguments.TestNewSizeFlags
  */
 
 import java.io.IOException;
--- a/test/hotspot/jtreg/gc/arguments/TestNewSizeThreadIncrease.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestNewSizeThreadIncrease.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestNewSizeThreadIncrease
  * @key gc
@@ -30,6 +32,7 @@
  * @requires vm.gc.Serial
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.arguments.TestNewSizeThreadIncrease
  */
 
 
--- a/test/hotspot/jtreg/gc/arguments/TestObjectTenuringFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestObjectTenuringFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestObjectTenuringFlags
  * @key gc
@@ -29,9 +31,10 @@
  * @summary Tests argument processing for NeverTenure, AlwaysTenure,
  * and MaxTenuringThreshold
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm TestObjectTenuringFlags
+ * @run main/othervm gc.arguments.TestObjectTenuringFlags
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/arguments/TestParallelGCThreads.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestParallelGCThreads.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,15 +21,18 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestParallelGCThreads
  * @key gc
  * @bug 8059527 8081382
  * @summary Tests argument processing for ParallelGCThreads
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver TestParallelGCThreads
+ * @run driver gc.arguments.TestParallelGCThreads
  */
 
 import jdk.test.lib.Asserts;
--- a/test/hotspot/jtreg/gc/arguments/TestParallelHeapSizeFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestParallelHeapSizeFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestParallelHeapSizeFlags
  * @key gc
@@ -29,12 +31,13 @@
  * parallel collectors.
  * @requires vm.gc=="null"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestParallelHeapSizeFlags
+ * @run main/othervm gc.arguments.TestParallelHeapSizeFlags
  * @author thomas.schatzl@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/arguments/TestParallelRefProc.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestParallelRefProc.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,14 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestParallelRefProc
  * @key gc
  * @summary Test defaults processing for -XX:+ParallelRefProcEnabled.
  * @library /test/lib
- * @run driver TestParallelRefProc
+ * @run driver gc.arguments.TestParallelRefProc
  */
 
 import java.util.Arrays;
--- a/test/hotspot/jtreg/gc/arguments/TestSelectDefaultGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestSelectDefaultGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestSelectDefaultGC
  * @summary Test selection of GC when no GC option is specified
@@ -30,7 +32,7 @@
  * @requires vm.gc=="null"
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver TestSelectDefaultGC
+ * @run driver gc.arguments.TestSelectDefaultGC
  */
 
 import jdk.test.lib.Platform;
--- a/test/hotspot/jtreg/gc/arguments/TestSerialHeapSizeFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestSerialHeapSizeFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,18 +21,21 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestSerialHeapSizeFlags
  * @key gc
  * @bug 8006088
  * @summary Tests argument processing for initial and maximum heap size for the Serial collector
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestSerialHeapSizeFlags
+ * @run main/othervm gc.arguments.TestSerialHeapSizeFlags
  * @author thomas.schatzl@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/arguments/TestShrinkHeapInSteps.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestShrinkHeapInSteps.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,15 +21,18 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestShrinkHeapInSteps
  * @key gc
  * @summary Verify that -XX:-ShrinkHeapInSteps works properly.
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver/timeout=240 TestShrinkHeapInSteps
+ * @run driver/timeout=240 gc.arguments.TestShrinkHeapInSteps
  */
 
 import java.util.LinkedList;
--- a/test/hotspot/jtreg/gc/arguments/TestSmallInitialHeapWithLargePageAndNUMA.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestSmallInitialHeapWithLargePageAndNUMA.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestSmallInitialHeapWithLargePageAndNUMA
  * @bug 8023905
@@ -32,7 +34,7 @@
  * @modules java.management/sun.management
  * @build TestSmallInitialHeapWithLargePageAndNUMA
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -Xbootclasspath/a:. -XX:+UseHugeTLBFS -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestSmallInitialHeapWithLargePageAndNUMA
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UseHugeTLBFS -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.arguments.TestSmallInitialHeapWithLargePageAndNUMA
 */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/arguments/TestSurvivorAlignmentInBytesOption.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestSurvivorAlignmentInBytesOption.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import jdk.test.lib.process.ExitCode;
 import jdk.test.lib.cli.CommandLineOptionTest;
 
@@ -36,7 +38,7 @@
  *              | vm.opt.IgnoreUnrecognizedVMOptions == "false")
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main TestSurvivorAlignmentInBytesOption
+ * @run main gc.arguments.TestSurvivorAlignmentInBytesOption
  */
 public class TestSurvivorAlignmentInBytesOption {
     public static void main(String args[]) throws Throwable {
--- a/test/hotspot/jtreg/gc/arguments/TestSurvivorRatioFlag.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestSurvivorRatioFlag.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,17 +21,20 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestSurvivorRatioFlag
  * @key gc
  * @summary Verify that actual survivor ratio is equal to specified SurvivorRatio value
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver TestSurvivorRatioFlag
+ * @run driver gc.arguments.TestSurvivorRatioFlag
  */
 
 import java.lang.management.MemoryUsage;
--- a/test/hotspot/jtreg/gc/arguments/TestTargetSurvivorRatioFlag.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestTargetSurvivorRatioFlag.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestTargetSurvivorRatioFlag
  * @key gc
@@ -29,11 +31,12 @@
  * @requires vm.opt.UseJVMCICompiler != true
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver TestTargetSurvivorRatioFlag
+ * @run driver gc.arguments.TestTargetSurvivorRatioFlag
  */
 
 import java.lang.management.GarbageCollectorMXBean;
--- a/test/hotspot/jtreg/gc/arguments/TestUnrecognizedVMOptionsHandling.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestUnrecognizedVMOptionsHandling.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestUnrecognizedVMOptionsHandling
  * @key gc
@@ -29,7 +31,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm TestUnrecognizedVMOptionsHandling
+ * @run main/othervm gc.arguments.TestUnrecognizedVMOptionsHandling
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/arguments/TestUseCompressedOopsErgo.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestUseCompressedOopsErgo.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestUseCompressedOopsErgo
  * @key gc
@@ -28,15 +30,16 @@
  * @summary Tests ergonomics for UseCompressedOops.
  * @requires vm.gc=="null"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management/sun.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestUseCompressedOopsErgo -XX:+UseG1GC
- * @run main/othervm TestUseCompressedOopsErgo -XX:+UseParallelGC
- * @run main/othervm TestUseCompressedOopsErgo -XX:+UseParallelGC -XX:-UseParallelOldGC
- * @run main/othervm TestUseCompressedOopsErgo -XX:+UseSerialGC
+ * @run main/othervm gc.arguments.TestUseCompressedOopsErgo -XX:+UseG1GC
+ * @run main/othervm gc.arguments.TestUseCompressedOopsErgo -XX:+UseParallelGC
+ * @run main/othervm gc.arguments.TestUseCompressedOopsErgo -XX:+UseParallelGC -XX:-UseParallelOldGC
+ * @run main/othervm gc.arguments.TestUseCompressedOopsErgo -XX:+UseSerialGC
  */
 
 /*
@@ -46,12 +49,13 @@
  * @comment Graal does not support CMS
  * @requires vm.gc=="null" & !vm.graal.enabled
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management/sun.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestUseCompressedOopsErgo -XX:+UseConcMarkSweepGC
+ * @run main/othervm gc.arguments.TestUseCompressedOopsErgo -XX:+UseConcMarkSweepGC
  */
 
 /*
@@ -61,12 +65,13 @@
  * @comment Graal does not support Shenandoah
  * @requires vm.gc.Shenandoah & !vm.graal.enabled
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management/sun.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm TestUseCompressedOopsErgo -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC
+ * @run main/othervm gc.arguments.TestUseCompressedOopsErgo -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC
  */
 
 public class TestUseCompressedOopsErgo {
--- a/test/hotspot/jtreg/gc/arguments/TestUseCompressedOopsErgoTools.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestUseCompressedOopsErgoTools.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 import com.sun.management.HotSpotDiagnosticMXBean;
 import com.sun.management.VMOption;
 
--- a/test/hotspot/jtreg/gc/arguments/TestUseNUMAInterleaving.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestUseNUMAInterleaving.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /**
  * @test TestUseNUMAInterleaving
  * @summary Tests that UseNUMAInterleaving enabled for all collectors by
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run driver TestUseNUMAInterleaving
+ * @run driver gc.arguments.TestUseNUMAInterleaving
  */
 import jdk.test.lib.process.OutputAnalyzer;
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/arguments/TestVerifyBeforeAndAfterGCFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/arguments/TestVerifyBeforeAndAfterGCFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.arguments;
+
 /*
  * @test TestVerifyBeforeAndAfterGCFlags
  * @key gc
@@ -32,7 +34,7 @@
  * @modules java.base/jdk.internal.misc
  * @modules java.management
  * @library /test/lib
- * @run driver TestVerifyBeforeAndAfterGCFlags
+ * @run driver gc.arguments.TestVerifyBeforeAndAfterGCFlags
  */
 
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/class_unloading/TestCMSClassUnloadingEnabledHWM.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/class_unloading/TestCMSClassUnloadingEnabledHWM.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.class_unloading;
+
 /*
  * @test
  * @key gc
@@ -32,7 +34,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run driver TestCMSClassUnloadingEnabledHWM
+ * @run driver gc.class_unloading.TestCMSClassUnloadingEnabledHWM
  * @summary Test that -XX:-CMSClassUnloadingEnabled will trigger a Full GC when more than MetaspaceSize metadata is allocated.
  */
 
--- a/test/hotspot/jtreg/gc/class_unloading/TestClassUnloadingDisabled.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/class_unloading/TestClassUnloadingDisabled.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.class_unloading;
+
 /*
  * @test
  * @key gc
@@ -36,13 +38,13 @@
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  *
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *                   -XX:-ClassUnloading -XX:+UseG1GC TestClassUnloadingDisabled
+ *                   -XX:-ClassUnloading -XX:+UseG1GC gc.class_unloading.TestClassUnloadingDisabled
  *
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *                   -XX:-ClassUnloading -XX:+UseSerialGC TestClassUnloadingDisabled
+ *                   -XX:-ClassUnloading -XX:+UseSerialGC gc.class_unloading.TestClassUnloadingDisabled
  *
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *                   -XX:-ClassUnloading -XX:+UseParallelGC TestClassUnloadingDisabled
+ *                   -XX:-ClassUnloading -XX:+UseParallelGC gc.class_unloading.TestClassUnloadingDisabled
  *
  */
 
@@ -61,7 +63,7 @@
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *                   -XX:-ClassUnloading -XX:+UseConcMarkSweepGC TestClassUnloadingDisabled
+ *                   -XX:-ClassUnloading -XX:+UseConcMarkSweepGC gc.class_unloading.TestClassUnloadingDisabled
  */
 
 /*
@@ -79,7 +81,7 @@
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *                   -XX:-ClassUnloading -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC TestClassUnloadingDisabled
+ *                   -XX:-ClassUnloading -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC gc.class_unloading.TestClassUnloadingDisabled
  */
 
 import java.io.File;
@@ -98,7 +100,7 @@
         // Fetch the dir where the test class and the class
         // to be loaded resides.
         String classDir = TestClassUnloadingDisabled.class.getProtectionDomain().getCodeSource().getLocation().getPath();
-        String className = "ClassToLoadUnload";
+        String className = "gc.class_unloading.ClassToLoadUnload"; // can not use ClassToLoadUnload.class.getName() as that would load the class
 
         assertFalse(wb.isClassAlive(className), "Should not be loaded yet");
 
--- a/test/hotspot/jtreg/gc/class_unloading/TestG1ClassUnloadingHWM.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/class_unloading/TestG1ClassUnloadingHWM.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.class_unloading;
+
 /*
  * @test
  * @key gc
@@ -31,7 +33,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run driver TestG1ClassUnloadingHWM
+ * @run driver gc.class_unloading.TestG1ClassUnloadingHWM
  * @summary Test that -XX:-ClassUnloadingWithConcurrentMark will trigger a Full GC when more than MetaspaceSize metadata is allocated.
  */
 
--- a/test/hotspot/jtreg/gc/cms/DisableResizePLAB.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cms/DisableResizePLAB.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.cms;
+
 /*
  * @test DisableResizePLAB
  * @key gc
@@ -28,7 +30,7 @@
  * @author filipp.zhinkin@oracle.com, john.coomes@oracle.com
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Run CMS with PLAB resizing disabled and a small OldPLABSize
- * @run main/othervm -XX:+UseConcMarkSweepGC -XX:-ResizePLAB -XX:OldPLABSize=1k -Xmx256m -Xlog:gc=debug DisableResizePLAB
+ * @run main/othervm -XX:+UseConcMarkSweepGC -XX:-ResizePLAB -XX:OldPLABSize=1k -Xmx256m -Xlog:gc=debug gc.cms.DisableResizePLAB
  */
 
 public class DisableResizePLAB {
--- a/test/hotspot/jtreg/gc/cms/GuardShrinkWarning.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cms/GuardShrinkWarning.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.cms;
+
 /**
  * @test GuardShrinkWarning
  * @key gc regression
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm GuardShrinkWarning
+ * @run main/othervm gc.cms.GuardShrinkWarning
  * @author jon.masamitsu@oracle.com
  */
 
@@ -44,7 +46,7 @@
       "-showversion",
       "-XX:+UseConcMarkSweepGC",
       "-XX:+ExplicitGCInvokesConcurrent",
-      "GuardShrinkWarning$SystemGCCaller"
+      SystemGCCaller.class.getName()
       );
 
     OutputAnalyzer output = new OutputAnalyzer(pb.start());
--- a/test/hotspot/jtreg/gc/cms/TestBubbleUpRef.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cms/TestBubbleUpRef.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.cms;
+
 import java.lang.ref.ReferenceQueue;
 import java.lang.ref.WeakReference;
 import java.util.LinkedList;
@@ -35,7 +37,7 @@
  *          stays nearly full.
  * @run main/othervm
  *  -XX:+UseConcMarkSweepGC -XX:-CMSYield -XX:-CMSPrecleanRefLists1
- *  -XX:CMSInitiatingOccupancyFraction=0 -Xmx80m TestBubbleUpRef 16000 50 10000
+ *  -XX:CMSInitiatingOccupancyFraction=0 -Xmx80m gc.cms.TestBubbleUpRef 16000 50 10000
  */
 
 /**
--- a/test/hotspot/jtreg/gc/cms/TestCMSScavengeBeforeRemark.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cms/TestCMSScavengeBeforeRemark.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.cms;
+
 /*
  * @test TestCMSScavengeBeforeRemark
  * @key gc
  * @bug 8139868
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Run CMS with CMSScavengeBeforeRemark
- * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+CMSScavengeBeforeRemark -XX:+ExplicitGCInvokesConcurrent -Xmx256m -Xlog:gc=debug TestCMSScavengeBeforeRemark
+ * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+CMSScavengeBeforeRemark -XX:+ExplicitGCInvokesConcurrent -Xmx256m -Xlog:gc=debug gc.cms.TestCMSScavengeBeforeRemark
  */
 
 public class TestCMSScavengeBeforeRemark {
--- a/test/hotspot/jtreg/gc/cms/TestCriticalPriority.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cms/TestCriticalPriority.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.cms;
+
 /*
  * @test TestCriticalPriority
  * @key gc
  * @bug 8217378
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Test critical priority is accepted
- * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+UnlockExperimentalVMOptions -XX:+UseCriticalCMSThreadPriority TestCriticalPriority
+ * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+UnlockExperimentalVMOptions -XX:+UseCriticalCMSThreadPriority gc.cms.TestCriticalPriority
  */
 
 public class TestCriticalPriority {
--- a/test/hotspot/jtreg/gc/cms/TestMBeanCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cms/TestMBeanCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.cms;
+
 /*
  * @test TestMBeanCMS.java
  * @bug 6581734
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary CMS Old Gen's collection usage is zero after GC which is incorrect
  * @modules java.management
- * @run main/othervm -Xmx512m -verbose:gc -XX:+UseConcMarkSweepGC TestMBeanCMS
+ * @run main/othervm -Xmx512m -verbose:gc -XX:+UseConcMarkSweepGC gc.cms.TestMBeanCMS
  *
  */
 
--- a/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.concurrent_phase_control;
+
 /*
  * @test TestConcurrentPhaseControlCMS
  * @bug 8169517
@@ -35,7 +37,7 @@
  * @run main/othervm -XX:+UseConcMarkSweepGC
  *   -Xbootclasspath/a:.
  *   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *   TestConcurrentPhaseControlCMS
+ *   gc.concurrent_phase_control.TestConcurrentPhaseControlCMS
  */
 
 import gc.concurrent_phase_control.CheckUnsupported;
--- a/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlG1.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlG1.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.concurrent_phase_control;
+
 /*
  * @test TestConcurrentPhaseControlG1
  * @bug 8169517
@@ -32,7 +34,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *    sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run driver TestConcurrentPhaseControlG1
+ * @run driver gc.concurrent_phase_control.TestConcurrentPhaseControlG1
  */
 
 import gc.concurrent_phase_control.CheckControl;
--- a/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlG1Basics.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlG1Basics.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.concurrent_phase_control;
+
 /*
  * @test TestConcurrentPhaseControlG1Basics
  * @bug 8169517
@@ -36,7 +38,7 @@
  * @run main/othervm -XX:+UseG1GC
  *   -Xbootclasspath/a:.
  *   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *   TestConcurrentPhaseControlG1Basics
+ *   gc.concurrent_phase_control.TestConcurrentPhaseControlG1Basics
  */
 
 import gc.concurrent_phase_control.CheckSupported;
--- a/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlParallel.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlParallel.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.concurrent_phase_control;
+
 /*
  * @test TestConcurrentPhaseControlParallel
  * @bug 8169517
@@ -35,7 +37,7 @@
  * @run main/othervm -XX:+UseParallelGC
  *   -Xbootclasspath/a:.
  *   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *   TestConcurrentPhaseControlParallel
+ *   gc.concurrent_phase_control.TestConcurrentPhaseControlParallel
  */
 
 import gc.concurrent_phase_control.CheckUnsupported;
--- a/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlSerial.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlSerial.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.concurrent_phase_control;
+
 /*
  * @test TestConcurrentPhaseControlSerial
  * @bug 8169517
@@ -35,7 +37,7 @@
  * @run main/othervm -XX:+UseSerialGC
  *   -Xbootclasspath/a:.
  *   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
- *   TestConcurrentPhaseControlSerial
+ *   gc.concurrent_phase_control.TestConcurrentPhaseControlSerial
  */
 
 import gc.concurrent_phase_control.CheckUnsupported;
--- a/test/hotspot/jtreg/gc/cslocker/TestCSLocker.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cslocker/TestCSLocker.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007, 2017 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.cslocker;
+
 /*
  * @test TestCSLocker
  * @key gc
@@ -28,7 +30,7 @@
  * @summary This short test check RFE 6186200 changes. One thread locked
  * @summary completely in JNI CS, while other is trying to allocate memory
  * @summary provoking GC. OOM means FAIL, deadlock means PASS.
- * @run main/native/othervm -Xmx256m TestCSLocker
+ * @run main/native/othervm -Xmx256m gc.cslocker.TestCSLocker
  */
 
 public class TestCSLocker extends Thread
--- a/test/hotspot/jtreg/gc/cslocker/libTestCSLocker.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/cslocker/libTestCSLocker.c	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007, 2017 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -25,7 +25,7 @@
 
 static volatile int release_critical = 0;
 
-JNIEXPORT jboolean JNICALL Java_CSLocker_lock
+JNIEXPORT jboolean JNICALL Java_gc_cslocker_CSLocker_lock
   (JNIEnv *env, jobject obj, jintArray array)
 {
     jboolean retval = JNI_TRUE;
@@ -42,7 +42,7 @@
     return retval;
 }
 
-JNIEXPORT void JNICALL Java_CSLocker_unlock
+JNIEXPORT void JNICALL Java_gc_cslocker_CSLocker_unlock
   (JNIEnv *env, jobject obj)
 {
     release_critical = 1;
--- a/test/hotspot/jtreg/gc/epsilon/TestAlignment.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestAlignment.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,16 +21,18 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestAlignment
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Check Epsilon runs fine with (un)usual alignments
  * @bug 8212005
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:+UseTLAB TestAlignment
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:-UseTLAB TestAlignment
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:+UseTLAB -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 TestAlignment
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:-UseTLAB -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 TestAlignment
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:+UseTLAB gc.epsilon.TestAlignment
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:-UseTLAB gc.epsilon.TestAlignment
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:+UseTLAB -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 gc.epsilon.TestAlignment
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:-UseTLAB -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 gc.epsilon.TestAlignment
  */
 
 public class TestAlignment {
--- a/test/hotspot/jtreg/gc/epsilon/TestAlwaysPretouch.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestAlwaysPretouch.java	Tue Jan 29 09:38:31 2019 -0500
@@ -26,9 +26,11 @@
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Basic sanity test for Epsilon
- * @run main/othervm -Xmx1g -XX:+AlwaysPreTouch -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestAlwaysPretouch
+ * @run main/othervm -Xmx1g -XX:+AlwaysPreTouch -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestAlwaysPretouch
  */
 
+package gc.epsilon;
+
 public class TestAlwaysPretouch {
   public static void main(String[] args) throws Exception {
     // everything should happen before entry point
--- a/test/hotspot/jtreg/gc/epsilon/TestArraycopyCheckcast.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestArraycopyCheckcast.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestArraycopyCheckcast
  * @key gc
@@ -29,11 +31,11 @@
  * @library /test/lib
  * @bug 8215724
  *
- * @run main/othervm -Xmx1g                                        -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestArraycopyCheckcast
- * @run main/othervm -Xmx1g -Xint                                  -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestArraycopyCheckcast
- * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestArraycopyCheckcast
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestArraycopyCheckcast
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestArraycopyCheckcast
+ * @run main/othervm -Xmx1g                                        -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestArraycopyCheckcast
+ * @run main/othervm -Xmx1g -Xint                                  -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestArraycopyCheckcast
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestArraycopyCheckcast
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestArraycopyCheckcast
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestArraycopyCheckcast
  */
 
 import java.util.Random;
--- a/test/hotspot/jtreg/gc/epsilon/TestByteArrays.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestByteArrays.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,23 +21,25 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestByteArrays
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Epsilon is able to allocate arrays, and does not corrupt their state
  *
- * @run main/othervm -Xmx1g                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
+ * @run main/othervm -Xmx1g                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
  *
- * @run main/othervm -Xmx1g                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestByteArrays
+ * @run main/othervm -Xmx1g                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
  */
 
 import java.util.Random;
--- a/test/hotspot/jtreg/gc/epsilon/TestClasses.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestClasses.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestClasses
  * @key gc
@@ -30,7 +32,7 @@
  * @modules java.base/jdk.internal.org.objectweb.asm
  *          java.base/jdk.internal.misc
  *
- * @run main/othervm -Xmx128m -XX:MetaspaceSize=1m -XX:MaxMetaspaceSize=32m -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -Xlog:gc+metaspace TestClasses
+ * @run main/othervm -Xmx128m -XX:MetaspaceSize=1m -XX:MaxMetaspaceSize=64m -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -Xlog:gc+metaspace gc.epsilon.TestClasses
  */
 
 import jdk.internal.org.objectweb.asm.ClassWriter;
--- a/test/hotspot/jtreg/gc/epsilon/TestDieDefault.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestDieDefault.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestDieDefault
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Epsilon GC should die on heap exhaustion
  * @library /test/lib
- * @run main TestDieDefault
+ * @run main gc.epsilon.TestDieDefault
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/epsilon/TestDieWithHeapDump.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestDieWithHeapDump.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestDieWithHeapDump
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Epsilon GC should die on heap exhaustion with error handler attached
  * @library /test/lib
- * @run main TestDieWithHeapDump
+ * @run main gc.epsilon.TestDieWithHeapDump
  */
 
 import java.io.*;
--- a/test/hotspot/jtreg/gc/epsilon/TestDieWithOnError.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestDieWithOnError.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestDieWithOnError
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Epsilon GC should die on heap exhaustion with error handler attached
  * @library /test/lib
- * @run main TestDieWithOnError
+ * @run main gc.epsilon.TestDieWithOnError
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/epsilon/TestElasticTLAB.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestElasticTLAB.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,18 +21,20 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestElasticTLAB
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Epsilon is able to work with/without elastic TLABs
  *
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:-EpsilonElasticTLAB                               TestElasticTLAB
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=1   TestElasticTLAB
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=1.1 TestElasticTLAB
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=2.0 TestElasticTLAB
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=42  TestElasticTLAB
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=100 TestElasticTLAB
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:-EpsilonElasticTLAB                               gc.epsilon.TestElasticTLAB
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=1   gc.epsilon.TestElasticTLAB
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=1.1 gc.epsilon.TestElasticTLAB
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=2.0 gc.epsilon.TestElasticTLAB
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=42  gc.epsilon.TestElasticTLAB
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:EpsilonTLABElasticity=100 gc.epsilon.TestElasticTLAB
  */
 
 import java.util.Random;
--- a/test/hotspot/jtreg/gc/epsilon/TestElasticTLABDecay.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestElasticTLABDecay.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,15 +21,17 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestElasticTLABDecay
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Epsilon is able to work with/without elastic TLABs
  *
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:-EpsilonElasticTLABDecay                               TestElasticTLABDecay
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:+EpsilonElasticTLABDecay -XX:EpsilonTLABDecayTime=1    TestElasticTLABDecay
- * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:+EpsilonElasticTLABDecay -XX:EpsilonTLABDecayTime=100  TestElasticTLABDecay
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:-EpsilonElasticTLABDecay                               gc.epsilon.TestElasticTLABDecay
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:+EpsilonElasticTLABDecay -XX:EpsilonTLABDecayTime=1    gc.epsilon.TestElasticTLABDecay
+ * @run main/othervm -Xmx1g -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -XX:+EpsilonElasticTLAB -XX:+EpsilonElasticTLABDecay -XX:EpsilonTLABDecayTime=100  gc.epsilon.TestElasticTLABDecay
  */
 
 import java.util.Random;
--- a/test/hotspot/jtreg/gc/epsilon/TestEpsilonEnabled.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestEpsilonEnabled.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestAlwaysPretouch
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Basic sanity test for Epsilon
  * @library /test/lib
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestEpsilonEnabled
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestEpsilonEnabled
  */
 
 import jdk.test.lib.Platform;
--- a/test/hotspot/jtreg/gc/epsilon/TestHelloWorld.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestHelloWorld.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,12 +21,14 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestHelloWorld
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Basic sanity test for Epsilon
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestHelloWorld
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestHelloWorld
  */
 
 public class TestHelloWorld {
--- a/test/hotspot/jtreg/gc/epsilon/TestLogTrace.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestLogTrace.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,12 +21,15 @@
  * questions.
  */
 
+
+package gc.epsilon;
+
 /**
  * @test TestLogTrace
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Test that tracing does not crash Epsilon
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc*=trace TestLogTrace
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc*=trace gc.epsilon.TestLogTrace
  */
 
 public class TestLogTrace {
--- a/test/hotspot/jtreg/gc/epsilon/TestManyThreads.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestManyThreads.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,23 +21,25 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestManyThreads
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Test allocations from many threads
  *
- * @run main/othervm -Xmx128m -Xss512k                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
  *
- * @run main/othervm -Xmx128m -Xss512k                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
- * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
+ * @run main/othervm -Xmx128m -Xss512k -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestManyThreads
  */
 
 import java.util.concurrent.atomic.*;
--- a/test/hotspot/jtreg/gc/epsilon/TestMaxTLAB.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestMaxTLAB.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestMaxTLAB
  * @key gc
@@ -28,15 +30,15 @@
  * @summary Check EpsilonMaxTLAB options
  * @bug 8212177
  *
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1     TestMaxTLAB
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1K    TestMaxTLAB
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1M    TestMaxTLAB
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=12345 TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1     gc.epsilon.TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1K    gc.epsilon.TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1M    gc.epsilon.TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=12345 gc.epsilon.TestMaxTLAB
  *
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1     -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 TestMaxTLAB
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1K    -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 TestMaxTLAB
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1M    -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 TestMaxTLAB
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=12345 -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1     -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 gc.epsilon.TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1K    -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 gc.epsilon.TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=1M    -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 gc.epsilon.TestMaxTLAB
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -Xmx128m -XX:+UseEpsilonGC -XX:EpsilonMaxTLABSize=12345 -XX:+IgnoreUnrecognizedVMOptions -XX:ObjectAlignmentInBytes=16 gc.epsilon.TestMaxTLAB
  */
 
 public class TestMaxTLAB {
--- a/test/hotspot/jtreg/gc/epsilon/TestMemoryMXBeans.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestMemoryMXBeans.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  *
  */
 
+package gc.epsilon;
+
 /**
  * @test TestMemoryMXBeans
  * @key gc
@@ -28,9 +30,9 @@
  * @summary Test JMX memory beans
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC          -Xmx1g TestMemoryMXBeans   -1 1024
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xms1g   -Xmx1g TestMemoryMXBeans 1024 1024
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xms128m -Xmx1g TestMemoryMXBeans  128 1024
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC          -Xmx1g gc.epsilon.TestMemoryMXBeans   -1 1024
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xms1g   -Xmx1g gc.epsilon.TestMemoryMXBeans 1024 1024
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xms128m -Xmx1g gc.epsilon.TestMemoryMXBeans  128 1024
  */
 
 import java.lang.management.*;
--- a/test/hotspot/jtreg/gc/epsilon/TestMemoryPools.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestMemoryPools.java	Tue Jan 29 09:38:31 2019 -0500
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.epsilon;
+
 /**
  * @test TestMemoryPools
  * @key gc
@@ -29,7 +31,7 @@
  * @summary Test JMX memory pools
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xmx1g -Xms1g TestMemoryPools
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xmx1g -Xms1g gc.epsilon.TestMemoryPools
  */
 
 import java.lang.management.*;
--- a/test/hotspot/jtreg/gc/epsilon/TestObjects.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestObjects.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,23 +21,25 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestObjects
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Epsilon is able to allocate objects, and does not corrupt their state
  *
- * @run main/othervm -Xmx128m                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
+ * @run main/othervm -Xmx128m                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
  *
- * @run main/othervm -Xmx128m                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
- * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestObjects
+ * @run main/othervm -Xmx128m                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
+ * @run main/othervm -Xmx128m -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestObjects
  */
 
 import java.util.Random;
--- a/test/hotspot/jtreg/gc/epsilon/TestPrintHeapSteps.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestPrintHeapSteps.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,14 +21,16 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestPrintSteps
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Tests -XX:EpsilonPrintHeapSteps works
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonPrintHeapSteps=0    TestPrintHeapSteps
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonPrintHeapSteps=1    TestPrintHeapSteps
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonPrintHeapSteps=1000 TestPrintHeapSteps
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonPrintHeapSteps=0    gc.epsilon.TestPrintHeapSteps
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonPrintHeapSteps=1    gc.epsilon.TestPrintHeapSteps
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonPrintHeapSteps=1000 gc.epsilon.TestPrintHeapSteps
  */
 
 public class TestPrintHeapSteps {
--- a/test/hotspot/jtreg/gc/epsilon/TestRefArrays.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestRefArrays.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestRefArrays
  * @key gc
@@ -28,17 +30,17 @@
  * @summary Epsilon is able to allocate arrays, and does not corrupt their state
  * @library /test/lib
  *
- * @run main/othervm -Xmx1g                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
+ * @run main/othervm -Xmx1g                                        -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xint                                  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
  *
- * @run main/othervm -Xmx1g                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
- * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC TestRefArrays
+ * @run main/othervm -Xmx1g                                        -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xint                                  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp                         -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:TieredStopAtLevel=1 -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
+ * @run main/othervm -Xmx1g -Xbatch -Xcomp -XX:-TieredCompilation  -XX:-UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestRefArrays
  */
 
 import java.util.Random;
--- a/test/hotspot/jtreg/gc/epsilon/TestUpdateCountersSteps.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/epsilon/TestUpdateCountersSteps.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,15 +21,17 @@
  * questions.
  */
 
+package gc.epsilon;
+
 /**
  * @test TestUpdateCountersSteps
  * @key gc
  * @requires vm.gc.Epsilon & !vm.graal.enabled
  * @summary Test EpsilonUpdateCountersStep works
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=1    TestUpdateCountersSteps
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=10   TestUpdateCountersSteps
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=100  TestUpdateCountersSteps
- * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=1000 TestUpdateCountersSteps
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=1    gc.epsilon.TestUpdateCountersSteps
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=10   gc.epsilon.TestUpdateCountersSteps
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=100  gc.epsilon.TestUpdateCountersSteps
+ * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xlog:gc -XX:EpsilonUpdateCountersStep=1000 gc.epsilon.TestUpdateCountersSteps
  */
 
 public class TestUpdateCountersSteps {
--- a/test/hotspot/jtreg/gc/ergonomics/TestDynamicNumberOfGCThreads.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/ergonomics/TestDynamicNumberOfGCThreads.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.ergonomics;
+
 /*
  * @test TestDynamicNumberOfGCThreads
  * @bug 8017462
@@ -31,7 +33,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestDynamicNumberOfGCThreads
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.ergonomics.TestDynamicNumberOfGCThreads
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/ergonomics/TestInitialGCThreadLogging.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/ergonomics/TestInitialGCThreadLogging.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.ergonomics;
+
 /*
  * @test TestInitialGCThreadLogging
  * @bug 8157240
@@ -31,7 +33,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestInitialGCThreadLogging
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.ergonomics.TestInitialGCThreadLogging
  */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/g1/Test2GbHeap.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/Test2GbHeap.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test Test2GbHeap
  * @key gc regression
@@ -32,6 +34,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.g1.Test2GbHeap
  */
 
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/g1/TestConcurrentSystemGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestConcurrentSystemGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestConcurrentSystemGC
  * @bug 8195158
@@ -31,7 +33,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm -XX:+UseG1GC -XX:+ExplicitGCInvokesConcurrent -Xmx8m -Xms8m -XX:G1HeapRegionSize=1m TestConcurrentSystemGC
+ * @run main/othervm -XX:+UseG1GC -XX:+ExplicitGCInvokesConcurrent -Xmx8m -Xms8m -XX:G1HeapRegionSize=1m gc.g1.TestConcurrentSystemGC
  */
 
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegions.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegions.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestEagerReclaimHumongousRegions
  * @bug 8027959
@@ -31,6 +33,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.g1.TestEagerReclaimHumongousRegions
  */
 
 import java.util.regex.Pattern;
@@ -41,7 +44,7 @@
 import jdk.test.lib.process.ProcessTools;
 import jdk.test.lib.Asserts;
 
-class ReclaimRegionFast {
+class TestEagerReclaimHumongousRegionsReclaimRegionFast {
     public static final int M = 1024*1024;
 
     public static LinkedList<Object> garbageList = new LinkedList<Object>();
@@ -84,7 +87,7 @@
             "-Xmx128M",
             "-Xmn16M",
             "-Xlog:gc",
-            ReclaimRegionFast.class.getName());
+            TestEagerReclaimHumongousRegionsReclaimRegionFast.class.getName());
 
         Pattern p = Pattern.compile("Full GC");
 
--- a/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegionsClearMarkBits.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegionsClearMarkBits.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestEagerReclaimHumongousRegionsClearMarkBits
  * @bug 8051973
@@ -31,6 +33,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.g1.TestEagerReclaimHumongousRegionsClearMarkBits
  */
 
 import java.util.ArrayList;
@@ -48,7 +51,7 @@
     public ObjectWithSomeRefs other4;
 }
 
-class ReclaimRegionFast {
+class TestEagerReclaimHumongousRegionsClearMarkBitsReclaimRegionFast {
     public static final long MAX_MILLIS_FOR_RUN = 50 * 1000; // The maximum runtime for the actual test.
 
     public static final int M = 1024*1024;
@@ -127,7 +130,7 @@
             "-XX:ConcGCThreads=1", // Want to make marking as slow as possible.
             "-XX:+IgnoreUnrecognizedVMOptions", // G1VerifyBitmaps is develop only.
             "-XX:+G1VerifyBitmaps",
-            ReclaimRegionFast.class.getName());
+            TestEagerReclaimHumongousRegionsClearMarkBitsReclaimRegionFast.class.getName());
         OutputAnalyzer output = new OutputAnalyzer(pb.start());
         output.shouldHaveExitValue(0);
     }
--- a/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegionsLog.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegionsLog.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestEagerReclaimHumongousRegionsLog
  * @summary Check that G1 reports humongous eager reclaim statistics correctly.
@@ -31,7 +33,7 @@
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver TestEagerReclaimHumongousRegionsLog
+ * @run driver gc.g1.TestEagerReclaimHumongousRegionsLog
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegionsWithRefs.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestEagerReclaimHumongousRegionsWithRefs.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestEagerReclaimHumongousRegionsWithRefs
  * @bug 8048179
@@ -34,6 +36,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.g1.TestEagerReclaimHumongousRegionsWithRefs
  */
 
 import java.util.regex.Pattern;
@@ -48,7 +51,7 @@
   Object ref;
 }
 
-class ReclaimRegionFast {
+class TestEagerReclaimHumongousRegionsWithRefsReclaimRegionFast {
 
     public static final int M = 1024*1024;
 
@@ -96,7 +99,7 @@
             "-Xmx128M",
             "-Xmn16M",
             "-Xlog:gc",
-            ReclaimRegionFast.class.getName());
+            TestEagerReclaimHumongousRegionsWithRefsReclaimRegionFast.class.getName());
 
         Pattern p = Pattern.compile("Full GC");
 
--- a/test/hotspot/jtreg/gc/g1/TestEdenSurvivorLessThanMax.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestEdenSurvivorLessThanMax.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestEdenSurvivorLessThanMax
  * @bug 8152724
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -Xbootclasspath/a:. -Xlog:gc+heap=debug -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseG1GC -Xmx64M -Xms64M -Xmn50M -XX:SurvivorRatio=1 TestEdenSurvivorLessThanMax
+ * @run main/othervm -Xbootclasspath/a:. -Xlog:gc+heap=debug -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseG1GC -Xmx64M -Xms64M -Xmn50M -XX:SurvivorRatio=1 gc.g1.TestEdenSurvivorLessThanMax
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/g1/TestFromCardCacheIndex.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestFromCardCacheIndex.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,3 +1,26 @@
+/*
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
 /*
  * @test TestFromCardCacheIndex.java
  * @bug 8196485
@@ -11,8 +34,9 @@
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. -Xms20M -Xmx20M -XX:+UseCompressedOops -XX:G1HeapRegionSize=1M -XX:HeapBaseMinAddress=2199011721216 -XX:+UseG1GC -verbose:gc TestFromCardCacheIndex
+ * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. -Xms20M -Xmx20M -XX:+UseCompressedOops -XX:G1HeapRegionSize=1M -XX:HeapBaseMinAddress=2199011721216 -XX:+UseG1GC -verbose:gc gc.g1.TestFromCardCacheIndex
  */
+package gc.g1;
 
 import sun.hotspot.WhiteBox;
 
--- a/test/hotspot/jtreg/gc/g1/TestG1TraceEagerReclaimHumongousObjects.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestG1TraceEagerReclaimHumongousObjects.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestG1TraceEagerReclaimHumongousObjects
  * @bug 8058801 8048179
@@ -31,6 +33,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.g1.TestG1TraceEagerReclaimHumongousObjects
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/g1/TestGCLogMessages.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestGCLogMessages.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestGCLogMessages
  * @bug 8035406 8027295 8035398 8019342 8027959 8048179 8027962 8069330 8076463 8150630 8160055 8177059 8166191
@@ -33,7 +35,7 @@
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main TestGCLogMessages
+ * @run main gc.g1.TestGCLogMessages
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
@@ -106,7 +108,6 @@
         new LogMessageWithLevel("Skipped Cards", Level.DEBUG),
         // Ext Root Scan
         new LogMessageWithLevel("Thread Roots", Level.TRACE),
-        new LogMessageWithLevel("StringTable Roots", Level.TRACE),
         new LogMessageWithLevel("Universe Roots", Level.TRACE),
         new LogMessageWithLevel("JNI Handles Roots", Level.TRACE),
         new LogMessageWithLevel("ObjectSynchronizer Roots", Level.TRACE),
@@ -124,7 +125,9 @@
         new LogMessageWithLevel("Redirtied Cards", Level.TRACE),
         // Misc Top-level
         new LogMessageWithLevel("Code Roots Purge", Level.DEBUG),
-        new LogMessageWithLevel("String Dedup Fixup", Level.DEBUG),
+        new LogMessageWithLevel("String Deduplication", Level.DEBUG),
+        new LogMessageWithLevel("Queue Fixup", Level.DEBUG),
+        new LogMessageWithLevel("Table Fixup", Level.DEBUG),
         new LogMessageWithLevel("Expand Heap After Collection", Level.DEBUG),
         // Free CSet
         new LogMessageWithLevel("Free Collection Set", Level.DEBUG),
@@ -143,6 +146,9 @@
         new LogMessageWithLevel("Reference Processing", Level.DEBUG),
         // VM internal reference processing
         new LogMessageWithLevel("Weak Processing", Level.DEBUG),
+        new LogMessageWithLevel("JNI weak processing", Level.DEBUG),
+        new LogMessageWithLevel("StringTable weak processing", Level.DEBUG),
+        new LogMessageWithLevel("VM weak processing", Level.DEBUG),
 
         new LogMessageWithLevelC2OrJVMCIOnly("DerivedPointerTable Update", Level.DEBUG),
         new LogMessageWithLevel("Start New Collection Set", Level.DEBUG),
--- a/test/hotspot/jtreg/gc/g1/TestGreyReclaimedHumongousObjects.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestGreyReclaimedHumongousObjects.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestGreyReclaimedHumongousObjects.java
  * @bug 8069367 8185278
@@ -32,7 +34,7 @@
  *      -XX:+UnlockExperimentalVMOptions
  *          -XX:+G1EagerReclaimHumongousObjects
  *          -XX:+G1EagerReclaimHumongousObjectsWithStaleRefs
- *      TestGreyReclaimedHumongousObjects 1048576 90
+ *      gc.g1.TestGreyReclaimedHumongousObjects 1048576 90
  */
 
 // This test spawns a bunch of threads, each of them rapidly
--- a/test/hotspot/jtreg/gc/g1/TestHumongousAllocInitialMark.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestHumongousAllocInitialMark.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestHumongousAllocInitialMark
  * @bug 7168848
@@ -29,6 +31,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.g1.TestHumongousAllocInitialMark
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/g1/TestHumongousAllocNearlyFullRegion.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestHumongousAllocNearlyFullRegion.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestHumongousAllocNearlyFullRegion
  * @bug 8143587
@@ -29,7 +31,7 @@
  * @requires vm.gc.G1
  * @modules java.base/jdk.internal.misc
  * @library /test/lib
- * @run driver TestHumongousAllocNearlyFullRegion
+ * @run driver gc.g1.TestHumongousAllocNearlyFullRegion
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/g1/TestHumongousCodeCacheRoots.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestHumongousCodeCacheRoots.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test
  * @key regression gc
@@ -33,7 +35,7 @@
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  * @summary Humongous objects may have references from the code cache
- * @run main TestHumongousCodeCacheRoots
+ * @run main gc.g1.TestHumongousCodeCacheRoots
 */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/g1/TestHumongousRemsetsMatch.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestHumongousRemsetsMatch.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestHumongousRemSetsMatch
  * @bug 8205426
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -Xmx512M -Xms512M -Xmn10M -XX:ParallelGCThreads=2 -XX:-UseDynamicNumberOfGCThreads -XX:+UseG1GC -XX:+WhiteBoxAPI -XX:G1HeapRegionSize=1M -XX:+VerifyAfterGC -Xlog:gc,gc+remset+tracking=trace TestHumongousRemsetsMatch
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -Xmx512M -Xms512M -Xmn10M -XX:ParallelGCThreads=2 -XX:-UseDynamicNumberOfGCThreads -XX:+UseG1GC -XX:+WhiteBoxAPI -XX:G1HeapRegionSize=1M -XX:+VerifyAfterGC -Xlog:gc,gc+remset+tracking=trace gc.g1.TestHumongousRemsetsMatch
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/g1/TestHumongousShrinkHeap.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestHumongousShrinkHeap.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestHumongousShrinkHeap
  * @bug 8036025 8056043
@@ -32,7 +34,7 @@
  * @modules java.management/sun.management
  * @run main/othervm -XX:-ExplicitGCInvokesConcurrent -XX:MinHeapFreeRatio=10
  * -XX:MaxHeapFreeRatio=12 -XX:+UseG1GC -XX:G1HeapRegionSize=1M -verbose:gc
- * TestHumongousShrinkHeap
+ * gc.g1.TestHumongousShrinkHeap
  */
 
 import com.sun.management.HotSpotDiagnosticMXBean;
--- a/test/hotspot/jtreg/gc/g1/TestInvalidateArrayCopy.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestInvalidateArrayCopy.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestInvalidateArrayCopy
  * @bug 8182050
@@ -28,7 +30,7 @@
  * @requires vm.gc.G1
  * @requires vm.debug
  * @key gc
- * @run main/othervm -XX:NewSize=1M -Xlog:gc -XX:MaxNewSize=1m -XX:-UseTLAB -XX:OldSize=63M -XX:MaxHeapSize=64M TestInvalidateArrayCopy
+ * @run main/othervm -XX:NewSize=1M -Xlog:gc -XX:MaxNewSize=1m -XX:-UseTLAB -XX:OldSize=63M -XX:MaxHeapSize=64M gc.g1.TestInvalidateArrayCopy
  */
 
 // The test allocates zero-sized arrays of j.l.O and tries to arraycopy random data into it so
--- a/test/hotspot/jtreg/gc/g1/TestJNIWeakG1/TestJNIWeakG1.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestJNIWeakG1/TestJNIWeakG1.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1.TestJNIWeakG1;
+
 /* @test
  * @bug 8166188 8178813
  * @summary Test return of JNI weak global refs during concurrent
@@ -38,13 +40,13 @@
  *    -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *    -XX:+UseG1GC -XX:MaxTenuringThreshold=2
  *    -Xint
- *    TestJNIWeakG1
+ *    gc.g1.TestJNIWeakG1.TestJNIWeakG1
  * @run main/othervm/native
  *    -Xbootclasspath/a:.
  *    -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *    -XX:+UseG1GC -XX:MaxTenuringThreshold=2
  *    -Xcomp
- *    TestJNIWeakG1
+ *    gc.g1.TestJNIWeakG1.TestJNIWeakG1
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/g1/TestJNIWeakG1/libTestJNIWeakG1.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestJNIWeakG1/libTestJNIWeakG1.c	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -30,13 +30,13 @@
 static jweak registered = NULL;
 
 JNIEXPORT void JNICALL
-Java_TestJNIWeakG1_registerObject(JNIEnv* env, jclass jclazz, jobject value) {
+Java_gc_g1_TestJNIWeakG1_TestJNIWeakG1_registerObject(JNIEnv* env, jclass jclazz, jobject value) {
   // assert registered == NULL
   registered = (*env)->NewWeakGlobalRef(env, value);
 }
 
 JNIEXPORT void JNICALL
-Java_TestJNIWeakG1_unregisterObject(JNIEnv* env, jclass jclazz) {
+Java_gc_g1_TestJNIWeakG1_TestJNIWeakG1_unregisterObject(JNIEnv* env, jclass jclazz) {
   if (registered != NULL) {
     (*env)->DeleteWeakGlobalRef(env, registered);
     registered = NULL;
@@ -45,14 +45,14 @@
 
 // Directly return jweak, to be resolved by native call's return value handling.
 JNIEXPORT jobject JNICALL
-Java_TestJNIWeakG1_getReturnedWeak(JNIEnv* env, jclass jclazz) {
+Java_gc_g1_TestJNIWeakG1_TestJNIWeakG1_getReturnedWeak(JNIEnv* env, jclass jclazz) {
   // assert registered != NULL
   return registered;
 }
 
 // Directly resolve jweak and return the result.
 JNIEXPORT jobject JNICALL
-Java_TestJNIWeakG1_getResolvedWeak(JNIEnv* env, jclass jclazz) {
+Java_gc_g1_TestJNIWeakG1_TestJNIWeakG1_getResolvedWeak(JNIEnv* env, jclass jclazz) {
   // assert registered != NULL
   return (*env)->NewLocalRef(env, registered);
 }
--- a/test/hotspot/jtreg/gc/g1/TestLargePageUseForAuxMemory.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestLargePageUseForAuxMemory.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestLargePageUseForAuxMemory.java
  * @summary Test that auxiliary data structures are allocated using large pages if available.
@@ -32,7 +34,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -XX:+UseG1GC -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+IgnoreUnrecognizedVMOptions -XX:+UseLargePages TestLargePageUseForAuxMemory
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UseG1GC -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+IgnoreUnrecognizedVMOptions -XX:+UseLargePages gc.g1.TestLargePageUseForAuxMemory
  */
 
 import java.lang.Math;
--- a/test/hotspot/jtreg/gc/g1/TestNoEagerReclaimOfHumongousRegions.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestNoEagerReclaimOfHumongousRegions.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestNoEagerReclaimOfHumongousRegions
  * @bug 8139424
@@ -34,7 +36,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -Xlog:gc,gc+humongous=debug -XX:+UseG1GC -XX:MaxTenuringThreshold=0 -XX:G1RSetSparseRegionEntries=32 -XX:G1HeapRegionSize=1m -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestNoEagerReclaimOfHumongousRegions
+ * @run main/othervm -Xbootclasspath/a:. -Xlog:gc,gc+humongous=debug -XX:+UseG1GC -XX:MaxTenuringThreshold=0 -XX:G1RSetSparseRegionEntries=32 -XX:G1HeapRegionSize=1m -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.g1.TestNoEagerReclaimOfHumongousRegions
  */
 
 import java.util.LinkedList;
--- a/test/hotspot/jtreg/gc/g1/TestPLABOutput.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestPLABOutput.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestPLABOutput
  * @bug 8140585
@@ -31,7 +33,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver TestPLABOutput
+ * @run driver gc.g1.TestPLABOutput
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/g1/TestPLABSizeBounds.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestPLABSizeBounds.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestPLABSizeBounds
  * @bug 8134857
@@ -30,6 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.g1.TestPLABSizeBounds
  */
 
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/g1/TestParallelAlwaysPreTouch.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestParallelAlwaysPreTouch.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test
  * @key gc regression
@@ -29,7 +31,7 @@
  * Allocates a few humongous objects that will be allocated by expanding the heap, causing concurrent parallel
  * pre-touch.
  * @requires vm.gc.G1
- * @run main/othervm -XX:+UseG1GC -Xms10M -Xmx100m -XX:G1HeapRegionSize=1M -XX:+AlwaysPreTouch -XX:PreTouchParallelChunkSize=512k -Xlog:gc+ergo+heap=debug,gc+heap=debug,gc=debug TestParallelAlwaysPreTouch
+ * @run main/othervm -XX:+UseG1GC -Xms10M -Xmx100m -XX:G1HeapRegionSize=1M -XX:+AlwaysPreTouch -XX:PreTouchParallelChunkSize=512k -Xlog:gc+ergo+heap=debug,gc+heap=debug,gc=debug gc.g1.TestParallelAlwaysPreTouch
  */
 
 public class TestParallelAlwaysPreTouch {
--- a/test/hotspot/jtreg/gc/g1/TestPeriodicCollection.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestPeriodicCollection.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestPeriodicCollection
  * @requires vm.gc.G1
@@ -29,8 +31,8 @@
  * @library /test/lib /
  * @modules java.base/jdk.internal.misc
  * @modules java.management/sun.management
- * @run main/othervm -XX:MaxNewSize=32M -XX:InitialHeapSize=48M -Xmx128M -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=25 -XX:+UseG1GC -XX:G1PeriodicGCInterval=3000 -XX:+G1PeriodicGCInvokesConcurrent -Xlog:gc,gc+periodic=debug,gc+ergo+heap=debug TestPeriodicCollection
- * @run main/othervm -XX:MaxNewSize=32M -XX:InitialHeapSize=48M -Xmx128M -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=25 -XX:+UseG1GC -XX:G1PeriodicGCInterval=3000 -XX:-G1PeriodicGCInvokesConcurrent -Xlog:gc,gc+periodic=debug,gc+ergo+heap=debug TestPeriodicCollection
+ * @run main/othervm -XX:MaxNewSize=32M -XX:InitialHeapSize=48M -Xmx128M -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=25 -XX:+UseG1GC -XX:G1PeriodicGCInterval=3000 -XX:+G1PeriodicGCInvokesConcurrent -Xlog:gc,gc+periodic=debug,gc+ergo+heap=debug gc.g1.TestPeriodicCollection
+ * @run main/othervm -XX:MaxNewSize=32M -XX:InitialHeapSize=48M -Xmx128M -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=25 -XX:+UseG1GC -XX:G1PeriodicGCInterval=3000 -XX:-G1PeriodicGCInvokesConcurrent -Xlog:gc,gc+periodic=debug,gc+ergo+heap=debug gc.g1.TestPeriodicCollection
  */
 
 import com.sun.management.HotSpotDiagnosticMXBean;
@@ -61,7 +63,7 @@
 
     public static void main(String[] args) {
         MemoryUsage muInitial = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
-        MemoryUsagePrinter.printMemoryUsage("initial", muInitial);
+        printMemoryUsage("initial", muInitial);
 
         if (gcOccurred()) {
           System.out.println("At least one garbage collection occurred. Exiting as this may have already shrunk the heap.");
@@ -75,7 +77,7 @@
         }
 
         MemoryUsage muAfter = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
-        MemoryUsagePrinter.printMemoryUsage("after", muAfter);
+        printMemoryUsage("after", muAfter);
 
         assertLessThan(muAfter.getCommitted(), muInitial.getCommitted(), String.format(
                 "committed free heap size is not less than committed full heap size, heap hasn't been shrunk?%n"
@@ -88,12 +90,6 @@
                     .getVMOption(MAX_FREE_RATIO_FLAG_NAME).getValue()
         ));
     }
-}
-
-/**
- * Prints memory usage to standard output
- */
-class MemoryUsagePrinter {
 
     public static final NumberFormat NF = Helpers.numberFormatter();
 
--- a/test/hotspot/jtreg/gc/g1/TestPeriodicLogMessages.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestPeriodicLogMessages.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestPeriodicLogMessages
  * @bug 8216490
@@ -29,6 +31,7 @@
  * @library /test/lib /
  * @modules java.base/jdk.internal.misc
  * @modules java.management/sun.management
+ * @run main gc.g1.TestPeriodicLogMessages
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/g1/TestPrintRegionRememberedSetInfo.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestPrintRegionRememberedSetInfo.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestPrintRegionRememberedSetInfo
  * @key gc
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main TestPrintRegionRememberedSetInfo
+ * @run main gc.g1.TestPrintRegionRememberedSetInfo
  * @author thomas.schatzl@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/g1/TestRegionAlignment.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestRegionAlignment.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,14 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestRegionAlignment.java
  * @bug 8013791
  * @requires vm.gc.G1
  * @summary Make sure that G1 ergonomics pick a heap size that is aligned with the region size
- * @run main/othervm -XX:+UseG1GC -XX:G1HeapRegionSize=32m -XX:MaxRAM=555m TestRegionAlignment
+ * @run main/othervm -XX:+UseG1GC -XX:G1HeapRegionSize=32m -XX:MaxRAM=555m gc.g1.TestRegionAlignment
  *
  * When G1 ergonomically picks a maximum heap size it must be aligned to the region size.
  * This test tries to get the VM to pick a small and unaligned heap size (by using MaxRAM=555) and a
--- a/test/hotspot/jtreg/gc/g1/TestRegionLivenessPrint.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestRegionLivenessPrint.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestRegionLivenessPrint.java
  * @bug 8151920
@@ -32,7 +34,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseG1GC -Xmx128M -XX:G1HeapRegionSize=1m -Xlog:gc+liveness=trace TestRegionLivenessPrint
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseG1GC -Xmx128M -XX:G1HeapRegionSize=1m -Xlog:gc+liveness=trace gc.g1.TestRegionLivenessPrint
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/g1/TestRemsetLogging.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestRemsetLogging.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,18 +21,21 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestRemsetLogging.java
  * @requires vm.gc.G1
  * @bug 8013895 8129977 8145534
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management/sun.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  * @summary Verify output of -Xlog:gc+remset*=trace
- * @run main TestRemsetLogging
+ * @run main gc.g1.TestRemsetLogging
  *
  * Test the output of -Xlog:gc+remset*=trace in conjunction with G1SummarizeRSetStatsPeriod.
  */
--- a/test/hotspot/jtreg/gc/g1/TestRemsetLoggingPerRegion.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestRemsetLoggingPerRegion.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,18 +21,21 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestRemsetLoggingPerRegion.java
  * @requires vm.gc.G1
  * @bug 8014078 8129977 8145534
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management/sun.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  * @summary Verify output of -Xlog:gc+remset*=trace in regards to per-region type output
- * @run main TestRemsetLoggingPerRegion
+ * @run main gc.g1.TestRemsetLoggingPerRegion
  */
 
 public class TestRemsetLoggingPerRegion {
--- a/test/hotspot/jtreg/gc/g1/TestRemsetLoggingThreads.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestRemsetLoggingThreads.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestRemsetLoggingThreads
  * @requires vm.gc.G1
@@ -31,6 +33,7 @@
  *          java.management/sun.management
  * @summary Ensure that various values of worker threads/concurrent
  * refinement threads do not crash the VM.
+ * @run main gc.g1.TestRemsetLoggingThreads
  */
 
 import java.util.regex.Matcher;
--- a/test/hotspot/jtreg/gc/g1/TestRemsetLoggingTools.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestRemsetLoggingTools.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * Common helpers for TestRemsetLogging* tests
  */
--- a/test/hotspot/jtreg/gc/g1/TestSharedArchiveWithPreTouch.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestSharedArchiveWithPreTouch.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test
  * @bug 8169703
@@ -31,7 +33,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main TestSharedArchiveWithPreTouch
+ * @run main gc.g1.TestSharedArchiveWithPreTouch
  */
 
 import java.util.List;
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 import jdk.test.lib.Asserts;
 import jdk.test.lib.Platform;
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData00.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData00.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkAuxiliaryData00
  * @bug 8038423 8061715
@@ -28,12 +30,13 @@
  * G1ConcRSLogCacheSize and ObjectAlignmentInBytes options values
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/timeout=720 TestShrinkAuxiliaryData00
+ * @run main/timeout=720 gc.g1.TestShrinkAuxiliaryData00
  */
 public class TestShrinkAuxiliaryData00 {
 
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData05.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData05.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkAuxiliaryData05
  * @bug 8038423 8061715 8078405
@@ -28,12 +30,13 @@
  * G1ConcRSLogCacheSize and ObjectAlignmentInBytes options values
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/timeout=720 TestShrinkAuxiliaryData05
+ * @run main/timeout=720 gc.g1.TestShrinkAuxiliaryData05
  */
 public class TestShrinkAuxiliaryData05 {
 
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData10.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData10.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkAuxiliaryData10
  * @bug 8038423 8061715 8078405
@@ -28,12 +30,13 @@
  * G1ConcRSLogCacheSize and ObjectAlignmentInBytes options values
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/timeout=720 TestShrinkAuxiliaryData10
+ * @run main/timeout=720 gc.g1.TestShrinkAuxiliaryData10
  */
 public class TestShrinkAuxiliaryData10 {
 
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData15.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData15.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkAuxiliaryData15
  * @bug 8038423 8061715 8078405
@@ -28,12 +30,13 @@
  * G1ConcRSLogCacheSize and ObjectAlignmentInBytes options values
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/timeout=720 TestShrinkAuxiliaryData15
+ * @run main/timeout=720 gc.g1.TestShrinkAuxiliaryData15
  */
 public class TestShrinkAuxiliaryData15 {
 
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData20.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData20.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkAuxiliaryData20
  * @bug 8038423 8061715 8078405
@@ -28,12 +30,13 @@
  * G1ConcRSLogCacheSize and ObjectAlignmentInBytes options values
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
   *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/timeout=720 TestShrinkAuxiliaryData20
+ * @run main/timeout=720 gc.g1.TestShrinkAuxiliaryData20
  */
 public class TestShrinkAuxiliaryData20 {
 
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData25.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData25.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkAuxiliaryData25
  * @bug 8038423 8061715 8078405
@@ -28,12 +30,13 @@
  * G1ConcRSLogCacheSize and ObjectAlignmentInBytes options values
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/timeout=720 TestShrinkAuxiliaryData25
+ * @run main/timeout=720 gc.g1.TestShrinkAuxiliaryData25
  */
 public class TestShrinkAuxiliaryData25 {
 
--- a/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData30.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkAuxiliaryData30.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkAuxiliaryData30
  * @bug 8038423 8061715 8078405
@@ -28,12 +30,13 @@
  * G1ConcRSLogCacheSize and ObjectAlignmentInBytes options values
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/timeout=720 TestShrinkAuxiliaryData30
+ * @run main/timeout=720 gc.g1.TestShrinkAuxiliaryData30
  */
 public class TestShrinkAuxiliaryData30 {
 
--- a/test/hotspot/jtreg/gc/g1/TestShrinkDefragmentedHeap.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkDefragmentedHeap.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /**
  * @test TestShrinkDefragmentedHeap
  * @bug 8038423 8129590
@@ -34,6 +36,7 @@
  * @library /test/lib /
  * @modules java.base/jdk.internal.misc
  *          java.management/sun.management
+ * @run main gc.g1.TestShrinkDefragmentedHeap
  */
 import java.lang.management.ManagementFactory;
 import java.lang.management.MemoryUsage;
--- a/test/hotspot/jtreg/gc/g1/TestShrinkToOneRegion.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestShrinkToOneRegion.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,14 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestShrinkToOneRegion.java
  * @bug 8013872
  * @requires vm.gc.G1
  * @summary Shrinking the heap down to one region used to hit an assert
- * @run main/othervm -XX:+UseG1GC -XX:G1HeapRegionSize=32m -Xmx256m TestShrinkToOneRegion
+ * @run main/othervm -XX:+UseG1GC -XX:G1HeapRegionSize=32m -Xmx256m gc.g1.TestShrinkToOneRegion
  *
  * Doing a System.gc() without having allocated many objects will shrink the heap.
  * With a large region size we will shrink the heap to one region.
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationAgeThreshold.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationAgeThreshold.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestStringDeduplicationAgeThreshold
  * @summary Test string deduplication age threshold
@@ -28,9 +30,11 @@
  * @key gc
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc:open
  * @modules java.base/java.lang:open
  *          java.management
+ * @run main gc.g1.TestStringDeduplicationAgeThreshold
  */
 
 public class TestStringDeduplicationAgeThreshold {
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationFullGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationFullGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestStringDeduplicationFullGC
  * @summary Test string deduplication during full GC
@@ -28,9 +30,11 @@
  * @key gc
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc:open
  * @modules java.base/java.lang:open
  *          java.management
+ * @run main gc.g1.TestStringDeduplicationFullGC
  */
 
 public class TestStringDeduplicationFullGC {
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationInterned.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationInterned.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestStringDeduplicationInterned
  * @summary Test string deduplication of interned strings
@@ -28,9 +30,11 @@
  * @key gc
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc:open
  * @modules java.base/java.lang:open
  *          java.management
+ * @run main gc.g1.TestStringDeduplicationInterned
  */
 
 public class TestStringDeduplicationInterned {
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationPrintOptions.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationPrintOptions.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestStringDeduplicationPrintOptions
  * @summary Test string deduplication print options
@@ -28,9 +30,11 @@
  * @key gc
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc:open
  * @modules java.base/java.lang:open
  *          java.management
+ * @run main gc.g1.TestStringDeduplicationPrintOptions
  */
 
 public class TestStringDeduplicationPrintOptions {
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationTableRehash.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationTableRehash.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestStringDeduplicationTableRehash
  * @summary Test string deduplication table rehash
@@ -28,9 +30,11 @@
  * @key gc
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc:open
  * @modules java.base/java.lang:open
  *          java.management
+ * @run main gc.g1.TestStringDeduplicationTableRehash
  */
 
 public class TestStringDeduplicationTableRehash {
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationTableResize.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationTableResize.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestStringDeduplicationTableResize
  * @summary Test string deduplication table resize
@@ -28,9 +30,11 @@
  * @key gc
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc:open
  * @modules java.base/java.lang:open
  *          java.management
+ * @run main gc.g1.TestStringDeduplicationTableResize
  */
 
 public class TestStringDeduplicationTableResize {
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationTools.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationTools.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * Common code for string deduplication tests
  */
--- a/test/hotspot/jtreg/gc/g1/TestStringDeduplicationYoungGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestStringDeduplicationYoungGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestStringDeduplicationYoungGC
  * @summary Test string deduplication during young GC
@@ -28,9 +30,11 @@
  * @key gc
  * @requires vm.gc.G1
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc:open
  * @modules java.base/java.lang:open
  *          java.management
+ * @run main gc.g1.TestStringDeduplicationYoungGC
  */
 
 public class TestStringDeduplicationYoungGC {
--- a/test/hotspot/jtreg/gc/g1/TestStringTableStats.java	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,60 +0,0 @@
-/*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-/*
- * @test TestStringTableStats.java
- * @bug 8027476 8027455
- * @summary Ensure that the G1TraceStringTableScrubbing prints the expected message.
- * @key gc
- * @requires vm.gc.G1
- * @library /test/lib
- * @modules java.base/jdk.internal.misc
- *          java.management
- */
-
-import jdk.test.lib.process.OutputAnalyzer;
-import jdk.test.lib.process.ProcessTools;
-
-public class TestStringTableStats {
-  public static void main(String[] args) throws Exception {
-
-    ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
-                                                              "-XX:+UnlockExperimentalVMOptions",
-                                                              "-Xlog:gc+stringtable=trace",
-                                                              SystemGCTest.class.getName());
-
-    OutputAnalyzer output = new OutputAnalyzer(pb.start());
-
-    System.out.println("Output:\n" + output.getOutput());
-
-    output.shouldMatch("GC\\(\\d+\\) Cleaned string table");
-    output.shouldHaveExitValue(0);
-  }
-
-  static class SystemGCTest {
-    public static void main(String [] args) {
-      System.out.println("Calling System.gc()");
-      System.gc();
-    }
-  }
-}
--- a/test/hotspot/jtreg/gc/g1/TestVerifyGCType.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/TestVerifyGCType.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.g1;
+
 /*
  * @test TestVerifyGCType
  * @summary Test the VerifyGCType flag to ensure basic functionality.
@@ -29,7 +31,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver TestVerifyGCType
+ * @run driver gc.g1.TestVerifyGCType
  */
 
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/g1/mixedgc/TestOldGenCollectionUsage.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/g1/mixedgc/TestOldGenCollectionUsage.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,19 +21,20 @@
  * questions.
  */
 
+package gc.g1.mixedgc;
+
 /*
  * @test TestOldGenCollectionUsage.java
  * @bug 8195115
  * @summary G1 Old Gen's CollectionUsage.used is zero after mixed GC which is incorrect
  * @key gc
  * @requires vm.gc.G1
- * @requires vm.opt.MaxGCPauseMillis == "null"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  * @modules java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm -Xbootclasspath/a:. -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -verbose:gc -XX:SurvivorRatio=1 -Xmx14m -Xms14m -XX:MaxTenuringThreshold=1 -XX:InitiatingHeapOccupancyPercent=100 -XX:-G1UseAdaptiveIHOP -XX:G1MixedGCCountTarget=4 -XX:MaxGCPauseMillis=30000 -XX:G1HeapRegionSize=1m -XX:G1HeapWastePercent=0 -XX:G1MixedGCLiveThresholdPercent=100 TestOldGenCollectionUsage
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -verbose:gc -XX:SurvivorRatio=1 -Xmx14m -Xms14m -XX:MaxTenuringThreshold=1 -XX:InitiatingHeapOccupancyPercent=100 -XX:-G1UseAdaptiveIHOP -XX:G1MixedGCCountTarget=4 -XX:MaxGCPauseMillis=30000 -XX:G1HeapRegionSize=1m -XX:G1HeapWastePercent=0 -XX:G1MixedGCLiveThresholdPercent=100 gc.g1.mixedgc.TestOldGenCollectionUsage
  */
 
 import jdk.test.lib.Asserts;
--- a/test/hotspot/jtreg/gc/libCriticalNative.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/libCriticalNative.c	Tue Jan 29 09:38:31 2019 -0500
@@ -23,7 +23,7 @@
 
 #include "jni.h"
 
-JNIEXPORT jlong JNICALL JavaCritical_CriticalNativeStress_sum1
+JNIEXPORT jlong JNICALL JavaCritical_gc_CriticalNative_sum1
   (jint length, jlong* a) {
   jlong sum = 0;
   jint index;
@@ -34,7 +34,7 @@
   return sum;
 }
 
-JNIEXPORT jlong JNICALL  JavaCritical_CriticalNativeStress_sum2
+JNIEXPORT jlong JNICALL  JavaCritical_gc_CriticalNative_sum2
   (jlong a1, jint a2_length, jint* a2, jint a4_length, jint* a4, jint a6_length, jlong* a6, jint a8_length, jint* a8) {
   jlong sum = a1;
   jint index;
@@ -56,7 +56,7 @@
   return sum;
 }
 
-JNIEXPORT jlong JNICALL Java_CriticalNativeStress_sum1
+JNIEXPORT jlong JNICALL Java_gc_CriticalNative_sum1
   (JNIEnv *env, jclass jclazz, jlongArray a) {
   jlong sum = 0;
   jsize len = (*env)->GetArrayLength(env, a);
@@ -70,7 +70,7 @@
   return sum;
 }
 
-JNIEXPORT jlong JNICALL Java_CriticalNativeStress_sum2
+JNIEXPORT jlong JNICALL Java_gc_CriticalNative_sum2
   (JNIEnv *env, jclass jclazz, jlong a1, jintArray a2, jintArray a3, jlongArray a4, jintArray a5) {
   jlong sum = a1;
   jsize index;
@@ -112,12 +112,12 @@
 }
 
 
-JNIEXPORT jboolean JNICALL JavaCritical_CriticalNativeArgs_isNull
+JNIEXPORT jboolean JNICALL JavaCritical_gc_CriticalNative_isNull
   (jint length, jint* a) {
   return (a == NULL) && (length == 0);
 }
 
-JNIEXPORT jboolean JNICALL Java_CriticalNativeArgs_isNull
+JNIEXPORT jboolean JNICALL Java_gc_CriticalNative_isNull
   (JNIEnv *env, jclass jclazz, jintArray a) {
   jboolean is_null;
   jsize len = (*env)->GetArrayLength(env, a);
--- a/test/hotspot/jtreg/gc/logging/TestDeprecatedPrintFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/logging/TestDeprecatedPrintFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.logging;
+
 /*
  * @test TestDeprecatedPrintFlags
  * @bug 8145180
@@ -29,6 +31,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.logging.TestDeprecatedPrintFlags
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
@@ -42,7 +45,7 @@
 public class TestDeprecatedPrintFlags {
 
     public static void testPrintGC() throws Exception {
-        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+PrintGC", "DoGC");
+        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+PrintGC", DoGC.class.getName());
         OutputAnalyzer output = new OutputAnalyzer(pb.start());
         output.shouldContain("-XX:+PrintGC is deprecated. Will use -Xlog:gc instead.");
         output.shouldNotContain("PrintGCDetails");
@@ -52,7 +55,7 @@
     }
 
     public static void testPrintGCDetails() throws Exception {
-        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+PrintGCDetails", "DoGC");
+        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+PrintGCDetails", DoGC.class.getName());
         OutputAnalyzer output = new OutputAnalyzer(pb.start());
         output.shouldContain("-XX:+PrintGCDetails is deprecated. Will use -Xlog:gc* instead.");
         output.shouldNotContain("PrintGC is deprecated");
@@ -63,7 +66,7 @@
 
     public static void testXloggc() throws Exception {
         String fileName = "gc-test.log";
-        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xloggc:" + fileName, "DoGC");
+        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xloggc:" + fileName, DoGC.class.getName());
         OutputAnalyzer output = new OutputAnalyzer(pb.start());
         output.shouldContain("-Xloggc is deprecated. Will use -Xlog:gc:gc-test.log instead.");
         output.shouldNotContain("PrintGCDetails");
@@ -80,7 +83,7 @@
 
     public static void testXloggcWithPrintGCDetails() throws Exception {
         String fileName = "gc-test.log";
-        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+PrintGCDetails", "-Xloggc:" + fileName, "DoGC");
+        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+PrintGCDetails", "-Xloggc:" + fileName, DoGC.class.getName());
         OutputAnalyzer output = new OutputAnalyzer(pb.start());
         output.shouldContain("-XX:+PrintGCDetails is deprecated. Will use -Xlog:gc* instead.");
         output.shouldContain("-Xloggc is deprecated. Will use -Xlog:gc:gc-test.log instead.");
--- a/test/hotspot/jtreg/gc/logging/TestGCId.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/logging/TestGCId.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.logging;
+
 /*
  * @test TestGCId
  * @bug 8043607
@@ -32,7 +34,7 @@
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestGCId
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.logging.TestGCId
  */
 
 import jdk.test.lib.process.OutputAnalyzer;
--- a/test/hotspot/jtreg/gc/logging/TestMetaSpaceLog.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/logging/TestMetaSpaceLog.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * Copyright (c) 2018, Google and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
@@ -22,6 +22,8 @@
  * questions.
  */
 
+package gc.logging;
+
 import java.io.File;
 import java.net.URL;
 import java.net.URLClassLoader;
@@ -47,7 +49,7 @@
  *
  * @compile TestMetaSpaceLog.java
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main TestMetaSpaceLog
+ * @run main gc.logging.TestMetaSpaceLog
  */
 
 public class TestMetaSpaceLog {
--- a/test/hotspot/jtreg/gc/logging/TestPrintReferences.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/logging/TestPrintReferences.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.logging;
+
 /*
  * @test TestPrintReferences
  * @bug 8136991 8186402 8186465 8188245
@@ -29,6 +31,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.logging.TestPrintReferences
  */
 
 import java.lang.ref.SoftReference;
--- a/test/hotspot/jtreg/gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.metaspace;
+
 /**
  * @test CompressedClassSpaceSizeInJmapHeap
  * @bug 8004924
@@ -30,7 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:CompressedClassSpaceSize=50m CompressedClassSpaceSizeInJmapHeap
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:CompressedClassSpaceSize=50m gc.metaspace.CompressedClassSpaceSizeInJmapHeap
  */
 
 import jdk.test.lib.JDKToolLauncher;
--- a/test/hotspot/jtreg/gc/metaspace/G1AddMetaspaceDependency.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/G1AddMetaspaceDependency.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,12 +21,15 @@
  * questions.
  */
 
+package gc.metaspace;
+
 /*
  * @test G1AddMetaspaceDependency
  * @bug 8010196
  * @requires vm.gc.G1
+ * @library /
  * @summary Checks that we don't get locking problems when adding metaspace dependencies with the G1 update buffer monitor
- * @run main/othervm -XX:+UseG1GC -XX:G1UpdateBufferSize=1 G1AddMetaspaceDependency
+ * @run main/othervm -XX:+UseG1GC -XX:G1UpdateBufferSize=1 gc.metaspace.G1AddMetaspaceDependency
  */
 
 import java.io.InputStream;
@@ -47,12 +50,12 @@
     }
   }
 
-  static final String a_name = G1AddMetaspaceDependency.class.getName() + "$A";
-  static final String b_name = G1AddMetaspaceDependency.class.getName() + "$B";
+  static final String a_name = A.class.getName();
+  static final String b_name = B.class.getName();
 
   public static void main(String... args) throws Exception {
-    final byte[] a_bytes = getClassBytes(a_name + ".class");
-    final byte[] b_bytes = getClassBytes(b_name + ".class");
+    final byte[] a_bytes = getClassBytes(a_name.replace('.', '/') + ".class");
+    final byte[] b_bytes = getClassBytes(b_name.replace('.', '/') + ".class");
 
     for (int i = 0; i < 1000; i += 1) {
       runTest(a_bytes, b_bytes);
--- a/test/hotspot/jtreg/gc/metaspace/InputArguments.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/InputArguments.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.metaspace;
+
 import java.lang.management.RuntimeMXBean;
 import java.lang.management.ManagementFactory;
 import java.util.List;
--- a/test/hotspot/jtreg/gc/metaspace/TestCapacityUntilGCWrapAround.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/TestCapacityUntilGCWrapAround.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.metaspace;
+
 /*
  * @test
  * @key gc
@@ -31,7 +33,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestCapacityUntilGCWrapAround
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.metaspace.TestCapacityUntilGCWrapAround
  */
 
 import sun.hotspot.WhiteBox;
--- a/test/hotspot/jtreg/gc/metaspace/TestMetaspaceCMSCancel.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/TestMetaspaceCMSCancel.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -20,6 +20,8 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
+
+package gc.metaspace;
 import jdk.test.lib.process.ProcessTools;
 import jdk.test.lib.process.OutputAnalyzer;
 import jdk.test.lib.Asserts;
@@ -33,7 +35,7 @@
  * @modules java.base/jdk.internal.misc
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main/othervm TestMetaspaceCMSCancel
+ * @run main/othervm gc.metaspace.TestMetaspaceCMSCancel
  */
 
 
--- a/test/hotspot/jtreg/gc/metaspace/TestMetaspaceInitialization.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/TestMetaspaceInitialization.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,15 @@
  * questions.
  */
 
+package gc.metaspace;
+
 import java.util.ArrayList;
 
 /* @test TestMetaspaceInitialization
  * @bug 8024945
  * @summary Tests to initialize metaspace with a very low MetaspaceSize
  * @modules java.base/jdk.internal.misc
- * @run main/othervm -XX:MetaspaceSize=0 TestMetaspaceInitialization
+ * @run main/othervm -XX:MetaspaceSize=0 gc.metaspace.TestMetaspaceInitialization
  */
 public class TestMetaspaceInitialization {
     private class Internal {
--- a/test/hotspot/jtreg/gc/metaspace/TestMetaspaceMemoryPool.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/TestMetaspaceMemoryPool.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.metaspace;
+
 import java.util.List;
 import java.lang.management.*;
 import jdk.test.lib.Platform;
@@ -34,12 +36,13 @@
  *          MemoryManagerMXBean is created.
  * @requires vm.bits == 64 & vm.opt.final.UseCompressedOops == true
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops TestMetaspaceMemoryPool
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:MaxMetaspaceSize=60m TestMetaspaceMemoryPool
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers TestMetaspaceMemoryPool
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:CompressedClassSpaceSize=60m TestMetaspaceMemoryPool
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops gc.metaspace.TestMetaspaceMemoryPool
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:MaxMetaspaceSize=60m gc.metaspace.TestMetaspaceMemoryPool
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers gc.metaspace.TestMetaspaceMemoryPool
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:CompressedClassSpaceSize=60m gc.metaspace.TestMetaspaceMemoryPool
  */
 public class TestMetaspaceMemoryPool {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/metaspace/TestMetaspacePerfCounters.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/TestMetaspacePerfCounters.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.metaspace;
+
 import java.lang.management.GarbageCollectorMXBean;
 import java.util.List;
 import java.util.ArrayList;
@@ -45,13 +47,13 @@
  *          java.compiler
  *          java.management/sun.management
  *          jdk.internal.jvmstat/sun.jvmstat.monitor
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UseSerialGC TestMetaspacePerfCounters
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UseParallelGC -XX:+UseParallelOldGC TestMetaspacePerfCounters
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UseG1GC TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UseSerialGC gc.metaspace.TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UseParallelGC -XX:+UseParallelOldGC gc.metaspace.TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UseG1GC gc.metaspace.TestMetaspacePerfCounters
  *
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UseSerialGC TestMetaspacePerfCounters
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UseParallelGC -XX:+UseParallelOldGC TestMetaspacePerfCounters
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UseG1GC TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UseSerialGC gc.metaspace.TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UseParallelGC -XX:+UseParallelOldGC gc.metaspace.TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UseG1GC gc.metaspace.TestMetaspacePerfCounters
  */
 
 /* @test TestMetaspacePerfCountersShenandoah
@@ -64,8 +66,8 @@
  *          java.compiler
  *          java.management/sun.management
  *          jdk.internal.jvmstat/sun.jvmstat.monitor
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC TestMetaspacePerfCounters
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UsePerfData -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC gc.metaspace.TestMetaspacePerfCounters
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UsePerfData -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC gc.metaspace.TestMetaspacePerfCounters
  */
 public class TestMetaspacePerfCounters {
     public static Class fooClass = null;
--- a/test/hotspot/jtreg/gc/metaspace/TestMetaspaceSizeFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/TestMetaspaceSizeFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.metaspace;
+
 import jdk.test.lib.Asserts;
 import jdk.test.lib.process.ProcessTools;
 import jdk.test.lib.process.OutputAnalyzer;
@@ -33,6 +35,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.metaspace.TestMetaspaceSizeFlags
  */
 public class TestMetaspaceSizeFlags {
   public static final long K = 1024L;
--- a/test/hotspot/jtreg/gc/metaspace/TestPerfCountersAndMemoryPools.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/metaspace/TestPerfCountersAndMemoryPools.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.metaspace;
+
 import java.util.List;
 import java.lang.management.*;
 
@@ -38,8 +40,8 @@
  * @modules java.base/jdk.internal.misc
  *          java.management
  *          jdk.internal.jvmstat/sun.jvmstat.monitor
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UseSerialGC -XX:+UsePerfData -Xint TestPerfCountersAndMemoryPools
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UseSerialGC -XX:+UsePerfData -Xint TestPerfCountersAndMemoryPools
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:-UseCompressedClassPointers -XX:+UseSerialGC -XX:+UsePerfData -Xint gc.metaspace.TestPerfCountersAndMemoryPools
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:+UseSerialGC -XX:+UsePerfData -Xint gc.metaspace.TestPerfCountersAndMemoryPools
  */
 public class TestPerfCountersAndMemoryPools {
     public static void main(String[] args) throws Exception {
--- a/test/hotspot/jtreg/gc/nvdimm/TestAllocateOldGenAt.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/nvdimm/TestAllocateOldGenAt.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,12 +21,15 @@
  * questions.
  */
 
+package gc.nvdimm;
+
 /* @test TestAllocateOldGenAt.java
  * @key gc
  * @summary Test to check allocation of Java Heap with AllocateOldGenAt option
  * @requires vm.gc=="null" & os.family != "aix"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
+ * @run main gc.nvdimm.TestAllocateOldGenAt
  */
 
 import jdk.test.lib.JDKToolFinder;
--- a/test/hotspot/jtreg/gc/nvdimm/TestAllocateOldGenAtError.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/nvdimm/TestAllocateOldGenAtError.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,12 +21,15 @@
  * questions.
  */
 
+package gc.nvdimm;
+
 /* @test TestAllocateOldGenAtError.java
  * @key gc
  * @summary Test to check correct handling of non-existent directory passed to AllocateOldGenAt option
  * @requires vm.gc=="null" & os.family != "aix"
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
+ * @run main gc.nvdimm.TestAllocateOldGenAtError
  */
 
 import java.io.File;
--- a/test/hotspot/jtreg/gc/nvdimm/TestAllocateOldGenAtMultiple.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/nvdimm/TestAllocateOldGenAtMultiple.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.nvdimm;
+
 /* @test TestAllocateOldGenAtMultiple.java
  * @key gc
  * @summary Test to check allocation of Java Heap with AllocateOldGenAt option. Has multiple sub-tests to cover different code paths.
@@ -28,7 +30,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  * @requires vm.bits == "64"
- * @run main TestAllocateOldGenAtMultiple -XX:+UseG1GC
+ * @run main gc.nvdimm.TestAllocateOldGenAtMultiple -XX:+UseG1GC
  */
 
 import jdk.test.lib.JDKToolFinder;
--- a/test/hotspot/jtreg/gc/nvdimm/TestHumongousObjectsOnNvdimm.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/nvdimm/TestHumongousObjectsOnNvdimm.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.nvdimm;
+
 /*
  * @test TestHumongousObjectsOnNvdimm
  * @summary Check that humongous objects reside in nv-dimm
@@ -28,7 +30,7 @@
  * @requires vm.gc=="null" & os.family != "aix"
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main TestHumongousObjectsOnNvdimm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
+ * @run main gc.nvdimm.TestHumongousObjectsOnNvdimm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                                  -XX:+WhiteBoxAPI
  */
 
--- a/test/hotspot/jtreg/gc/nvdimm/TestOldObjectsOnNvdimm.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/nvdimm/TestOldObjectsOnNvdimm.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.nvdimm;
+
 /*
  * @test TestOldObjectsOnNvdimm
  * @summary Check that objects in old generation reside in dram.
@@ -28,7 +30,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main TestOldObjectsOnNvdimm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
+ * @run main gc.nvdimm.TestOldObjectsOnNvdimm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                                  -XX:+WhiteBoxAPI
  */
 
--- a/test/hotspot/jtreg/gc/nvdimm/TestYoungObjectsOnDram.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/nvdimm/TestYoungObjectsOnDram.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.nvdimm;
+
 /*
  * @test TestYoungObjectsOnDram
  * @summary Check that objects in young generation reside in dram.
@@ -28,7 +30,7 @@
  * @library /test/lib
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run main TestYoungObjectsOnDram -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
+ * @run main gc.nvdimm.TestYoungObjectsOnDram -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                                  -XX:+WhiteBoxAPI
  */
 
--- a/test/hotspot/jtreg/gc/parallel/AdaptiveGCBoundary.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/parallel/AdaptiveGCBoundary.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.parallel;
+
 /**
  * @test AdaptiveGCBoundary
  * @key gc regression
@@ -29,7 +31,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
- * @run main/othervm AdaptiveGCBoundary
+ * @run main/othervm gc.parallel.AdaptiveGCBoundary
  * @author jon.masamitsu@oracle.com
  */
 
--- a/test/hotspot/jtreg/gc/parallel/TestDynShrinkHeap.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/parallel/TestDynShrinkHeap.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.parallel;
+
 /**
  * @test TestDynShrinkHeap
  * @bug 8016479
@@ -29,7 +31,7 @@
  * @modules java.base/jdk.internal.misc
  * @modules jdk.management
  * @library /test/lib /
- * @run main/othervm -XX:+UseAdaptiveSizePolicyWithSystemGC -XX:+UseParallelGC -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 -Xmx1g -verbose:gc TestDynShrinkHeap
+ * @run main/othervm -XX:+UseAdaptiveSizePolicyWithSystemGC -XX:+UseParallelGC -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 -Xmx1g -verbose:gc gc.parallel.TestDynShrinkHeap
  */
 import jdk.test.lib.management.DynamicVMOption;
 import java.lang.management.ManagementFactory;
--- a/test/hotspot/jtreg/gc/parallel/TestPrintGCDetailsVerbose.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/parallel/TestPrintGCDetailsVerbose.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.parallel;
+
 /*
  * @test TestPrintGCDetailsVerbose
  * @bug 8016740 8177963
@@ -28,8 +30,8 @@
  * @key gc
  * @requires vm.gc.Parallel
  * @modules java.base/jdk.internal.misc
- * @run main/othervm -Xmx50m -XX:+UseParallelGC -Xlog:gc*=trace TestPrintGCDetailsVerbose
- * @run main/othervm -Xmx50m -XX:+UseParallelGC -XX:GCTaskTimeStampEntries=1 -Xlog:gc*=trace TestPrintGCDetailsVerbose
+ * @run main/othervm -Xmx50m -XX:+UseParallelGC -Xlog:gc*=trace gc.parallel.TestPrintGCDetailsVerbose
+ * @run main/othervm -Xmx50m -XX:+UseParallelGC -XX:GCTaskTimeStampEntries=1 -Xlog:gc*=trace gc.parallel.TestPrintGCDetailsVerbose
  */
 public class TestPrintGCDetailsVerbose {
 
--- a/test/hotspot/jtreg/gc/serial/HeapChangeLogging.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/serial/HeapChangeLogging.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.serial;
+
 /*
  * @test HeapChangeLogging.java
  * @bug 8027440
@@ -28,7 +30,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  * @summary Allocate to get a promotion failure and verify that that heap change logging is present.
- * @run main HeapChangeLogging
+ * @run main gc.serial.HeapChangeLogging
  */
 
 import java.util.regex.Matcher;
@@ -39,7 +41,7 @@
 
 public class HeapChangeLogging {
   public static void main(String[] args) throws Exception {
-    ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xmx128m", "-Xmn100m", "-XX:+UseSerialGC", "-Xlog:gc", "HeapFiller");
+    ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xmx128m", "-Xmn100m", "-XX:+UseSerialGC", "-Xlog:gc", HeapFiller.class.getName());
     OutputAnalyzer output = new OutputAnalyzer(pb.start());
     String stdout = output.getStdout();
     System.out.println(stdout);
--- a/test/hotspot/jtreg/gc/startup_warnings/TestCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/startup_warnings/TestCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.startup_warnings;
+
 /*
  * @test TestCMS
  * @key gc
@@ -30,6 +32,7 @@
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
  *          java.management
+ * @run main gc.startup_warnings.TestCMS
  */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/startup_warnings/TestG1.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/startup_warnings/TestG1.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.startup_warnings;
+
 /*
 * @test TestG1
 * @key gc
@@ -29,6 +31,7 @@
 * @library /test/lib
 * @modules java.base/jdk.internal.misc
 *          java.management
+* @run main gc.startup_warnings.TestG1
 */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/startup_warnings/TestParallelGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/startup_warnings/TestParallelGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.startup_warnings;
+
 /*
 * @test TestParallelGC
 * @key gc
@@ -29,6 +31,7 @@
 * @library /test/lib
 * @modules java.base/jdk.internal.misc
 *          java.management
+* @run main gc.startup_warnings.TestParallelGC
 */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/startup_warnings/TestParallelScavengeSerialOld.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/startup_warnings/TestParallelScavengeSerialOld.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.startup_warnings;
+
 /*
 * @test TestParallelScavengeSerialOld
 * @key gc
@@ -29,6 +31,7 @@
 * @library /test/lib
 * @modules java.base/jdk.internal.misc
 *          java.management
+* @run main gc.startup_warnings.TestParallelScavengeSerialOld
 */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/startup_warnings/TestSerialGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/startup_warnings/TestSerialGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.startup_warnings;
+
 /*
 * @test TestSerialGC
 * @key gc
@@ -29,6 +31,7 @@
 * @library /test/lib
 * @modules java.base/jdk.internal.misc
 *          java.management
+* @run main gc.startup_warnings.TestSerialGC
 */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/startup_warnings/TestShenandoah.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/startup_warnings/TestShenandoah.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.startup_warnings;
+
 /*
 * @test TestShenandoah
 * @key gc
@@ -30,6 +32,7 @@
 * @library /test/lib
 * @modules java.base/jdk.internal.misc
 *          java.management
+* @run main gc.startup_warnings.TestShenandoah
 */
 
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/gc/stress/CriticalNativeStress.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/CriticalNativeStress.java	Tue Jan 29 09:38:31 2019 -0500
@@ -20,47 +20,44 @@
  * questions.
  *
  */
+package gc.stress;
 
 import java.util.Random;
 
+import gc.CriticalNative;
+
 /*
  * @test CriticalNativeStressEpsilon
  * @key gc
  * @bug 8199868
+ * @library /
  * @requires (os.arch =="x86_64" | os.arch == "amd64") & vm.gc.Epsilon & !vm.graal.enabled
  * @summary test argument pinning by nmethod wrapper of critical native method
- * @run main/othervm/native -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xcomp -Xmx1G -XX:+CriticalJNINatives CriticalNativeStress
+ * @run main/othervm/native -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC -Xcomp -Xmx1G -XX:+CriticalJNINatives gc.stress.CriticalNativeStress
  */
 
 /*
  * @test CriticalNativeStressShenandoah
  * @key gc
  * @bug 8199868
+ * @library /
  * @requires (os.arch =="x86_64" | os.arch == "amd64") & vm.gc.Shenandoah & !vm.graal.enabled
  * @summary test argument pinning by nmethod wrapper of critical native method
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:-ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeStress
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:+ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeStress
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:-ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.stress.CriticalNativeStress
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive    -XX:+ShenandoahDegeneratedGC -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.stress.CriticalNativeStress
  *
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeStress
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC                                       -Xcomp -Xmx256M -XX:+CriticalJNINatives CriticalNativeStress
- * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal  -Xcomp -Xmx512M -XX:+CriticalJNINatives CriticalNativeStress
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.stress.CriticalNativeStress
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC                                       -Xcomp -Xmx256M -XX:+CriticalJNINatives gc.stress.CriticalNativeStress
+ * @run main/othervm/native -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal  -Xcomp -Xmx512M -XX:+CriticalJNINatives gc.stress.CriticalNativeStress
  */
 public class CriticalNativeStress {
     private static Random rand = new Random();
-    static {
-        System.loadLibrary("CriticalNative");
-    }
 
     // CYCLES and THREAD_PER_CASE are used to tune the tests for different GC settings,
     // so that they can execrise enough GC cycles and not OOM
     private static int CYCLES = Integer.getInteger("cycles", 3);
     private static int THREAD_PER_CASE = Integer.getInteger("threadPerCase", 1);
 
-    static native long sum1(long[] a);
-
-    // More than 6 parameters
-    static native long sum2(long a1, int[] a2, int[] a3, long[] a4, int[] a5);
-
     static long sum(long[] a) {
         long sum = 0;
         for (int index = 0; index < a.length; index ++) {
@@ -112,7 +109,7 @@
         }
 
         // Compare results for correctness.
-        long native_sum = sum1(arr);
+        long native_sum = CriticalNative.sum1(arr);
         long java_sum = sum(arr);
         if (native_sum != java_sum) {
             StringBuffer sb = new StringBuffer("Sums do not match: native = ")
@@ -158,7 +155,7 @@
         }
 
         // Compare results for correctness.
-        long native_sum = sum2(a1, a2, a3, a4, a5);
+        long native_sum = CriticalNative.sum2(a1, a2, a3, a4, a5);
         long java_sum = a1 + sum(a2) + sum(a3) + sum(a4) + sum(a5);
         if (native_sum != java_sum) {
             StringBuffer sb = new StringBuffer("Sums do not match: native = ")
--- a/test/hotspot/jtreg/gc/stress/TestJNIBlockFullGC/TestJNIBlockFullGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/TestJNIBlockFullGC/TestJNIBlockFullGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * Copyright (c) 2017, SAP SE and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
@@ -22,12 +22,14 @@
  * questions.
  */
 
+package gc.stress.TestJNIBlockFullGC;
+
 /*
  * @test TestJNIBlockFullGC
  * @summary Check that in G1 a Full GC to reclaim space can not be blocked out by the GC locker.
  * @key gc
  * @requires vm.gc.G1
- * @run main/othervm/native -Xmx64m -XX:+UseG1GC -Xlog:gc=info,gc+alloc=trace -XX:MaxGCPauseMillis=10 TestJNIBlockFullGC 10 10000 10000 10000 30000 10000 0.7
+ * @run main/othervm/native -Xmx64m -XX:+UseG1GC -Xlog:gc=info,gc+alloc=trace -XX:MaxGCPauseMillis=10 gc.stress.TestJNIBlockFullGC.TestJNIBlockFullGC 10 10000 10000 10000 30000 10000 0.7
  */
 
 import java.lang.ref.SoftReference;
--- a/test/hotspot/jtreg/gc/stress/TestMultiThreadStressRSet.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/TestMultiThreadStressRSet.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.stress;
+
 import java.io.PrintStream;
 import java.util.ArrayList;
 import java.util.List;
@@ -43,15 +45,15 @@
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *   -XX:+UseG1GC -XX:G1SummarizeRSetStatsPeriod=1 -Xlog:gc
- *   -Xmx500m -XX:G1HeapRegionSize=1m -XX:MaxGCPauseMillis=1000 TestMultiThreadStressRSet 10 4
+ *   -Xmx500m -XX:G1HeapRegionSize=1m -XX:MaxGCPauseMillis=1000 gc.stress.TestMultiThreadStressRSet 10 4
  *
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *   -XX:+UseG1GC -XX:G1SummarizeRSetStatsPeriod=100 -Xlog:gc
- *   -Xmx1G -XX:G1HeapRegionSize=8m -XX:MaxGCPauseMillis=1000 TestMultiThreadStressRSet 60 16
+ *   -Xmx1G -XX:G1HeapRegionSize=8m -XX:MaxGCPauseMillis=1000 gc.stress.TestMultiThreadStressRSet 60 16
  *
  * @run main/othervm/timeout=700 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *   -XX:+UseG1GC -XX:G1SummarizeRSetStatsPeriod=100 -Xlog:gc
- *   -Xmx500m -XX:G1HeapRegionSize=1m -XX:MaxGCPauseMillis=1000 TestMultiThreadStressRSet 600 32
+ *   -Xmx500m -XX:G1HeapRegionSize=1m -XX:MaxGCPauseMillis=1000 gc.stress.TestMultiThreadStressRSet 600 32
  */
 public class TestMultiThreadStressRSet {
 
--- a/test/hotspot/jtreg/gc/stress/TestReclaimStringsLeaksMemory.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/TestReclaimStringsLeaksMemory.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.stress;
+
 /*
  * @test TestReclaimStringsLeaksMemory
  * @bug 8180048
@@ -29,12 +31,12 @@
  * @key gc
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
- * @run main/othervm TestReclaimStringsLeaksMemory
- * @run main/othervm TestReclaimStringsLeaksMemory -XX:+UseSerialGC
- * @run main/othervm TestReclaimStringsLeaksMemory -XX:+UseParallelGC
- * @run main/othervm TestReclaimStringsLeaksMemory -XX:+UseParallelGC -XX:-UseParallelOldGC
- * @run main/othervm TestReclaimStringsLeaksMemory -XX:+UseConcMarkSweepGC
- * @run main/othervm TestReclaimStringsLeaksMemory -XX:+UseG1GC
+ * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory
+ * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseSerialGC
+ * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseParallelGC
+ * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseParallelGC -XX:-UseParallelOldGC
+ * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseConcMarkSweepGC
+ * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseG1GC
  */
 
 import java.util.Arrays;
--- a/test/hotspot/jtreg/gc/stress/TestStressG1Humongous.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/TestStressG1Humongous.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.stress;
+
 /*
  * @test TestStressG1Humongous
  * @key gc stress
@@ -29,7 +31,7 @@
  * @requires !vm.flightRecorder
  * @library /test/lib
  * @modules java.base/jdk.internal.misc
- * @run driver/timeout=1300 TestStressG1Humongous
+ * @run driver/timeout=1300 gc.stress.TestStressG1Humongous
  */
 
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/stress/TestStressIHOPMultiThread.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/TestStressIHOPMultiThread.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.stress;
+
  /*
  * @test TestStressIHOPMultiThread
  * @bug 8148397
@@ -31,27 +33,27 @@
  *              -XX:+UseG1GC -XX:G1HeapRegionSize=1m -XX:+G1UseAdaptiveIHOP
  *              -Xlog:gc+ihop=debug,gc+ihop+ergo=debug,gc+ergo=debug:TestStressIHOPMultiThread1.log
  *              -Dtimeout=2 -DheapUsageMinBound=30 -DheapUsageMaxBound=80
- *              -Dthreads=2 TestStressIHOPMultiThread
+ *              -Dthreads=2 gc.stress.TestStressIHOPMultiThread
  * @run main/othervm/timeout=200 -Xmx256m -XX:G1HeapWastePercent=0 -XX:G1MixedGCCountTarget=1
  *              -XX:+UseG1GC -XX:G1HeapRegionSize=2m -XX:+G1UseAdaptiveIHOP
  *              -Xlog:gc+ihop=debug,gc+ihop+ergo=debug,gc+ergo=debug:TestStressIHOPMultiThread2.log
  *              -Dtimeout=2 -DheapUsageMinBound=60 -DheapUsageMaxBound=90
- *              -Dthreads=3 TestStressIHOPMultiThread
+ *              -Dthreads=3 gc.stress.TestStressIHOPMultiThread
  * @run main/othervm/timeout=200 -Xmx256m -XX:G1HeapWastePercent=0 -XX:G1MixedGCCountTarget=1
  *              -XX:+UseG1GC -XX:G1HeapRegionSize=4m -XX:-G1UseAdaptiveIHOP
  *              -Xlog:gc+ihop=debug,gc+ihop+ergo=debug,gc+ergo=debug:TestStressIHOPMultiThread3.log
  *              -Dtimeout=2 -DheapUsageMinBound=40 -DheapUsageMaxBound=90
- *              -Dthreads=5 TestStressIHOPMultiThread
+ *              -Dthreads=5 gc.stress.TestStressIHOPMultiThread
  * @run main/othervm/timeout=200 -Xmx128m -XX:G1HeapWastePercent=0 -XX:G1MixedGCCountTarget=1
  *              -XX:+UseG1GC -XX:G1HeapRegionSize=8m -XX:+G1UseAdaptiveIHOP
  *              -Xlog:gc+ihop=debug,gc+ihop+ergo=debug,gc+ergo=debug:TestStressIHOPMultiThread4.log
  *              -Dtimeout=2 -DheapUsageMinBound=20 -DheapUsageMaxBound=90
- *              -Dthreads=10 TestStressIHOPMultiThread
+ *              -Dthreads=10 gc.stress.TestStressIHOPMultiThread
  * @run main/othervm/timeout=200 -Xmx512m -XX:G1HeapWastePercent=0 -XX:G1MixedGCCountTarget=1
  *              -XX:+UseG1GC -XX:G1HeapRegionSize=16m -XX:+G1UseAdaptiveIHOP
  *              -Xlog:gc+ihop=debug,gc+ihop+ergo=debug,gc+ergo=debug:TestStressIHOPMultiThread5.log
  *              -Dtimeout=2 -DheapUsageMinBound=20 -DheapUsageMaxBound=90
- *              -Dthreads=17 TestStressIHOPMultiThread
+ *              -Dthreads=17 gc.stress.TestStressIHOPMultiThread
  */
 
 import java.util.ArrayList;
--- a/test/hotspot/jtreg/gc/stress/TestStressRSetCoarsening.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/TestStressRSetCoarsening.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.stress;
+
 import java.util.concurrent.TimeoutException;
 import sun.hotspot.WhiteBox;
 
@@ -41,27 +43,27 @@
  * @run main/othervm/timeout=300
  *     -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *     -XX:+UseG1GC -Xlog:gc* -XX:MaxGCPauseMillis=1000
- *     -Xmx500m -XX:G1HeapRegionSize=1m TestStressRSetCoarsening  1  0 300
+ *     -Xmx500m -XX:G1HeapRegionSize=1m gc.stress.TestStressRSetCoarsening  1  0 300
  * @run main/othervm/timeout=300
  *     -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *     -XX:+UseG1GC -Xlog:gc* -XX:MaxGCPauseMillis=1000
- *     -Xmx500m -XX:G1HeapRegionSize=8m TestStressRSetCoarsening  1 10 300
+ *     -Xmx500m -XX:G1HeapRegionSize=8m gc.stress.TestStressRSetCoarsening  1 10 300
  * @run main/othervm/timeout=300
  *     -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *     -XX:+UseG1GC -Xlog:gc* -XX:MaxGCPauseMillis=1000
- *     -Xmx500m -XX:G1HeapRegionSize=32m TestStressRSetCoarsening 42 10 300
+ *     -Xmx500m -XX:G1HeapRegionSize=32m gc.stress.TestStressRSetCoarsening 42 10 300
  * @run main/othervm/timeout=300
  *     -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *     -XX:+UseG1GC -Xlog:gc* -XX:MaxGCPauseMillis=1000
- *     -Xmx500m -XX:G1HeapRegionSize=1m TestStressRSetCoarsening  2 0 300
+ *     -Xmx500m -XX:G1HeapRegionSize=1m gc.stress.TestStressRSetCoarsening  2 0 300
  * @run main/othervm/timeout=1800
  *     -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *     -XX:+UseG1GC -Xlog:gc* -XX:MaxGCPauseMillis=1000
- *     -Xmx1G -XX:G1HeapRegionSize=1m TestStressRSetCoarsening 500 0  1800
+ *     -Xmx1G -XX:G1HeapRegionSize=1m gc.stress.TestStressRSetCoarsening 500 0  1800
  * @run main/othervm/timeout=1800
  *     -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  *     -XX:+UseG1GC -Xlog:gc* -XX:MaxGCPauseMillis=1000
- *     -Xmx1G -XX:G1HeapRegionSize=1m TestStressRSetCoarsening 10  10 1800
+ *     -Xmx1G -XX:G1HeapRegionSize=1m gc.stress.TestStressRSetCoarsening 10  10 1800
  */
 
 /**
--- a/test/hotspot/jtreg/gc/stress/gcbasher/ByteCursor.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/ByteCursor.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 class ByteCursor {
     private int offset;
     private byte[] data;
--- a/test/hotspot/jtreg/gc/stress/gcbasher/Bytecode.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/Bytecode.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 class Bytecode {
     public static final int IINC               = 132;
     public static final int TABLESWITCH        = 170;
--- a/test/hotspot/jtreg/gc/stress/gcbasher/ClassInfo.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/ClassInfo.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.util.HashSet;
 import java.util.Set;
 
--- a/test/hotspot/jtreg/gc/stress/gcbasher/ConstantPoolEntry.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/ConstantPoolEntry.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 class ConstantPoolEntry {
     private int index;
     private String value;
--- a/test/hotspot/jtreg/gc/stress/gcbasher/Decompiler.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/Decompiler.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 class Decompiler {
     private ByteCursor cursor;
     private ClassInfo ci;
--- a/test/hotspot/jtreg/gc/stress/gcbasher/Dependency.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/Dependency.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 class Dependency {
     private String methodName;
     private String methodDescriptor;
--- a/test/hotspot/jtreg/gc/stress/gcbasher/MethodInfo.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/MethodInfo.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 class MethodInfo {
     private String name;
     private String descriptor;
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasher.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasher.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 import java.net.URI;
 import java.nio.file.FileSystems;
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithAllocateHeapAt.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithAllocateHeapAt.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 
 /*
  * @test TestGCBasherWithAllocateHeapAt
  * @key gc stress
+ * @library /
  * @requires vm.gc.G1
  * @requires vm.flavor == "server" & !vm.emulatedClient & os.family != "aix"
  * @summary Stress Java heap allocation with AllocateHeapAt flag using GC basher.
- * @run main/othervm/timeout=500 -Xlog:gc*=info -Xmx256m -server -XX:+UseG1GC -XX:AllocateHeapAt=. TestGCBasherWithAllocateHeapAt 120000
+ * @run main/othervm/timeout=500 -Xlog:gc*=info -Xmx256m -server -XX:+UseG1GC -XX:AllocateHeapAt=. gc.stress.gcbasher.TestGCBasherWithAllocateHeapAt 120000
  */
 public class TestGCBasherWithAllocateHeapAt {
     public static void main(String[] args) throws IOException {
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 
 /*
  * @test TestGCBasherWithCMS
  * @key gc stress
+ * @library /
  * @requires vm.gc.ConcMarkSweep
  * @requires vm.flavor == "server" & !vm.emulatedClient & !vm.graal.enabled
  * @summary Stress the CMS GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseConcMarkSweepGC TestGCBasherWithCMS 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseConcMarkSweepGC gc.stress.gcbasher.TestGCBasherWithCMS 120000
  */
 public class TestGCBasherWithCMS {
     public static void main(String[] args) throws IOException {
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithG1.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithG1.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 
 /*
  * @test TestGCBasherWithG1
  * @key gc stress
+ * @library /
  * @requires vm.gc.G1
  * @requires vm.flavor == "server" & !vm.emulatedClient
  * @summary Stress the G1 GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseG1GC TestGCBasherWithG1 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseG1GC gc.stress.gcbasher.TestGCBasherWithG1 120000
  */
 public class TestGCBasherWithG1 {
     public static void main(String[] args) throws IOException {
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithParallel.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithParallel.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 
 /*
  * @test TestGCBasherWithParallel
  * @key gc stress
+ * @library /
  * @requires vm.gc.Parallel
  * @requires vm.flavor == "server" & !vm.emulatedClient
  * @summary Stress the Parallel GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseParallelGC -XX:-UseGCOverheadLimit TestGCBasherWithParallel 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseParallelGC -XX:-UseGCOverheadLimit gc.stress.gcbasher.TestGCBasherWithParallel 120000
  */
 public class TestGCBasherWithParallel {
     public static void main(String[] args) throws IOException {
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithSerial.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithSerial.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 
 /*
  * @test TestGCBasherWithSerial
  * @key gc stress
+ * @library /
  * @requires vm.gc.Serial
  * @requires vm.flavor == "server" & !vm.emulatedClient
  * @summary Stress the Serial GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseSerialGC TestGCBasherWithSerial 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx256m -server -XX:+UseSerialGC gc.stress.gcbasher.TestGCBasherWithSerial 120000
  */
 public class TestGCBasherWithSerial {
     public static void main(String[] args) throws IOException {
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithShenandoah.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithShenandoah.java	Tue Jan 29 09:38:31 2019 -0500
@@ -21,29 +21,32 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 
 /*
  * @test TestGCBasherWithShenandoah
  * @key gc
  * @key stress
+ * @library /
  * @requires vm.gc.Shenandoah
  * @requires vm.flavor == "server" & !vm.emulatedClient & !vm.graal.enabled
  * @summary Stress the Shenandoah GC by trying to make old objects more likely to be garbage than young objects.
  *
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive      -XX:+ShenandoahVerify -XX:+ShenandoahDegeneratedGC TestGCBasherWithShenandoah 120000
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive      -XX:+ShenandoahVerify -XX:-ShenandoahDegeneratedGC TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive      -XX:+ShenandoahVerify -XX:+ShenandoahDegeneratedGC gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive      -XX:+ShenandoahVerify -XX:-ShenandoahDegeneratedGC gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
  *
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                         -XX:+ShenandoahOOMDuringEvacALot TestGCBasherWithShenandoah 120000
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                         -XX:+ShenandoahAllocFailureALot  TestGCBasherWithShenandoah 120000
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                                                          TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                         -XX:+ShenandoahOOMDuringEvacALot gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                         -XX:+ShenandoahAllocFailureALot  gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                                                          gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
  *
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive     -XX:+ShenandoahVerify TestGCBasherWithShenandoah 120000
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal    -XX:+ShenandoahVerify TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive     -XX:+ShenandoahVerify gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal    -XX:+ShenandoahVerify gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
  *
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive                           TestGCBasherWithShenandoah 120000
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal                          TestGCBasherWithShenandoah 120000
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact                            TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive                           gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal                          gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx1g -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact                            gc.stress.gcbasher.TestGCBasherWithShenandoah 120000
  */
 public class TestGCBasherWithShenandoah {
     public static void main(String[] args) throws IOException {
--- a/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithZ.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithZ.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.gcbasher;
+
 import java.io.IOException;
 
 /*
  * @test TestGCBasherWithZ
  * @key gc stress
+ * @library /
  * @requires vm.gc.Z
  * @requires vm.flavor == "server" & !vm.emulatedClient & !vm.graal.enabled
  * @summary Stress ZGC
- * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx384m -server -XX:+UnlockExperimentalVMOptions -XX:+UseZGC TestGCBasherWithZ 120000
+ * @run main/othervm/timeout=200 -Xlog:gc*=info -Xmx384m -server -XX:+UnlockExperimentalVMOptions -XX:+UseZGC gc.stress.gcbasher.TestGCBasherWithZ 120000
  */
 public class TestGCBasherWithZ {
     public static void main(String[] args) throws IOException {
--- a/test/hotspot/jtreg/gc/stress/gclocker/TestGCLocker.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gclocker/TestGCLocker.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,8 @@
  *
  */
 
+package gc.stress.gclocker;
+
 // Stress the GC locker by calling GetPrimitiveArrayCritical while
 // concurrently filling up old gen.
 
--- a/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,12 +22,15 @@
  *
  */
 
+package gc.stress.gclocker;
+
 /*
  * @test TestGCLockerWithCMS
  * @key gc
+ * @library /
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Stress CMS' GC locker by calling GetPrimitiveArrayCritical while concurrently filling up old gen.
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UseConcMarkSweepGC TestGCLockerWithCMS
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UseConcMarkSweepGC gc.stress.gclocker.TestGCLockerWithCMS
  */
 public class TestGCLockerWithCMS {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithG1.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithG1.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,12 +22,15 @@
  *
  */
 
+package gc.stress.gclocker;
+
 /*
  * @test TestGCLockerWithG1
  * @key gc
+ * @library /
  * @requires vm.gc.G1
  * @summary Stress G1's GC locker by calling GetPrimitiveArrayCritical while concurrently filling up old gen.
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UseG1GC TestGCLockerWithG1
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UseG1GC gc.stress.gclocker.TestGCLockerWithG1
  */
 public class TestGCLockerWithG1 {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithParallel.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithParallel.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,12 +22,15 @@
  *
  */
 
+package gc.stress.gclocker;
+
 /*
  * @test TestGCLockerWithParallel
  * @key gc
+ * @library /
  * @requires vm.gc.Parallel
  * @summary Stress Parallel's GC locker by calling GetPrimitiveArrayCritical while concurrently filling up old gen.
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UseParallelGC TestGCLockerWithParallel
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UseParallelGC gc.stress.gclocker.TestGCLockerWithParallel
  */
 public class TestGCLockerWithParallel {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithSerial.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithSerial.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  *
  */
 
+package gc.stress.gclocker;
+
 /*
  * @test TestGCLockerWithSerial
  * @key gc
+ * @library /
  * @requires vm.gc.Serial
  * @requires vm.flavor != "minimal"
  * @summary Stress Serial's GC locker by calling GetPrimitiveArrayCritical while concurrently filling up old gen.
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xmx1500m -Xmx1500m -XX:+UseSerialGC TestGCLockerWithSerial
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xmx1500m -Xmx1500m -XX:+UseSerialGC gc.stress.gclocker.TestGCLockerWithSerial
  */
 public class TestGCLockerWithSerial {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithShenandoah.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithShenandoah.java	Tue Jan 29 09:38:31 2019 -0500
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.gclocker;
+
 /*
  * @test TestGCLockerWithShenandoah
  * @key gc
+ * @library /
  * @requires vm.gc.Shenandoah
  * @summary Stress Shenandoah's JNI handling by calling GetPrimitiveArrayCritical while concurrently filling up old gen.
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify -XX:+UseShenandoahGC TestGCLockerWithShenandoah
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions                                                      -XX:+UseShenandoahGC TestGCLockerWithShenandoah
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions                       -XX:+UseShenandoahGC -XX:+ShenandoahOOMDuringEvacALot -XX:ShenandoahGCHeuristics=aggressive TestGCLockerWithShenandoah
- * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions                       -XX:+UseShenandoahGC -XX:+ShenandoahAllocFailureALot  -XX:ShenandoahGCHeuristics=aggressive TestGCLockerWithShenandoah
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify -XX:+UseShenandoahGC gc.stress.gclocker.TestGCLockerWithShenandoah
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions                                                      -XX:+UseShenandoahGC gc.stress.gclocker.TestGCLockerWithShenandoah
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions                       -XX:+UseShenandoahGC -XX:+ShenandoahOOMDuringEvacALot -XX:ShenandoahGCHeuristics=aggressive gc.stress.gclocker.TestGCLockerWithShenandoah
+ * @run main/native/othervm/timeout=200 -Xlog:gc*=info -Xms1500m -Xmx1500m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions                       -XX:+UseShenandoahGC -XX:+ShenandoahAllocFailureALot  -XX:ShenandoahGCHeuristics=aggressive gc.stress.gclocker.TestGCLockerWithShenandoah
  */
 public class TestGCLockerWithShenandoah {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gclocker/libTestGCLocker.c	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gclocker/libTestGCLocker.c	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,7 +24,7 @@
 #include <jni.h>
 
 JNIEXPORT void JNICALL
-Java_GCLockerStresser_fillWithRandomValues(JNIEnv* env, jclass clz, jbyteArray arr) {
+Java_gc_stress_gclocker_GCLockerStresser_fillWithRandomValues(JNIEnv* env, jclass clz, jbyteArray arr) {
   jsize size = (*env)->GetArrayLength(env, arr);
   jbyte* p = (*env)->GetPrimitiveArrayCritical(env, arr, NULL);
   jsize i;
--- a/test/hotspot/jtreg/gc/stress/gcold/TestGCOld.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcold/TestGCOld.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.stress.gcold;
+
 import java.text.*;
 import java.util.Random;
 
--- a/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,12 +22,15 @@
  *
  */
 
+package gc.stress.gcold;
+
 /*
  * @test TestGCOldWithCMS
  * @key gc
+ * @library /
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Stress the CMS GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm -Xmx384M -XX:+UseConcMarkSweepGC TestGCOldWithCMS 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UseConcMarkSweepGC gc.stress.gcold.TestGCOldWithCMS 50 1 20 10 10000
  */
 public class TestGCOldWithCMS {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithG1.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithG1.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,14 +22,17 @@
  *
  */
 
+package gc.stress.gcold;
+
 /*
  * @test TestGCOldWithG1
  * @key gc
+ * @library /
  * @requires vm.gc.G1
  * @summary Stress the G1 GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm -Xmx384M -XX:+UseG1GC TestGCOldWithG1 50 1 20 10 10000
- * @run main/othervm -Xms64m -Xmx128m -XX:+UseG1GC -XX:+UseDynamicNumberOfGCThreads -Xlog:gc,gc+task=trace TestGCOldWithG1 50 5 20 1 5000
- * @run main/othervm -Xms64m -Xmx128m -XX:+UseG1GC -XX:+UseDynamicNumberOfGCThreads  -XX:+UnlockDiagnosticVMOptions -XX:+InjectGCWorkerCreationFailure -Xlog:gc,gc+task=trace TestGCOldWithG1 50 5 20 1 5000
+ * @run main/othervm -Xmx384M -XX:+UseG1GC gc.stress.gcold.TestGCOldWithG1 50 1 20 10 10000
+ * @run main/othervm -Xms64m -Xmx128m -XX:+UseG1GC -XX:+UseDynamicNumberOfGCThreads -Xlog:gc,gc+task=trace gc.stress.gcold.TestGCOldWithG1 50 5 20 1 5000
+ * @run main/othervm -Xms64m -Xmx128m -XX:+UseG1GC -XX:+UseDynamicNumberOfGCThreads  -XX:+UnlockDiagnosticVMOptions -XX:+InjectGCWorkerCreationFailure -Xlog:gc,gc+task=trace gc.stress.gcold.TestGCOldWithG1 50 5 20 1 5000
  */
 public class TestGCOldWithG1 {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithParallel.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithParallel.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  *
  */
 
+package gc.stress.gcold;
+
 /*
  * @test TestGCOldWithParallel
  * @key gc
+ * @library /
  * @requires vm.gc.Parallel
  * @summary Stress the Parallel GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm -Xmx384M -XX:+UseParallelGC TestGCOld 50 1 20 10 10000
- * @run main/othervm -Xmx384M -XX:+UseParallelGC -XX:-UseParallelOldGC TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UseParallelGC gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UseParallelGC -XX:-UseParallelOldGC gc.stress.gcold.TestGCOld 50 1 20 10 10000
  */
 public class TestGCOldWithParallel {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithSerial.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithSerial.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,12 +22,15 @@
  *
  */
 
+package gc.stress.gcold;
+
 /*
  * @test TestGCOldWithSerial
  * @key gc
+ * @library /
  * @requires vm.gc.Serial
  * @summary Stress the Serial GC by trying to make old objects more likely to be garbage than young objects.
- * @run main/othervm -Xmx384M -XX:+UseSerialGC TestGCOldWithSerial 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UseSerialGC gc.stress.gcold.TestGCOldWithSerial 50 1 20 10 10000
  */
 public class TestGCOldWithSerial {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithShenandoah.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithShenandoah.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
@@ -21,29 +21,32 @@
 * questions.
 */
 
+package gc.stress.gcold;
+
 /*
  * @test TestGCOldWithShenandoah
  * @key gc
  * @key stress
+ * @library /
  * @requires vm.gc.Shenandoah & !vm.graal.enabled
  * @summary Stress the GC by trying to make old objects more likely to be garbage than young objects.
  *
- * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:+ShenandoahDegeneratedGC -XX:+ShenandoahVerify TestGCOld 50 1 20 10 10000
- * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:-ShenandoahDegeneratedGC -XX:+ShenandoahVerify TestGCOld 50 1 20 10 10000
- * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:+ShenandoahDegeneratedGC                       TestGCOld 50 1 20 10 10000
- * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:-ShenandoahDegeneratedGC                       TestGCOld 50 1 20 10 10000
+ * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:+ShenandoahDegeneratedGC -XX:+ShenandoahVerify gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:-ShenandoahDegeneratedGC -XX:+ShenandoahVerify gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:+ShenandoahDegeneratedGC                       gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=passive       -XX:-ShenandoahDegeneratedGC                       gc.stress.gcold.TestGCOld 50 1 20 10 10000
  *
- * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive    -XX:+ShenandoahOOMDuringEvacALot TestGCOld 50 1 20 10 10000
- * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive    -XX:+ShenandoahAllocFailureALot  TestGCOld 50 1 20 10 10000
- * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                                     TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive    -XX:+ShenandoahOOMDuringEvacALot gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive    -XX:+ShenandoahAllocFailureALot  gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive                                     gc.stress.gcold.TestGCOld 50 1 20 10 10000
  *
- * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive     -XX:+ShenandoahVerify TestGCOld 50 1 20 10 10000
- * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal    -XX:+ShenandoahVerify TestGCOld 50 1 20 10 10000
+ * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive     -XX:+ShenandoahVerify gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal    -XX:+ShenandoahVerify gc.stress.gcold.TestGCOld 50 1 20 10 10000
  *
- * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive      TestGCOld 50 1 20 10 10000
- * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=static        TestGCOld 50 1 20 10 10000
- * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact       TestGCOld 50 1 20 10 10000
- * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal     TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive      gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=static        gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact       gc.stress.gcold.TestGCOld 50 1 20 10 10000
+ * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal     gc.stress.gcold.TestGCOld 50 1 20 10 10000
  */
 
 public class TestGCOldWithShenandoah {
--- a/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithZ.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithZ.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  *
  */
 
+package gc.stress.gcold;
+
 /*
  * @test TestGCOldWithZ
  * @key gc
+ * @library /
  * @requires vm.gc.Z & !vm.graal.enabled
  * @summary Stress the Z
- * @run main/othervm -Xmx384M -XX:+UnlockExperimentalVMOptions -XX:+UseZGC TestGCOldWithZ 50 1 20 10 10000
- * @run main/othervm -Xmx256m -XX:+UnlockExperimentalVMOptions -XX:+UseZGC TestGCOldWithZ 50 5 20 1 5000
+ * @run main/othervm -Xmx384M -XX:+UnlockExperimentalVMOptions -XX:+UseZGC gc.stress.gcold.TestGCOldWithZ 50 1 20 10 10000
+ * @run main/othervm -Xmx256m -XX:+UnlockExperimentalVMOptions -XX:+UseZGC gc.stress.gcold.TestGCOldWithZ 50 5 20 1 5000
  */
 public class TestGCOldWithZ {
     public static void main(String[] args) {
--- a/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.stress.systemgc;
+
 // A test that stresses a full GC by allocating objects of different lifetimes
 // and concurrently calling System.gc().
 
--- a/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithCMS.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithCMS.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  *
  */
 
+package gc.stress.systemgc;
+
 /*
  * @test TestSystemGCWithCMS
  * @key gc stress
  * @bug 8190703
+ * @library /
  * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
  * @summary Stress the CMS GC full GC by allocating objects of different lifetimes concurrently with System.gc().
- * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UseConcMarkSweepGC TestSystemGCWithCMS 270
+ * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UseConcMarkSweepGC gc.stress.systemgc.TestSystemGCWithCMS 270
  */
 public class TestSystemGCWithCMS {
     public static void main(String[] args) throws Exception {
--- a/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithG1.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithG1.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  *
  */
 
+package gc.stress.systemgc;
+
 /*
  * @test TestSystemGCWithG1
  * @key gc stress
  * @bug 8190703
+ * @library /
  * @requires vm.gc.G1
  * @summary Stress the G1 GC full GC by allocating objects of different lifetimes concurrently with System.gc().
- * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UseG1GC TestSystemGCWithG1 270
+ * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UseG1GC gc.stress.systemgc.TestSystemGCWithG1 270
  */
 public class TestSystemGCWithG1 {
     public static void main(String[] args) throws Exception {
--- a/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithParallel.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithParallel.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  *
  */
 
+package gc.stress.systemgc;
+
 /*
  * @test TestSystemGCWithParallel
  * @key gc stress
  * @bug 8190703
+ * @library /
  * @requires vm.gc.Parallel
  * @summary Stress the Parallel GC full GC by allocating objects of different lifetimes concurrently with System.gc().
- * @run main/othervm/timeout=300 -Xlog:gc=info -Xmx512m -XX:+UseParallelGC TestSystemGCWithParallel 270
+ * @run main/othervm/timeout=300 -Xlog:gc=info -Xmx512m -XX:+UseParallelGC gc.stress.systemgc.TestSystemGCWithParallel 270
  */
 public class TestSystemGCWithParallel {
     public static void main(String[] args) throws Exception {
--- a/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithSerial.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithSerial.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,16 @@
  *
  */
 
+package gc.stress.systemgc;
+
 /*
  * @test TestSystemGCWithSerial
  * @key gc stress
  * @bug 8190703
+ * @library /
  * @requires vm.gc.Serial
  * @summary Stress the Serial GC full GC by allocating objects of different lifetimes concurrently with System.gc().
- * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UseSerialGC TestSystemGCWithSerial 270
+ * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UseSerialGC gc.stress.systemgc.TestSystemGCWithSerial 270
  */
 public class TestSystemGCWithSerial {
     public static void main(String[] args) throws Exception {
--- a/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithShenandoah.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithShenandoah.java	Tue Jan 29 09:38:31 2019 -0500
@@ -22,15 +22,18 @@
  *
  */
 
+package gc.stress.systemgc;
+
 /*
  * @test TestSystemGCWithShenandoah
  * @key gc
  * @key stress
+ * @library /
  * @requires vm.gc.Shenandoah
  * @summary Stress the Shenandoah GC full GC by allocating objects of different lifetimes concurrently with System.gc().
- * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify -XX:+UseShenandoahGC TestSystemGCWithShenandoah 270
- * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal TestSystemGCWithShenandoah 270
- * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UnlockExperimentalVMOptions                                                      -XX:+UseShenandoahGC TestSystemGCWithShenandoah 270
+ * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify -XX:+UseShenandoahGC gc.stress.systemgc.TestSystemGCWithShenandoah 270
+ * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UnlockExperimentalVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+ShenandoahVerify -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=traversal gc.stress.systemgc.TestSystemGCWithShenandoah 270
+ * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UnlockExperimentalVMOptions                                                      -XX:+UseShenandoahGC gc.stress.systemgc.TestSystemGCWithShenandoah 270
  */
 public class TestSystemGCWithShenandoah {
     public static void main(String[] args) throws Exception {
--- a/test/hotspot/jtreg/gc/survivorAlignment/AlignmentHelper.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/AlignmentHelper.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 import java.lang.management.MemoryPoolMXBean;
 import java.util.Optional;
 
--- a/test/hotspot/jtreg/gc/survivorAlignment/SurvivorAlignmentTestMain.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/SurvivorAlignmentTestMain.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 import java.lang.management.ManagementFactory;
 import java.lang.management.MemoryPoolMXBean;
 import java.util.Objects;
--- a/test/hotspot/jtreg/gc/survivorAlignment/TestAllocationInEden.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/TestAllocationInEden.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 /**
  * @test
  * @bug 8031323
@@ -28,6 +30,7 @@
  *          SurvivorAlignmentInBytes option.
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
@@ -39,42 +42,42 @@
  *                   -XX:SurvivorAlignmentInBytes=32 -XX:-UseTLAB -XX:-ResizePLAB
  *                   -XX:OldSize=128m -XX:MaxHeapSize=192m
  *                   -XX:-ExplicitGCInvokesConcurrent
- *                   TestAllocationInEden 10m 9 EDEN
+ *                   gc.survivorAlignment.TestAllocationInEden 10m 9 EDEN
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32 -XX:-UseTLAB -XX:-ResizePLAB
  *                   -XX:OldSize=128m -XX:MaxHeapSize=192m
  *                   -XX:-ExplicitGCInvokesConcurrent
- *                   TestAllocationInEden 10m 47 EDEN
+ *                   gc.survivorAlignment.TestAllocationInEden 10m 47 EDEN
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64 -XX:-UseTLAB -XX:-ResizePLAB
  *                   -XX:OldSize=128m  -XX:MaxHeapSize=192m
  *                   -XX:-ExplicitGCInvokesConcurrent
- *                   TestAllocationInEden 10m 9 EDEN
+ *                   gc.survivorAlignment.TestAllocationInEden 10m 9 EDEN
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64 -XX:-UseTLAB -XX:-ResizePLAB
  *                   -XX:OldSize=128m  -XX:MaxHeapSize=192m
  *                   -XX:-ExplicitGCInvokesConcurrent
- *                   TestAllocationInEden 10m 87 EDEN
+ *                   gc.survivorAlignment.TestAllocationInEden 10m 87 EDEN
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128 -XX:-UseTLAB -XX:-ResizePLAB
  *                   -XX:OldSize=128m -XX:MaxHeapSize=192m
  *                   -XX:-ExplicitGCInvokesConcurrent
- *                   TestAllocationInEden 10m 9 EDEN
+ *                   gc.survivorAlignment.TestAllocationInEden 10m 9 EDEN
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128 -XX:-UseTLAB -XX:-ResizePLAB
  *                   -XX:OldSize=128m -XX:MaxHeapSize=192m
  *                   -XX:-ExplicitGCInvokesConcurrent
- *                   TestAllocationInEden 10m 147 EDEN
+ *                   gc.survivorAlignment.TestAllocationInEden 10m 147 EDEN
  */
 public class TestAllocationInEden {
     public static void main(String args[]) {
--- a/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromEdenToTenured.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromEdenToTenured.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 /**
  * @test
  * @bug 8031323
@@ -28,6 +30,7 @@
  *          full GC are not aligned to SurvivorAlignmentInBytes value.
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
@@ -39,42 +42,42 @@
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32
- *                   TestPromotionFromEdenToTenured 10m 9 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromEdenToTenured 10m 9 TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:OldSize=32m -XX:MaxHeapSize=96m -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32
- *                   TestPromotionFromEdenToTenured 10m 47 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromEdenToTenured 10m 47 TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:OldSize=32m  -XX:MaxHeapSize=96m
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64
- *                   TestPromotionFromEdenToTenured 10m 9 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromEdenToTenured 10m 9 TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:OldSize=32m -XX:MaxHeapSize=128m
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64
- *                   TestPromotionFromEdenToTenured 10m 87 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromEdenToTenured 10m 87 TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:OldSize=32M -XX:MaxHeapSize=96m -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128
- *                   TestPromotionFromEdenToTenured 10m 9 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromEdenToTenured 10m 9 TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=64m -XX:MaxNewSize=64m
  *                   -XX:OldSize=32m -XX:MaxHeapSize=96m -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128
- *                   TestPromotionFromEdenToTenured 10m 147 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromEdenToTenured 10m 147 TENURED
  */
 public class TestPromotionFromEdenToTenured {
     public static void main(String args[]) {
--- a/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterFullGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterFullGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 /**
  * @test
  * @bug 8031323
@@ -28,6 +30,7 @@
  *          during full GC are not aligned to SurvivorAlignmentInBytes value.
  * @requires vm.gc != "Z" & vm.gc != "Shenandoah"
  * @library /test/lib
+ * @library /
  * @modules java.base/jdk.internal.misc
  *          java.management
  * @build sun.hotspot.WhiteBox
@@ -39,14 +42,14 @@
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32
- *                   TestPromotionFromSurvivorToTenuredAfterFullGC 10m 9 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterFullGC 10m 9 TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
  *                   -XX:OldSize=32m -XX:MaxHeapSize=160m -XX:-ResizePLAB
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32
- *                   TestPromotionFromSurvivorToTenuredAfterFullGC 20m 47
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterFullGC 20m 47
  *                   TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=200m -XX:MaxNewSize=200m
@@ -54,14 +57,14 @@
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64
- *                   TestPromotionFromSurvivorToTenuredAfterFullGC 10m 9 TENURED
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterFullGC 10m 9 TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
  *                   -XX:OldSize=32m -XX:MaxHeapSize=160m
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64
- *                   TestPromotionFromSurvivorToTenuredAfterFullGC 20m 87
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterFullGC 20m 87
  *                   TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=256m -XX:MaxNewSize=256m
@@ -69,7 +72,7 @@
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128
- *                    TestPromotionFromSurvivorToTenuredAfterFullGC 10m 9
+ *                    gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterFullGC 10m 9
  *                    TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
@@ -77,7 +80,7 @@
  *                   -XX:SurvivorRatio=1 -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128
- *                   TestPromotionFromSurvivorToTenuredAfterFullGC 20m 147
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterFullGC 20m 147
  *                   TENURED
  */
 public class TestPromotionFromSurvivorToTenuredAfterFullGC {
--- a/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 /**
  * @test
  * @bug 8031323
@@ -40,7 +42,7 @@
  *                   -XX:-ExplicitGCInvokesConcurrent
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32
- *                   TestPromotionFromSurvivorToTenuredAfterMinorGC 10m 9
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterMinorGC 10m 9
  *                   TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
@@ -48,7 +50,7 @@
  *                   -XX:-ExplicitGCInvokesConcurrent
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32
- *                   TestPromotionFromSurvivorToTenuredAfterMinorGC 20m 47
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterMinorGC 20m 47
  *                   TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=200m -XX:MaxNewSize=200m
@@ -56,7 +58,7 @@
  *                   -XX:-ExplicitGCInvokesConcurrent
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64
- *                   TestPromotionFromSurvivorToTenuredAfterMinorGC 10m 9
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterMinorGC 10m 9
  *                   TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
@@ -64,7 +66,7 @@
  *                   -XX:-ExplicitGCInvokesConcurrent
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64
- *                   TestPromotionFromSurvivorToTenuredAfterMinorGC 20m 87
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterMinorGC 20m 87
  *                   TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=256m -XX:MaxNewSize=256m
@@ -72,7 +74,7 @@
  *                   -XX:-ExplicitGCInvokesConcurrent
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128
- *                    TestPromotionFromSurvivorToTenuredAfterMinorGC 10m 9
+ *                    gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterMinorGC 10m 9
  *                    TENURED
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
@@ -80,7 +82,7 @@
  *                   -XX:-ExplicitGCInvokesConcurrent
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128
- *                   TestPromotionFromSurvivorToTenuredAfterMinorGC 20m 147
+ *                   gc.survivorAlignment.TestPromotionFromSurvivorToTenuredAfterMinorGC 20m 147
  *                   TENURED
  */
 public class TestPromotionFromSurvivorToTenuredAfterMinorGC {
--- a/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionLABLargeSurvivorAlignment.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionLABLargeSurvivorAlignment.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 /**
  * @test
  * @bug 8060463
@@ -31,32 +33,32 @@
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=8 -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionLABLargeSurvivorAlignment
+ *                   gc.survivorAlignment.TestPromotionLABLargeSurvivorAlignment
  * @run main/othervm -Xmx128m
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=16 -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionLABLargeSurvivorAlignment
+ *                   gc.survivorAlignment.TestPromotionLABLargeSurvivorAlignment
  * @run main/othervm -Xmx128m
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=512 -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionLABLargeSurvivorAlignment
+ *                   gc.survivorAlignment.TestPromotionLABLargeSurvivorAlignment
  * @run main/othervm -Xmx128m
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=1k -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionLABLargeSurvivorAlignment
+ *                   gc.survivorAlignment.TestPromotionLABLargeSurvivorAlignment
  * @run main/othervm -Xmx128m
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=4k -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionLABLargeSurvivorAlignment
+ *                   gc.survivorAlignment.TestPromotionLABLargeSurvivorAlignment
  * @run main/othervm -Xmx128m
  *                   -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=16k -XX:SurvivorRatio=1
  *                   -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionLABLargeSurvivorAlignment
+ *                   gc.survivorAlignment.TestPromotionLABLargeSurvivorAlignment
  */
 public class TestPromotionLABLargeSurvivorAlignment {
     public static void main(String args[]) {
--- a/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionToSurvivor.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/survivorAlignment/TestPromotionToSurvivor.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.survivorAlignment;
+
 /**
  * @test
  * @bug 8031323
@@ -38,37 +40,37 @@
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32 -XX:OldSize=128m
  *                   -XX:MaxHeapSize=256m -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionToSurvivor 10m 9 SURVIVOR
+ *                   gc.survivorAlignment.TestPromotionToSurvivor 10m 9 SURVIVOR
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=32 -XX:OldSize=128m
  *                   -XX:MaxHeapSize=256m -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionToSurvivor 20m 47 SURVIVOR
+ *                   gc.survivorAlignment.TestPromotionToSurvivor 20m 47 SURVIVOR
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64 -XX:OldSize=128m
  *                   -XX:MaxHeapSize=256m -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionToSurvivor 8m 9 SURVIVOR
+ *                   gc.survivorAlignment.TestPromotionToSurvivor 8m 9 SURVIVOR
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=64 -XX:OldSize=128m
  *                   -XX:MaxHeapSize=256m -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionToSurvivor 20m 87 SURVIVOR
+ *                   gc.survivorAlignment.TestPromotionToSurvivor 20m 87 SURVIVOR
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=256m -XX:MaxNewSize=256m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128 -XX:OldSize=128m
  *                   -XX:MaxHeapSize=384m  -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionToSurvivor 10m 9 SURVIVOR
+ *                   gc.survivorAlignment.TestPromotionToSurvivor 10m 9 SURVIVOR
  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  *                   -XX:+WhiteBoxAPI -XX:NewSize=128m -XX:MaxNewSize=128m
  *                   -XX:SurvivorRatio=1 -XX:+UnlockExperimentalVMOptions
  *                   -XX:SurvivorAlignmentInBytes=128 -XX:OldSize=128m
  *                   -XX:MaxHeapSize=256m -XX:-ExplicitGCInvokesConcurrent -XX:-ResizePLAB
- *                   TestPromotionToSurvivor 20m 147 SURVIVOR
+ *                   gc.survivorAlignment.TestPromotionToSurvivor 20m 147 SURVIVOR
  */
 public class TestPromotionToSurvivor {
     public static void main(String args[]) {
--- a/test/hotspot/jtreg/gc/whitebox/TestConcMarkCycleWB.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/whitebox/TestConcMarkCycleWB.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.whitebox;
+
 /*
  * @test TestConMarkCycleWB
  * @bug 8065579
@@ -33,7 +35,7 @@
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseG1GC TestConcMarkCycleWB
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseG1GC gc.whitebox.TestConcMarkCycleWB
  * @summary Verifies that ConcurrentMarking-related WB works properly
  */
 import static jdk.test.lib.Asserts.assertFalse;
--- a/test/hotspot/jtreg/gc/whitebox/TestWBGC.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/gc/whitebox/TestWBGC.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,6 +21,8 @@
  * questions.
  */
 
+package gc.whitebox;
+
 /*
  * @test TestWBGC
  * @bug 8055098
@@ -31,7 +33,7 @@
  *          java.management
  * @build sun.hotspot.WhiteBox
  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
- * @run driver TestWBGC
+ * @run driver gc.whitebox.TestWBGC
  */
 import jdk.test.lib.Asserts;
 import jdk.test.lib.process.ProcessTools;
--- a/test/hotspot/jtreg/runtime/CompressedOops/UseCompressedOops.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/runtime/CompressedOops/UseCompressedOops.java	Tue Jan 29 09:38:31 2019 -0500
@@ -63,7 +63,7 @@
         testCompressedOopsModes(args, "-XX:+UseParallelGC");
         testCompressedOopsModes(args, "-XX:+UseParallelOldGC");
         if (GC.Shenandoah.isSupported()) {
-            testCompressedOopsModes(args, "-XX:+UseShenandoahGC");
+            testCompressedOopsModes(args, "-XX:+UnlockExperimentalVMOptions", "-XX:+UseShenandoahGC");
         }
     }
 
--- a/test/hotspot/jtreg/runtime/LoaderConstraints/ldrCnstrFldMsg/LdrCnstrFldMsgTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/runtime/LoaderConstraints/ldrCnstrFldMsg/LdrCnstrFldMsgTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -31,7 +31,7 @@
 
 import java.lang.reflect.Method;
 
-// Check that LinkageError loader constraint message for fields contains the
+// Check that the LinkageError loader constraint message for fields contains the
 // correct information.
 //
 // The test creates two class loaders.  The first class loader loads classes
@@ -40,6 +40,20 @@
 // Class Child tries to load Parent._field1.  This should fail because type Foo
 // for Parent._field1 is a different type than Child's Foo.
 //
+// Grand (ldr1)   has field _field1 of type Foo(ldr1)
+//  |
+// Parent (ldr2)  has field _field1 of type Foo(ldr2)
+//  |
+// Child (ldr1)
+//
+// java.lang.LinkageError: loader constraint violation:
+//   when resolving field "_field1" of type pkg.Foo,
+//   the class loader pkg.ClassLoaderForChildGrandFoo @42b2e259 of the current class, pkg.Child,
+//   and the class loader pkg.ClassLoaderForParentFoo @4b55c90f for the field's defining class, pkg.Parent,
+//   have different Class objects for type pkg.Foo
+//   (pkg.Child is in unnamed module of loader pkg.ClassLoaderForChildGrandFoo @42b2e259, parent loader 'app';
+//    pkg.Parent is in unnamed module of loader pkg.ClassLoaderForParentFoo @4b55c90f, parent loader 'app')
+//
 public class LdrCnstrFldMsgTest {
     public static void main(String... args) throws Exception {
         ClassLoader l = new pkg.ClassLoaderForChildGrandFoo("pkg.Foo", "pkg.Child", "pkg.Grand");
@@ -51,7 +65,7 @@
             r.run();
             throw new RuntimeException("Expected LinkageError exception not thrown");
         } catch (java.lang.LinkageError e) {
-            if (!e.getMessage().contains("for the field's defining type, pkg.Parent,") ||
+            if (!e.getMessage().contains("for the field's defining class, pkg.Parent,") ||
                 !e.getMessage().contains("have different Class objects for type pkg.Foo")) {
                 throw new RuntimeException("Wrong LinkageError exception thrown: " + e.toString());
             }
--- a/test/hotspot/jtreg/runtime/NMT/CheckForProperDetailStackTrace.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/runtime/NMT/CheckForProperDetailStackTrace.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -42,7 +42,7 @@
     public static String stackTraceDefault =
         ".*Hashtable.*allocate_new_entry.*\n" +
         ".*ModuleEntryTable.*new_entry.*\n" +
-        ".*ModuleEntryTable.*locked_create_entry_or_null.*\n" +
+        ".*ModuleEntryTable.*locked_create_entry.*\n" +
         ".*Modules.*define_module.*\n";
 
     /* The stack trace we look for on Solaris and Windows slowdebug builds. For some
@@ -50,12 +50,12 @@
     public static String stackTraceAllocateHeap =
         ".*AllocateHeap.*\n" +
         ".*ModuleEntryTable.*new_entry.*\n" +
-        ".*ModuleEntryTable.*locked_create_entry_or_null.*\n" +
+        ".*ModuleEntryTable.*locked_create_entry.*\n" +
         ".*Modules.*define_module.*\n";
 
     /* A symbol that should always be present in NMT detail output. */
     private static String expectedSymbol =
-        "locked_create_entry_or_null";
+        "locked_create_entry";
 
     public static void main(String args[]) throws Exception {
         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
--- a/test/hotspot/jtreg/runtime/exceptionMsgs/ArrayIndexOutOfBoundsException/ArrayIndexOutOfBoundsExceptionTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/runtime/exceptionMsgs/ArrayIndexOutOfBoundsException/ArrayIndexOutOfBoundsExceptionTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,6 +1,6 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
- * Copyright (c) 2018 SAP SE. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019 SAP SE. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -51,6 +51,10 @@
  */
 public class ArrayIndexOutOfBoundsExceptionTest {
 
+    static {
+        System.loadLibrary("ArrayIndexOutOfBoundsExceptionTest");
+    }
+
     // Some fields used in the test.
     static int[] staticArray = new int[0];
     static long[][] staticLongArray = new long[0][0];
@@ -88,6 +92,26 @@
         }
     }
 
+    static native void  doNativeArrayStore(Object[] dst, Object element, int index);
+    static native Object doNativeArrayLoad(Object[] src, int index);
+
+    static native void doNativeBooleanArrayRegionLoad (boolean[] source, int start, int len);
+    static native void doNativeBooleanArrayRegionStore(boolean[] source, int start, int len);
+    static native void doNativeByteArrayRegionLoad    (byte[] source,    int start, int len);
+    static native void doNativeByteArrayRegionStore   (byte[] source,    int start, int len);
+    static native void doNativeShortArrayRegionLoad   (short[] source,   int start, int len);
+    static native void doNativeShortArrayRegionStore  (short[] source,   int start, int len);
+    static native void doNativeCharArrayRegionLoad    (char[] source,    int start, int len);
+    static native void doNativeCharArrayRegionStore   (char[] source,    int start, int len);
+    static native void doNativeIntArrayRegionLoad     (int[] source,     int start, int len);
+    static native void doNativeIntArrayRegionStore    (int[] source,     int start, int len);
+    static native void doNativeLongArrayRegionLoad    (long[] source,    int start, int len);
+    static native void doNativeLongArrayRegionStore   (long[] source,    int start, int len);
+    static native void doNativeFloatArrayRegionLoad   (float[] source,   int start, int len);
+    static native void doNativeFloatArrayRegionStore  (float[] source,   int start, int len);
+    static native void doNativeDoubleArrayRegionLoad  (double[] source,  int start, int len);
+    static native void doNativeDoubleArrayRegionStore (double[] source,  int start, int len);
+
     /**
      *
      */
@@ -439,5 +463,463 @@
             assertEquals(e.getMessage(),
                 "arraycopy: last destination index 7 out of bounds for float[5]");
         }
+
+
+        // Test native array access.
+
+
+        try {
+            System.out.println(doNativeArrayLoad(oa2, 77));
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Index 77 out of bounds for length 5");
+        }
+        try {
+            System.out.println(doNativeArrayLoad(oa1, -1));
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Index -1 out of bounds for length 10");
+        }
+
+        try {
+            doNativeArrayStore(oa1, "Some String", Integer.MIN_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Index -2147483648 out of bounds for length 10");
+        }
+        try {
+            doNativeArrayStore(oa1, "Some String", 13);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Index 13 out of bounds for length 10");
+        }
+
+        // Boolean
+
+        // Native array region loads.
+        // Boolean, len negative.
+        try {
+            doNativeBooleanArrayRegionLoad(za2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Boolean, index negative.
+        try {
+            doNativeBooleanArrayRegionLoad(za2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Boolean, index+len too big.
+        try {
+            doNativeBooleanArrayRegionLoad(za2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Boolean, len negative.
+        try {
+            doNativeBooleanArrayRegionStore(za2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Boolean, index negative.
+        try {
+            doNativeBooleanArrayRegionStore(za2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Boolean, index+len too big.
+        try {
+            doNativeBooleanArrayRegionStore(za2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
+
+        // Byte
+
+        // Native array region loads.
+        // Byte, len negative.
+        try {
+            doNativeByteArrayRegionLoad(ba1, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Byte, index negative.
+        try {
+            doNativeByteArrayRegionLoad(ba1, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 0");
+        }
+        // Byte, index+len too big.
+        try {
+            doNativeByteArrayRegionLoad(ba2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Byte, len negative.
+        try {
+            doNativeByteArrayRegionStore(ba2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Byte, index negative.
+        try {
+            doNativeByteArrayRegionStore(ba2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Byte, index+len too big.
+        try {
+            doNativeByteArrayRegionStore(ba2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
+
+        // Short
+
+        // Native array region loads.
+        // Short, len negative.
+        try {
+            doNativeShortArrayRegionLoad(sa2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Short, index negative.
+        try {
+            doNativeShortArrayRegionLoad(sa2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Short, index+len too big.
+        try {
+            doNativeShortArrayRegionLoad(sa2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Short, len negative.
+        try {
+            doNativeShortArrayRegionStore(sa2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Short, index negative.
+        try {
+            doNativeShortArrayRegionStore(sa2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Short, index+len too big.
+        try {
+            doNativeShortArrayRegionStore(sa2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
+
+        // Char
+
+        // Native array region loads.
+        // Char, len negative.
+        try {
+            doNativeCharArrayRegionLoad(ca2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Char, index negative.
+        try {
+            doNativeCharArrayRegionLoad(ca2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Char, index+len too big.
+        try {
+            doNativeCharArrayRegionLoad(ca2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Char, len negative.
+        try {
+            doNativeCharArrayRegionStore(ca2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Char, index negative.
+        try {
+            doNativeCharArrayRegionStore(ca2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Char, index+len too big.
+        try {
+            doNativeCharArrayRegionStore(ca2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
+
+        // Int
+
+        // Native array region loads.
+        // Int, len negative.
+        try {
+            doNativeIntArrayRegionLoad(ia2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Int, index negative.
+        try {
+            doNativeIntArrayRegionLoad(ia2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Int, index+len too big.
+        try {
+            doNativeIntArrayRegionLoad(ia2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Int, len negative.
+        try {
+            doNativeIntArrayRegionStore(ia2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Int, index negative.
+        try {
+            doNativeIntArrayRegionStore(ia2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Int, index+len too big.
+        try {
+            doNativeIntArrayRegionStore(ia2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
+
+        // Long
+
+        // Native array region loads.
+        // Long, len negative.
+        try {
+            doNativeLongArrayRegionLoad(la2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Long, index negative.
+        try {
+            doNativeLongArrayRegionLoad(la2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Long, index+len too big.
+        try {
+            doNativeLongArrayRegionLoad(la2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Long, len negative.
+        try {
+            doNativeLongArrayRegionStore(la2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Long, index negative.
+        try {
+            doNativeLongArrayRegionStore(la2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Long, index+len too big.
+        try {
+            doNativeLongArrayRegionStore(la2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
+
+        // Float
+
+        // Native array region loads.
+        // Float, len negative.
+        try {
+            doNativeFloatArrayRegionLoad(fa2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Float, index negative.
+        try {
+            doNativeFloatArrayRegionLoad(fa2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Float, index+len too big.
+        try {
+            doNativeFloatArrayRegionLoad(fa2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Float, len negative.
+        try {
+            doNativeFloatArrayRegionStore(fa2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Float, index negative.
+        try {
+            doNativeFloatArrayRegionStore(fa2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Float, index+len too big.
+        try {
+            doNativeFloatArrayRegionStore(fa2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
+
+        // Double
+
+        // Native array region loads.
+        // Double, len negative.
+        try {
+            doNativeDoubleArrayRegionLoad(da2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Double, index negative.
+        try {
+            doNativeDoubleArrayRegionLoad(da2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Double, index+len too big.
+        try {
+            doNativeDoubleArrayRegionLoad(da2, 3, Integer.MAX_VALUE-1);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483649 out of bounds for length 10");
+        }
+        // Native array region stores
+        // Double, len negative.
+        try {
+            doNativeDoubleArrayRegionStore(da2, 3, -77);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Length -77 is negative");
+        }
+        // Double, index negative.
+        try {
+            doNativeDoubleArrayRegionStore(da2, -3, 3);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region -3..0 out of bounds for length 10");
+        }
+        // Double, index+len too big.
+        try {
+            doNativeDoubleArrayRegionStore(da2, 3, Integer.MAX_VALUE);
+            fail();
+        } catch (ArrayIndexOutOfBoundsException e) {
+            assertEquals(e.getMessage(),
+                "Array region 3..2147483650 out of bounds for length 10");
+        }
     }
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/jtreg/runtime/exceptionMsgs/ArrayIndexOutOfBoundsException/libArrayIndexOutOfBoundsExceptionTest.c	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,61 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2019 SAP SE. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+#include <jni.h>
+
+JNIEXPORT void JNICALL
+  Java_ArrayIndexOutOfBoundsExceptionTest_doNativeArrayStore(JNIEnv *env, jclass klass,
+                                                             jobjectArray array, jobject element, jint index) {
+  (*env)->SetObjectArrayElement(env, array, index, element);
+}
+
+JNIEXPORT jobject JNICALL
+  Java_ArrayIndexOutOfBoundsExceptionTest_doNativeArrayLoad(JNIEnv *env, jclass klass,
+                                                            jobjectArray array, jint index) {
+  return (*env)->GetObjectArrayElement(env, array, index);
+}
+
+
+#define REGIONACCESS(ElementType,NameType) \
+JNIEXPORT void JNICALL \
+  Java_ArrayIndexOutOfBoundsExceptionTest_doNative##NameType##ArrayRegionLoad(JNIEnv *env, jclass klass, \
+                                                                     ElementType##Array array, jint start, jint len) { \
+  ElementType clone[100]; \
+  (*env)->Get##NameType##ArrayRegion(env, array, start, len, clone); \
+} \
+JNIEXPORT void JNICALL \
+  Java_ArrayIndexOutOfBoundsExceptionTest_doNative##NameType##ArrayRegionStore(JNIEnv *env, jclass klass, \
+                                                                      ElementType##Array array, jint start, jint len) { \
+  ElementType content[100]; \
+  (*env)->Set##NameType##ArrayRegion(env, array, start, len, content); \
+}
+
+REGIONACCESS(jboolean, Boolean)
+REGIONACCESS(jbyte,    Byte)
+REGIONACCESS(jshort,   Short)
+REGIONACCESS(jchar,    Char)
+REGIONACCESS(jint,     Int)
+REGIONACCESS(jlong,    Long)
+REGIONACCESS(jfloat,   Float)
+REGIONACCESS(jdouble,  Double)
--- a/test/hotspot/jtreg/serviceability/sa/ClhsdbFlags.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/serviceability/sa/ClhsdbFlags.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -33,6 +33,7 @@
 /**
  * @test
  * @bug 8190198
+ * @bug 8217612
  * @summary Test clhsdb flags command
  * @requires vm.hasSA
  * @library /test/lib
@@ -41,8 +42,8 @@
 
 public class ClhsdbFlags {
 
-    public static void main(String[] args) throws Exception {
-        System.out.println("Starting ClhsdbFlags test");
+    public static void runBasicTest() throws Exception {
+        System.out.println("Starting ClhsdbFlags basic test");
 
         LingeredApp theApp = null;
         try {
@@ -88,4 +89,54 @@
         }
         System.out.println("Test PASSED");
     }
+
+    public static void runAllTypesTest() throws Exception {
+        System.out.println("Starting ClhsdbFlags all types test");
+
+        LingeredApp theApp = null;
+        try {
+            ClhsdbLauncher test = new ClhsdbLauncher();
+            List<String> vmArgs = new ArrayList<String>();
+            vmArgs.add("-XX:+UnlockDiagnosticVMOptions");   // bool
+            vmArgs.add("-XX:ActiveProcessorCount=1");       // int
+            vmArgs.add("-XX:ParallelGCThreads=1");          // uint
+            vmArgs.add("-XX:MaxJavaStackTraceDepth=1024");  // intx
+            vmArgs.add("-XX:LogEventsBufferEntries=10");    // uintx
+            vmArgs.add("-XX:HeapSizePerGCThread=32m");      // size_t
+            vmArgs.add("-XX:NativeMemoryTracking=off");     // ccstr
+            vmArgs.add("-XX:OnError='echo error'");         // ccstrlist
+            vmArgs.add("-XX:CompileThresholdScaling=1.0");  // double
+            vmArgs.add("-XX:ErrorLogTimeout=120");          // uint64_t
+            vmArgs.addAll(Utils.getVmOptions());
+            theApp = LingeredApp.startApp(vmArgs);
+            System.out.println("Started LingeredApp with pid " + theApp.getPid());
+
+            List<String> cmds = List.of("flags");
+
+            Map<String, List<String>> expStrMap = new HashMap<>();
+            expStrMap.put("flags", List.of(
+                    "UnlockDiagnosticVMOptions = true",
+                    "ActiveProcessorCount = 1",
+                    "ParallelGCThreads = 1",
+                    "MaxJavaStackTraceDepth = 1024",
+                    "LogEventsBufferEntries = 10",
+                    "HeapSizePerGCThread = 3",
+                    "NativeMemoryTracking = \"off\"",
+                    "OnError = \"'echo error'\"",
+                    "CompileThresholdScaling = 1.0",
+                    "ErrorLogTimeout = 120"));
+
+            test.run(theApp.getPid(), cmds, expStrMap, null);
+        } catch (Exception ex) {
+            throw new RuntimeException("Test ERROR " + ex, ex);
+        } finally {
+            LingeredApp.stopApp(theApp);
+        }
+        System.out.println("Test PASSED");
+    }
+
+    public static void main(String[] args) throws Exception {
+        runBasicTest();
+        runAllTypesTest();
+    }
 }
--- a/test/hotspot/jtreg/testlibrary/jittester/Makefile	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/Makefile	Tue Jan 29 09:38:31 2019 -0500
@@ -83,9 +83,9 @@
 
 .PHONY: cleantmp
 
-all: JAR
+all: $(DIST_JAR)
 
-JAR: INIT COMPILE manifest
+$(DIST_JAR): INIT COMPILE manifest
 	$(JAR) cfm $(DIST_JAR) $(MANIFEST) -C $(CLASSES_DIR) .
 
 manifest:
@@ -107,7 +107,7 @@
 INIT: $(DIST_DIR)
 	$(shell if [ ! -d $(CLASSES_DIR) ]; then mkdir -p $(CLASSES_DIR); fi)
 
-install: clean_testbase testgroup testroot copytestlibrary copyaot JAR cleantmp
+install: clean_testbase testgroup testroot copytestlibrary copyaot $(DIST_JAR) cleantmp
 	$(JAVA) --add-exports=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED -ea -jar $(DIST_JAR) $(APPLICATION_ARGS)
 
 clean_testbase:
--- a/test/hotspot/jtreg/testlibrary/jittester/conf/default.properties	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/conf/default.properties	Tue Jan 29 09:38:31 2019 -0500
@@ -1,6 +1,6 @@
 seed=SEED2
 number-of-tests=1000
-testbase-dir=ws/hotspot/test
+testbase-dir=testbase
 fp-precision=7
 min-cfg-depth=5
 max-cfg-depth=5
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/AotTestGeneratorsFactory.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/AotTestGeneratorsFactory.java	Tue Jan 29 09:38:31 2019 -0500
@@ -32,7 +32,7 @@
     private static final String AOT_COMPILER_BUILD_ACTION
             = "@build compiler.aot.AotCompiler";
     private static final String AOT_COMPILER_RUN_ACTION_PREFIX
-            = "@run driver compiler.aot.AotCompiler -libname aottest.so -class ";
+            = "@run driver compiler.aot.AotCompiler -extraopt -Xmixed -libname aottest.so -class ";
 
     @Override
     public List<TestsGenerator> apply(String[] input) {
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/Automatic.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/Automatic.java	Tue Jan 29 09:38:31 2019 -0500
@@ -110,6 +110,7 @@
     public static void main(String[] args) {
         initializeTestGenerator(args);
         int counter = 0;
+        System.out.printf("Generating %d tests...%n",  ProductionParams.numberOfTests.value());
         System.out.printf(" %13s | %8s | %8s | %8s |%n", "start time", "count", "generat",
                 "running");
         System.out.printf(" %13s | %8s | %8s | %8s |%n", "---", "---", "---", "---");
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/ByteCodeGenerator.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/ByteCodeGenerator.java	Tue Jan 29 09:38:31 2019 -0500
@@ -39,7 +39,7 @@
     private static final String DEFAULT_SUFFIX = "bytecode_tests";
 
     ByteCodeGenerator() {
-        super(DEFAULT_SUFFIX);
+        super(DEFAULT_SUFFIX, s -> new String[0], "-Xcomp");
     }
 
     ByteCodeGenerator(String suffix, Function<String, String[]> preRunActions, String jtDriverOptions) {
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/JavaCodeGenerator.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/JavaCodeGenerator.java	Tue Jan 29 09:38:31 2019 -0500
@@ -34,7 +34,7 @@
     private static final String DEFAULT_SUFFIX = "java_tests";
 
     JavaCodeGenerator() {
-        this(DEFAULT_SUFFIX, JavaCodeGenerator::generatePrerunAction, "");
+        this(DEFAULT_SUFFIX, JavaCodeGenerator::generatePrerunAction, "-Xcomp");
     }
 
     JavaCodeGenerator(String prefix, Function<String, String[]> preRunActions, String jtDriverOptions) {
@@ -64,13 +64,16 @@
     }
 
     private void compileJavaFile(String mainClassName) {
-        String classPath = getRoot().resolve(generatorDir)
-                                    .toAbsolutePath()
-                                    .toString();
-        ProcessBuilder pb = new ProcessBuilder(JAVAC, "-cp", classPath,
+        String classPath = tmpDir.toString();
+        ProcessBuilder pb = new ProcessBuilder(JAVAC,
+                "-d", classPath,
+                "-cp", classPath,
                 generatorDir.resolve(mainClassName + ".java").toString());
         try {
-            runProcess(pb, generatorDir.resolve(mainClassName).toString());
+            int r = runProcess(pb, tmpDir.resolve(mainClassName + ".javac").toString());
+            if (r != 0) {
+                throw new Error("Can't compile sources, exit code = " + r);
+            }
         } catch (IOException | InterruptedException e) {
             throw new Error("Can't compile sources ", e);
         }
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/TestsGenerator.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/TestsGenerator.java	Tue Jan 29 09:38:31 2019 -0500
@@ -42,6 +42,7 @@
     protected static final String JAVAC = Paths.get(JAVA_BIN, "javac").toString();
     protected static final String JAVA = Paths.get(JAVA_BIN, "java").toString();
     protected final Path generatorDir;
+    protected final Path tmpDir;
     protected final Function<String, String[]> preRunActions;
     protected final String jtDriverOptions;
     private static final String DISABLE_WARNINGS = "-XX:-PrintWarnings";
@@ -52,15 +53,19 @@
 
     protected TestsGenerator(String suffix, Function<String, String[]> preRunActions,
             String jtDriverOptions) {
-        generatorDir = getRoot().resolve(suffix);
+        generatorDir = getRoot().resolve(suffix).toAbsolutePath();
+        try {
+            tmpDir = Files.createTempDirectory(suffix).toAbsolutePath();
+        } catch (IOException e) {
+            throw new Error("Can't get a tmp dir for " + suffix, e);
+        }
         this.preRunActions = preRunActions;
         this.jtDriverOptions = jtDriverOptions;
     }
 
     protected void generateGoldenOut(String mainClassName) {
-        String classPath = getRoot().resolve(generatorDir)
-                                    .toAbsolutePath()
-                                    .toString();
+        String classPath = tmpDir.toString() + File.pathSeparator
+                + generatorDir.toString();
         ProcessBuilder pb = new ProcessBuilder(JAVA, "-Xint", DISABLE_WARNINGS, "-Xverify",
                 "-cp", classPath, mainClassName);
         String goldFile = mainClassName + ".gold";
@@ -89,9 +94,10 @@
         return -1;
     }
 
-    protected static void compilePrinter() {
+    protected void compilePrinter() {
         Path root = getRoot();
         ProcessBuilder pbPrinter = new ProcessBuilder(JAVAC,
+                "-d", tmpDir.toString(),
                 root.resolve("jdk")
                     .resolve("test")
                     .resolve("lib")
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/TypeList.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/TypeList.java	Tue Jan 29 09:38:31 2019 -0500
@@ -23,11 +23,6 @@
 
 package jdk.test.lib.jittester;
 
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.List;
-import java.util.function.Predicate;
-
 import jdk.test.lib.jittester.types.TypeBoolean;
 import jdk.test.lib.jittester.types.TypeByte;
 import jdk.test.lib.jittester.types.TypeChar;
@@ -39,6 +34,11 @@
 import jdk.test.lib.jittester.types.TypeShort;
 import jdk.test.lib.jittester.types.TypeVoid;
 
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+import java.util.function.Predicate;
+
 public class TypeList {
     public static final TypeVoid VOID = new TypeVoid();
     public static final TypeBoolean BOOLEAN = new TypeBoolean();
@@ -56,7 +56,7 @@
     private static final List<Type> BUILTIN_TYPES = new ArrayList<>();
     private static final List<Type> BUILTIN_INT_TYPES = new ArrayList<>();
     private static final List<Type> BUILTIN_FP_TYPES = new ArrayList<>();
-    private static final List<Type> REFERENCE_TYPES = new ArrayList<>();
+    private static final List<TypeKlass> REFERENCE_TYPES = new ArrayList<>();
 
     static {
         BUILTIN_INT_TYPES.add(BOOLEAN);
@@ -99,7 +99,7 @@
         return BUILTIN_FP_TYPES;
     }
 
-    protected static Collection<Type> getReferenceTypes() {
+    protected static Collection<TypeKlass> getReferenceTypes() {
         return REFERENCE_TYPES;
     }
 
@@ -148,7 +148,7 @@
         return null;
     }
 
-    public static void add(Type t) {
+    public static void add(TypeKlass t) {
         REFERENCE_TYPES.add(t);
         TYPES.add(t);
     }
@@ -159,8 +159,12 @@
     }
 
     public static void removeAll() {
-        Predicate<? super Type> isNotBasic = t -> t.getName().startsWith("Test_");
-        TYPES.removeIf(isNotBasic);
-        REFERENCE_TYPES.removeIf(isNotBasic);
+        Predicate<? super String> isNotBasic = s -> s.startsWith("Test_");
+        Predicate<? super Type> isNotBasicType = t -> isNotBasic.test(t.getName());
+        REFERENCE_TYPES.stream()
+                       .map(TypeKlass::getChildrenNames)
+                       .forEach(l -> l.removeIf(isNotBasic));
+        TYPES.removeIf(isNotBasicType);
+        REFERENCE_TYPES.removeIf(isNotBasicType);
     }
 }
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/factories/CastOperatorFactory.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/factories/CastOperatorFactory.java	Tue Jan 29 09:38:31 2019 -0500
@@ -67,7 +67,7 @@
                     SymbolTable.merge();
                     return castOperator;
                 }
-                throw new ProductionFailedException();
+                SymbolTable.pop();
             } catch (ProductionFailedException e) {
                 SymbolTable.pop();
             }
--- a/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/types/TypeKlass.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/types/TypeKlass.java	Tue Jan 29 09:38:31 2019 -0500
@@ -25,6 +25,7 @@
 
 import java.util.Collection;
 import java.util.HashSet;
+import java.util.Objects;
 import java.util.TreeSet;
 import jdk.test.lib.jittester.ProductionParams;
 import jdk.test.lib.jittester.Symbol;
@@ -124,26 +125,28 @@
         TreeSet<TypeKlass> result = new TreeSet<>();
         parentsList.stream()
                 .map(TypeList::find)
-                .filter(parentKlass -> parentKlass != null)
-                .map(parentKlass -> (TypeKlass) parentKlass)
-                .forEach(parentKlass -> {
-                    result.add(parentKlass);
-                    result.addAll(parentKlass.getAllParents());
+                .filter(Objects::nonNull)
+                .map(k -> (TypeKlass) k)
+                .forEach(k -> {
+                    if (result.add(k)) {
+                        result.addAll(k.getAllParents());
+                    }
         });
         return result;
     }
 
     public TreeSet<TypeKlass> getAllChildren() {
-        TreeSet<TypeKlass> r = new TreeSet<>();
+        TreeSet<TypeKlass> result = new TreeSet<>();
         childrenList.stream()
                 .map(TypeList::find)
-                .filter(childKlass -> childKlass != null)
-                .map(childKlass -> (TypeKlass) childKlass)
-                .forEach(childKlass -> {
-                    r.add(childKlass);
-                    r.addAll(childKlass.getAllChildren());
+                .filter(Objects::nonNull)
+                .map(k -> (TypeKlass) k)
+                .forEach(k -> {
+                    if (result.add(k)) {
+                        result.addAll(k.getAllChildren());
+                    }
         });
-        return r;
+        return result;
     }
 
     @Override
--- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe005.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe005.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,8 +23,8 @@
 
 package nsk.jvmti.PopFrame;
 
+import jdk.test.lib.Utils;
 import nsk.share.Consts;
-
 import nsk.share.Wicket;
 import java.io.PrintStream;
 
@@ -35,7 +35,7 @@
  * <li>no JVMTI events will be generated by the function <code>PopFrame()</code>
  */
 public class popframe005 {
-    static final int WAIT_TIME = 2000;
+    static final long WAIT_TIME = Utils.adjustTimeout(2000);
 
     static volatile int testedStep = 0; /* 0- action no yet started
                                            1- a frame is to be popped
@@ -144,7 +144,8 @@
         }
 
         try {
-            objWaiterThr1.join(WAIT_TIME);
+            // don't want to wait too much if timeout.factor is big
+            objWaiterThr1.join(Math.min(WAIT_TIME, 5000));
         } catch (InterruptedException e) {
             out.println("Joining the objWaiterThr1's thread: caught " + e);
             out.flush();
--- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -43,13 +43,7 @@
 static jint redefineNumber = 0;
 static jvmtiEnv * jvmti = NULL;
 
-typedef enum {
-  suspend_error = -1,
-  not_suspended,
-  suspended
-} thread_suspend_status_t;
-
-static volatile thread_suspend_status_t thread_suspend_status = not_suspended;
+static volatile bool thread_suspend_error = false;
 
 void JNICALL callbackMethodExit(jvmtiEnv *jvmti_env,
                                 JNIEnv* jni_env,
@@ -75,10 +69,10 @@
                 nsk_printf("Agent::SUSPENDING>> \n");
                 err=jvmti_env->SuspendThread(thread);
                 if (err == JVMTI_ERROR_NONE) {
-                    thread_suspend_status = suspended;
-                    nsk_printf("Agent:: Thread successfully suspended..\n");
-                } else if (err == JVMTI_ERROR_THREAD_SUSPENDED) {
-                    thread_suspend_status = suspend_error;
+                  // we don't get here until we are resumed
+                    nsk_printf("Agent:: Thread successfully suspended and was resumed\n");
+                } else {
+                    thread_suspend_error = true;
                     nsk_printf(" ## Error occured %s \n",TranslateError(err));
                 }
             }
@@ -175,7 +169,6 @@
 
     err = jvmti->ResumeThread(thread);
     if (err == JVMTI_ERROR_NONE) {
-        thread_suspend_status = not_suspended;
         retvalue = JNI_TRUE;
         nsk_printf(" Agent:: Thread Resumed.. \n");
     } else {
@@ -189,13 +182,21 @@
 Java_nsk_jvmti_scenarios_hotswap_HS202_hs202t002_hs202t002_isThreadSuspended(JNIEnv* jni,
                                                                              jclass clas,
                                                                              jthread thread) {
-    if (suspend_error == thread_suspend_status) {
+    if (thread_suspend_error) {
         jclass ex_class = jni->FindClass("java/lang/IllegalThreadStateException");
         jni->ThrowNew(ex_class, "Thread has failed to self suspend");
         return JNI_FALSE;
     }
 
-    return suspended == thread_suspend_status;
+    // There is an inherent race here if the suspend fails for some reason but
+    // thread_suspend_error is not yet set. But as long as we report the suspend
+    // state correctly there is no problem as the Java code will simply loop and call
+    // this again until we see thread_suspend_error is true.
+
+    jint state = 0;
+    // No errors possible here: thread is valid, and state is not NULL
+    jvmti->GetThreadState(thread, &state);
+    return (state & JVMTI_THREAD_STATE_SUSPENDED) != 0;
 }
 
-}
+} // extern C
--- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t003/sp05t003.cpp	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t003/sp05t003.cpp	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -65,7 +65,7 @@
 /* references to tested threads */
 static jthread threadsList[THREADS_COUNT];
 
-/* events conunts */
+/* events counts */
 static volatile int eventsStart = 0;
 static volatile int eventsEnd   = 0;
 
@@ -371,17 +371,18 @@
     /* check if event is for tested thread */
     for (i = 0; i < THREADS_COUNT; i++) {
         if (jni->IsSameObject(threadsList[i], thread)) {
-                NSK_DISPLAY0("SUCCESS: expected THREAD_START event\n");
+            NSK_DISPLAY0("SUCCESS: expected THREAD_START event\n");
 
             /* suspend thread */
             NSK_DISPLAY3("  suspend starting thread #%d (%s): %p\n",
                                 i, threadsName[i], (void*)thread);
+            /* must bump the count before we suspend */
+            eventsStart++;
 
             if (!NSK_JVMTI_VERIFY(jvmti->SuspendThread(thread))) {
                 nsk_jvmti_setFailStatus();
                 return;
             }
-            eventsStart++;
 
             break;
         }
@@ -406,6 +407,8 @@
     for (i = 0; i < THREADS_COUNT; i++) {
         if (jni->IsSameObject(threadsList[i], thread)) {
                 NSK_DISPLAY0("SUCCESS: expected THREAD_END event\n");
+            /* must bump the count before we suspend */
+            eventsEnd++;
 
             /* suspend thread */
             NSK_DISPLAY3("  suspend finishing thread #%d (%s): %p\n",
@@ -415,7 +418,6 @@
                 nsk_jvmti_setFailStatus();
                 return;
             }
-            eventsEnd++;
 
             break;
         }
--- a/test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/regression/b6969574/INDIFY_Test.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/regression/b6969574/INDIFY_Test.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -27,8 +27,7 @@
  * @bug 6969574
  *
  * @summary converted from VM Testbase vm/mlvm/mixed/stress/regression/b6969574.
- * VM Testbase keywords: [feature_mlvm, nonconcurrent, quarantine]
- * VM Testbase comments: 8079650
+ * VM Testbase keywords: [feature_mlvm, nonconcurrent]
  *
  * @library /vmTestbase
  *          /test/lib
@@ -313,10 +312,8 @@
     private final static int REFLECTION_CALL = 1;
     private final static int INVOKE_EXACT = 2;
     private final static int INVOKE = 3;
-    private final static int INVOKE_WITHARG = 4;
-    private final static int INVOKE_WITHARG_TYPECONV = 5;
-    private final static int INDY = 6;
-    private final static int BENCHMARK_COUNT = 7;
+    private final static int INDY = 4;
+    private final static int BENCHMARK_COUNT = 5;
 
     //
     // Test body
@@ -356,18 +353,6 @@
                     }
                 });
 
-        benchmarks[INVOKE_WITHARG] = new Benchmark("MH.invokeWithArguments(), exact types", new T() {
-                    public void run() throws Throwable {
-                        mhTestee.invokeWithArguments(testData, TESTEE_ARG2, TESTEE_ARG3);
-                    }
-                });
-
-        benchmarks[INVOKE_WITHARG_TYPECONV] = new Benchmark("MH.invokeWithArguments() + type conv.", new T() {
-                    public void run() throws Throwable {
-                        mhTestee.invokeWithArguments((Object) testData, null, (Short) Short.MAX_VALUE);
-                    }
-                });
-
         benchmarks[INDY] = new Benchmark("invokedynamic instruction", new T() {
                     public void run() throws Throwable {
                         indyWrapper(testData);
@@ -415,8 +400,6 @@
         verifyTimeOrder(results[REFLECTION_CALL],         results[INVOKE_EXACT]);
         verifyTimeOrder(results[INVOKE_EXACT],            results[DIRECT_CALL]);
         verifyTimeOrder(results[INVOKE],                  results[DIRECT_CALL]);
-        verifyTimeOrder(results[INVOKE_WITHARG],          results[INVOKE_EXACT]);
-        verifyTimeOrder(results[INVOKE_WITHARG_TYPECONV], results[INVOKE_EXACT]);
         verifyTimeOrder(results[INVOKE_EXACT],            results[INDY]);
 
         return true;
--- a/test/jaxp/Makefile	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-#
-# Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-default: all
-
-USE_JTREG_VERSION := 4.1
-
-include ../TestCommon.gmk
-
-# Default make rule (runs default JAXP tests)
-all: jaxp_all
-	@$(ECHO) "Testing completed successfully"
-
-# ------------------------------------------------------------------
-
-jaxp_%:
-	$(ECHO) "Running tests: $@"
-	for each in $@; do \
-	        $(MAKE) -j 1 TEST_SELECTION=":$$each" UNIQUE_DIR=$$each jtreg_tests; \
-	done
--- a/test/jaxp/javax/xml/jaxp/unittest/stream/XMLStreamWriterTest/XMLStreamWriterTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jaxp/javax/xml/jaxp/unittest/stream/XMLStreamWriterTest/XMLStreamWriterTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019 Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -42,11 +42,11 @@
 
 /*
  * @test
- * @bug 6347190 8139584
+ * @bug 6347190 8139584 8216408
  * @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest
  * @run testng/othervm -DrunSecMngr=true stream.XMLStreamWriterTest.XMLStreamWriterTest
  * @run testng/othervm stream.XMLStreamWriterTest.XMLStreamWriterTest
- * @summary Test StAX Writer won't insert comment into element inside.
+ * @summary Tests XMLStreamWriter.
  */
 @Listeners({jaxp.library.BasePolicy.class})
 public class XMLStreamWriterTest {
@@ -94,12 +94,14 @@
     }
 
     /**
-     * Test of main method, of class TestXMLStreamWriter.
+     * Verifies that the StAX Writer won't insert comment into the element tag.
      */
     @Test
     public void testWriteComment() {
         try {
-            String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><a:html href=\"http://java.sun.com\"><!--This is comment-->java.sun.com</a:html>";
+            String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
+                    + "<a:html href=\"http://java.sun.com\">"
+                    + "<!--This is comment-->java.sun.com</a:html>";
             XMLOutputFactory f = XMLOutputFactory.newInstance();
             // f.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES,
             // Boolean.TRUE);
@@ -122,4 +124,18 @@
         }
     }
 
+    /**
+     * @bug 8216408
+     * Verifies that setDefaultNamespace accepts null.
+     *
+     * @throws Exception
+     */
+    @Test
+    public void testSetDefaultNamespace() throws Exception {
+        XMLOutputFactory f = XMLOutputFactory.newFactory();
+        f.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, true);
+        StringWriter sw = new StringWriter();
+        XMLStreamWriter xsw = f.createXMLStreamWriter(sw);
+        xsw.setDefaultNamespace(null);
+    }
 }
--- a/test/jdk/Makefile	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,44 +0,0 @@
-#
-# Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-default: all
-
-NATIVE_TEST_PATH := jdk/jtreg/native
-
-USE_FAILURE_HANDLER := true
-
-include ../TestCommon.gmk
-
-# Default make rule (runs default jdk tests)
-all: jdk_default
-	@$(ECHO) "Testing completed successfully"
-
-# ------------------------------------------------------------------
-
-jdk_% core_% svc_%:
-	$(ECHO) "Running tests: $@"
-	for each in $@; do \
-	        $(MAKE) -j 1 TEST_SELECTION=":$$each" UNIQUE_DIR=$$each jtreg_tests; \
-	done
--- a/test/jdk/ProblemList-Xcomp.txt	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/ProblemList-Xcomp.txt	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -28,4 +28,4 @@
 #############################################################################
 
 java/lang/invoke/MethodHandles/CatchExceptionTest.java 8146623 generic-all
-java/lang/Class/forName/modules/TestDriver.java 8205526 solaris-all
+java/util/concurrent/CountDownLatch/Basic.java 8195057 generic-all
--- a/test/jdk/ProblemList.txt	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/ProblemList.txt	Tue Jan 29 09:38:31 2019 -0500
@@ -559,9 +559,7 @@
 java/net/MulticastSocket/NoLoopbackPackets.java                 7122846 macosx-all
 java/net/MulticastSocket/SetLoopbackMode.java                   7122846 macosx-all
 
-java/net/MulticastSocket/Test.java                              7145658,8207404 macosx-all,aix-all
-java/net/MulticastSocket/JoinLeave.java                         8207404 aix-all
-java/net/MulticastSocket/SetGetNetworkInterfaceTest.java        8207404 aix-all
+java/net/MulticastSocket/Test.java                              7145658 macosx-all
 
 java/net/DatagramSocket/SendDatagramToBadAddress.java           7143960 macosx-all
 
@@ -581,7 +579,6 @@
 
 java/nio/file/WatchService/Basic.java                           7158947 solaris-all Solaris 11
 java/nio/file/WatchService/MayFlies.java                        7158947 solaris-all Solaris 11
-java/nio/file/WatchService/LotsOfCancels.java                   8188039 solaris-all Solaris 11
 java/nio/file/WatchService/LotsOfEvents.java                    7158947 solaris-all Solaris 11
 
 
@@ -878,4 +875,3 @@
 # jdk_jfr
 
 jdk/jfr/event/io/TestInstrumentation.java                       8202142    generic-all
-jdk/jfr/event/runtime/TestShutdownEvent.java                    8217345    generic-all
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/java/awt/FontClass/FontSize1Test.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,56 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/*
+ * @test
+ * @bug 8216965
+ * @summary verify no crash when rendering size 1 fonts
+ */
+
+import java.awt.Font;
+import java.awt.Graphics2D;
+import java.awt.GraphicsEnvironment;
+import java.awt.image.BufferedImage;
+
+public class FontSize1Test {
+
+    static final String text = "abcdefghijklmnopqrstuvwxyz";
+
+    public static void main(String[] args) {
+
+        BufferedImage bi =
+            new BufferedImage(100, 20, BufferedImage.TYPE_INT_RGB);
+        Graphics2D g2d = bi.createGraphics();
+        Font af[] =
+            GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts();
+
+        for (Font f : af) {
+            System.out.println("Looking at font " + f);
+            g2d.setFont(f);
+            g2d.getFontMetrics().getWidths();
+            g2d.drawString(text, 50, 10);
+        }
+        g2d.dispose();
+    }
+
+}
--- a/test/jdk/java/lang/invoke/CompileThresholdBootstrapTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/lang/invoke/CompileThresholdBootstrapTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -38,7 +38,7 @@
 
     @Test
     public void testBootstrap() throws Throwable {
-        Assert.assertEquals(0, (int)MethodHandles.constant(int.class, (int)0).invokeExact());
+        Assert.assertEquals((int)MethodHandles.constant(int.class, (int)0).invokeExact(), 0);
     }
 
     public static void main(String ... args) {
--- a/test/jdk/java/lang/invoke/ConstantIdentityMHTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/lang/invoke/ConstantIdentityMHTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -31,11 +31,9 @@
 
 import java.lang.invoke.MethodHandle;
 import java.lang.invoke.MethodHandles;
-import java.lang.invoke.MethodType;
-import java.util.List;
 import static java.lang.invoke.MethodHandles.*;
 import static java.lang.invoke.MethodType.*;
-import static org.testng.AssertJUnit.*;
+import static org.testng.Assert.*;
 import org.testng.annotations.*;
 
 public class ConstantIdentityMHTest {
@@ -70,9 +68,9 @@
     @Test
     void testEmpty() throws Throwable {
         MethodHandle cat = lookup().findVirtual(String.class, "concat", methodType(String.class, String.class));
-        assertEquals("xy", (String)cat.invoke("x","y"));
+        assertEquals((String)cat.invoke("x","y"), "xy");
         MethodHandle mhEmpty = MethodHandles.empty(cat.type());
-        assertEquals(null, (String)mhEmpty.invoke("x","y"));
+        assertEquals((String)mhEmpty.invoke("x","y"), null);
     }
 
     @Test
--- a/test/jdk/java/lang/invoke/FilterArgumentsTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/lang/invoke/FilterArgumentsTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -85,8 +85,8 @@
 
         void run(List<String> expected) throws Throwable {
             filters.clear();
-            assertEquals("x-0-z", (String)mh.invokeExact("x", 0, 'z'));
-            assertEquals(expected, filters);
+            assertEquals((String)mh.invokeExact("x", 0, 'z'), "x-0-z");
+            assertEquals(filters, expected);
         }
 
         static String filterA(String s) {
--- a/test/jdk/java/lang/invoke/lookup/SpecialStatic.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/lang/invoke/lookup/SpecialStatic.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -26,7 +26,7 @@
  * @summary JSR292: invokeSpecial: InternalError attempting to lookup a method
  * @modules java.base/jdk.internal.org.objectweb.asm
  * @compile -XDignore.symbol.file SpecialStatic.java
- * @run junit test.java.lang.invoke.lookup.SpecialStatic
+ * @run testng test.java.lang.invoke.lookup.SpecialStatic
  */
 package test.java.lang.invoke.lookup;
 
@@ -34,9 +34,9 @@
 import java.lang.invoke.MethodHandles;
 import java.lang.invoke.MethodType;
 import jdk.internal.org.objectweb.asm.*;
-import org.junit.Test;
+import org.testng.annotations.*;
 import static jdk.internal.org.objectweb.asm.Opcodes.*;
-import static org.junit.Assert.*;
+import static org.testng.Assert.*;
 
 /**
  * Test case:
--- a/test/jdk/java/net/MulticastSocket/JoinLeave.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/MulticastSocket/JoinLeave.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,7 +21,15 @@
  * questions.
  */
 
-/*
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.net.InetAddress;
+import java.net.MulticastSocket;
+import java.net.NetworkInterface;
+
+import jdk.test.lib.NetworkConfiguration;
+
+/**
  * @test
  * @bug 4091811 4148753 4102731
  * @summary Test java.net.MulticastSocket joinGroup and leaveGroup
@@ -29,18 +37,11 @@
  * @build jdk.test.lib.NetworkConfiguration
  *        jdk.test.lib.Platform
  * @run main JoinLeave
+ * @run main/othervm -Djava.net.preferIPv4Stack=true JoinLeave
  */
-
-import java.io.IOException;
-import java.io.UncheckedIOException;
-import java.net.InetAddress;
-import java.net.MulticastSocket;
-import java.net.NetworkInterface;
-import jdk.test.lib.NetworkConfiguration;
-
 public class JoinLeave {
 
-    public static void main(String args[]) throws IOException  {
+    public static void main(String args[]) throws IOException {
         InetAddress ip4Group = InetAddress.getByName("224.80.80.80");
         InetAddress ip6Group = InetAddress.getByName("ff02::a");
 
@@ -49,8 +50,7 @@
         nc.ip6MulticastInterfaces().forEach(nic -> joinLeave(ip6Group, nic));
     }
 
-    static void joinLeave(InetAddress group, NetworkInterface nif)
-    {
+    static void joinLeave(InetAddress group, NetworkInterface nif) {
         System.out.println("Joining:" + group + " on " + nif);
         try (MulticastSocket soc = new MulticastSocket()) {
             soc.setNetworkInterface(nif);
--- a/test/jdk/java/net/MulticastSocket/SetGetNetworkInterfaceTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/MulticastSocket/SetGetNetworkInterfaceTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,105 +21,50 @@
  * questions.
  */
 
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.net.MulticastSocket;
+import java.net.NetworkInterface;
 
-/*
+import jdk.test.lib.NetworkConfiguration;
+
+/**
  * @test
  * @bug 6458027
  * @summary Disabling IPv6 on a specific network interface causes problems.
- *
- */
-
-import java.io.IOException;
-import java.net.InetAddress;
-import java.net.MulticastSocket;
-import java.net.NetworkInterface;
-import java.net.SocketException;
-import java.util.Arrays;
-import java.util.Enumeration;
-
-
-public class SetGetNetworkInterfaceTest  {
+ * @library /test/lib
+ * @build jdk.test.lib.NetworkConfiguration
+ *        jdk.test.lib.Platform
+ * @run main SetGetNetworkInterfaceTest
+ * @run main/othervm -Djava.net.preferIPv4Stack=true SetGetNetworkInterfaceTest
+*/
+public class SetGetNetworkInterfaceTest {
 
     public static void main(String[] args) throws Exception {
-
-        boolean passed = true;
-        try {
-            MulticastSocket ms = new MulticastSocket();
-            Enumeration<NetworkInterface> networkInterfaces = NetworkInterface
-                    .getNetworkInterfaces();
-            while (networkInterfaces.hasMoreElements()) {
-                NetworkInterface netIf = networkInterfaces.nextElement();
-                if (isNetworkInterfaceTestable(netIf)) {
-                    printNetIfDetails(netIf);
-                    ms.setNetworkInterface(netIf);
-                    NetworkInterface msNetIf = ms.getNetworkInterface();
-                    if (netIf.equals(msNetIf)) {
-                        System.out.println(" OK");
-                    } else {
-                        System.out.println("FAILED!!!");
-                        printNetIfDetails(msNetIf);
-                        passed = false;
-                    }
-                    System.out.println("------------------");
-                }
-            }
+        NetworkConfiguration nc = NetworkConfiguration.probe();
+        try (MulticastSocket ms = new MulticastSocket()) {
+            nc.multicastInterfaces(true).forEach(nif -> setGetNetworkInterface(ms, nif));
         } catch (IOException e) {
             e.printStackTrace();
-            passed = false;
         }
-        if (!passed) {
-            throw new RuntimeException("Test Fail");
-        }
-        System.out.println("Test passed ");
+        System.out.println("Test passed.");
     }
 
-    private static boolean isNetworkInterfaceTestable(NetworkInterface netIf) throws Exception {
-        System.out.println("checking netif == " + netIf.getName());
-        return  (netIf.isUp() && netIf.supportsMulticast() && isIpAddrAvailable(netIf));
-    }
-
-    private static boolean isIpAddrAvailable (NetworkInterface netIf) {
-        boolean ipAddrAvailable = false;
-        byte[] nullIpAddr = {'0', '0', '0', '0'};
-        byte[] testIpAddr = null;
-
-        Enumeration<InetAddress> ipAddresses = netIf.getInetAddresses();
-        while (ipAddresses.hasMoreElements()) {
-            InetAddress testAddr = ipAddresses.nextElement();
-            testIpAddr = testAddr.getAddress();
-            if ((testIpAddr != null) && (!Arrays.equals(testIpAddr, nullIpAddr))) {
-                ipAddrAvailable = true;
-                break;
+    static void setGetNetworkInterface(MulticastSocket ms, NetworkInterface nif) {
+        try {
+            System.out.println(NetworkConfiguration.interfaceInformation(nif));
+            ms.setNetworkInterface(nif);
+            NetworkInterface msNetIf = ms.getNetworkInterface();
+            if (nif.equals(msNetIf)) {
+                System.out.println(" OK");
             } else {
-                System.out.println("ignore netif " + netIf.getName());
+                System.out.println("FAILED!!!");
+                System.out.println(NetworkConfiguration.interfaceInformation(msNetIf));
+                throw new RuntimeException("Test Fail");
             }
+            System.out.println("------------------");
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
         }
-        return ipAddrAvailable;
-    }
-
-    private static void printNetIfDetails(NetworkInterface ni)
-            throws SocketException {
-        System.out.println("Name " + ni.getName() + " index " + ni.getIndex());
-        Enumeration<InetAddress> en = ni.getInetAddresses();
-        while (en.hasMoreElements()) {
-            System.out.println(" InetAdress: " + en.nextElement());
-        }
-        System.out.println("HardwareAddress: " + createMacAddrString(ni));
-        System.out.println("loopback: " + ni.isLoopback() + "; pointToPoint: "
-                + ni.isPointToPoint() + "; virtual: " + ni.isVirtual()
-                + "; MTU: " + ni.getMTU());
-    }
-
-    private static String createMacAddrString(NetworkInterface netIf)
-            throws SocketException {
-        byte[] macAddr = netIf.getHardwareAddress();
-        StringBuilder sb = new StringBuilder();
-        if (macAddr != null) {
-            for (int i = 0; i < macAddr.length; i++) {
-                sb.append(String.format("%02X%s", macAddr[i],
-                        (i < macAddr.length - 1) ? "-" : ""));
-            }
-        }
-        return sb.toString();
     }
 }
--- a/test/jdk/java/net/MulticastSocket/Test.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/MulticastSocket/Test.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,25 +21,31 @@
  * questions.
  */
 
-/*
+import java.io.IOException;
+import java.net.DatagramPacket;
+import java.net.DatagramSocket;
+import java.net.InetAddress;
+import java.net.MulticastSocket;
+import java.net.SocketTimeoutException;
+
+import jdk.test.lib.NetworkConfiguration;
+
+/**
  * @test
  * @bug 4488458
  * @summary IPv4 and IPv6 multicasting broken on Linux
+ * @library /test/lib
+ * @build jdk.test.lib.NetworkConfiguration
+ *        jdk.test.lib.Platform
+ * @run main Test
+ * @run main/othervm -Djava.net.preferIPv4Stack=true Test
  */
-import java.net.*;
-import java.io.IOException;
-import java.util.Enumeration;
-
 public class Test {
 
     static int count = 0;
     static int failures = 0;
 
-    static boolean isSolaris = System.getProperty("os.name")
-        .toLowerCase()
-        .startsWith("sunos");
-
-    void doTest(String address) throws Exception {
+    void doTest(String address) throws IOException {
         boolean failed = false;
 
         InetAddress ia = InetAddress.getByName(address);
@@ -65,7 +71,7 @@
 
                 /* packets should be received */
 
-                for (int j=0; j<2; j++) {
+                for (int j = 0; j < 2; j++) {
                     p.setAddress(ia);
                     p.setPort(port);
 
@@ -127,67 +133,26 @@
         }
     }
 
-    static boolean isValidIpv6Address(InetAddress addr) {
-        if (! (addr instanceof Inet6Address))
-            return false;
-        if (!isSolaris)
-            return true;
-        return !(addr.isAnyLocalAddress() || addr.isLoopbackAddress());
-    }
+    void allTests() throws IOException {
+        NetworkConfiguration nc = NetworkConfiguration.probe();
 
-    void allTests() throws Exception {
-
-        /*
-         * Assume machine has IPv4 address
-         */
+        // unconditionally test IPv4 address
         doTest("224.80.80.80");
 
-        /*
-         * Check if IPv6 is enabled and the scope of the addresses
-         */
-        boolean has_ipv6 = false;
-        boolean has_siteaddress = false;
-        boolean has_linklocaladdress = false;
-        boolean has_globaladdress = false;
-
-        Enumeration nifs = NetworkInterface.getNetworkInterfaces();
-        while (nifs.hasMoreElements()) {
-            NetworkInterface ni = (NetworkInterface)nifs.nextElement();
-            Enumeration addrs = ni.getInetAddresses();
-
-            while (addrs.hasMoreElements()) {
-                InetAddress ia = (InetAddress)addrs.nextElement();
-
-                if (isValidIpv6Address(ia)) {
-                    has_ipv6 = true;
-                    if (ia.isLinkLocalAddress()) has_linklocaladdress = true;
-                    if (ia.isSiteLocalAddress()) has_siteaddress = true;
-
-                    if (!ia.isLinkLocalAddress() &&
-                        !ia.isSiteLocalAddress() &&
-                        !ia.isLoopbackAddress()) {
-                        has_globaladdress = true;
-                    }
-                }
-            }
-        }
-
-        /*
-         * If IPv6 is enabled perform multicast tests with various scopes
-         */
-        if (has_ipv6) {
+        // If IPv6 is enabled perform multicast tests with various scopes
+        if (nc.hasTestableIPv6Address()) {
             doTest("ff01::a");
         }
 
-        if (has_linklocaladdress) {
+        if (nc.hasLinkLocalAddress()) {
             doTest("ff02::a");
         }
 
-        if (has_siteaddress) {
+        if (nc.hasSiteLocalAddress()) {
             doTest("ff05::a");
         }
 
-        if (has_globaladdress) {
+        if (nc.has_globaladdress()) {
             doTest("ff0e::a");
         }
     }
@@ -198,7 +163,7 @@
         if (args.length == 0) {
             t.allTests();
         } else {
-            for (int i=0; i<args.length; i++) {
+            for (int i = 0; i < args.length; i++) {
                 t.doTest(args[i]);
             }
         }
--- a/test/jdk/java/net/Socket/ExceptionText.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/Socket/ExceptionText.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -25,12 +25,10 @@
  * @test
  * @library /test/lib
  * @build jdk.test.lib.Utils
- * @bug 8204233 8207846 8208691
+ * @bug 8204233
  * @summary Add configurable option for enhanced socket IOException messages
  * @run main/othervm
  *       ExceptionText
- * @run main/othervm
- *       ExceptionText
  *       WITHOUT_Enhanced_Text
  * @run main/othervm
  *       -Djdk.includeInExceptions=
@@ -64,7 +62,6 @@
 import java.nio.channels.AsynchronousSocketChannel;
 import java.nio.channels.ClosedChannelException;
 import java.nio.channels.SocketChannel;
-import java.security.Security;
 import java.util.concurrent.ExecutionException;
 import jdk.test.lib.Utils;
 
@@ -73,33 +70,20 @@
     enum TestTarget {SOCKET, CHANNEL, ASYNC_CHANNEL};
 
     public static void main(String args[]) throws Exception {
-        if (args.length == 0) {
-            testSecProp();
+        String passOrFail = args[0];
+        boolean expectEnhancedText;
+        if (passOrFail.equals("expectEnhancedText")) {
+            expectEnhancedText = true;
         } else {
-            String passOrFail = args[0];
-            boolean expectEnhancedText;
-            if (passOrFail.equals("expectEnhancedText")) {
-                expectEnhancedText = true;
-            } else {
-                expectEnhancedText = false;
-            }
-            test(expectEnhancedText);
+            expectEnhancedText = false;
         }
+        test(expectEnhancedText);
     }
 
     static final InetSocketAddress dest  = Utils.refusingEndpoint();
     static final String PORT = ":" + Integer.toString(dest.getPort());
     static final String HOST = dest.getHostString();
 
-    static void testSecProp() {
-        String incInExc = Security.getProperty("jdk.includeInExceptions");
-        if (incInExc != null) {
-            throw new RuntimeException("Test failed: default value of " +
-                "jdk.includeInExceptions security property is not null: " +
-                incInExc);
-        }
-    }
-
     static void test(boolean withProperty) {
         // Socket
         IOException e = getException(TestTarget.SOCKET);
@@ -132,10 +116,11 @@
     static IOException getException(TestTarget target) {
         try {
             if (target == TestTarget.SOCKET) {
-                Socket s = new Socket();
-                s.connect(dest);
+                try (Socket s = new Socket()) {
+                    s.connect(dest);
+                }
             } else if (target == TestTarget.CHANNEL) {
-                SocketChannel c = SocketChannel.open(dest);
+                SocketChannel.open(dest);
             } else if (target == TestTarget.ASYNC_CHANNEL) {
                 AsynchronousSocketChannel c = AsynchronousSocketChannel.open();
                 try {
--- a/test/jdk/java/net/Socks/SocksIPv6Test.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/Socks/SocksIPv6Test.java	Tue Jan 29 09:38:31 2019 -0500
@@ -173,7 +173,7 @@
             server.stop(1);
         }
         if (socks != null) {
-            socks.terminate();
+            socks.close();
         }
     }
 }
--- a/test/jdk/java/net/Socks/SocksServer.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/Socks/SocksServer.java	Tue Jan 29 09:38:31 2019 -0500
@@ -24,7 +24,7 @@
 import java.io.*;
 import java.util.HashMap;
 
-public class SocksServer extends Thread {
+public class SocksServer extends Thread implements Closeable {
     // Some useful SOCKS constant
 
     static final int PROTO_VERS4        = 4;
@@ -503,7 +503,7 @@
         return port;
     }
 
-    public void terminate() {
+    public void close() {
         done = true;
         try { server.close(); } catch (IOException unused) {}
     }
--- a/test/jdk/java/net/Socks/SocksV4Test.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/Socks/SocksV4Test.java	Tue Jan 29 09:38:31 2019 -0500
@@ -26,36 +26,80 @@
  * @bug 4727547
  * @summary SocksSocketImpl throws NullPointerException
  * @build SocksServer
- * @run main SocksV4Test
+ * @run main/othervm SocksV4Test
  */
 
+import java.io.IOException;
 import java.net.*;
 
 public class SocksV4Test {
 
     // An unresolvable host
     static final String HOSTNAME = "doesnot.exist.invalid";
+    static final String USER = "johndoe";
+    static final String PASSWORD = "helloworld";
 
     public static void main(String[] args) throws Exception {
+        Authenticator.setDefault(new Auth());
+        UHETest();
+        getLocalPortTest();
+    }
+
+    static class Auth extends Authenticator {
+        protected PasswordAuthentication getPasswordAuthentication() {
+            return new PasswordAuthentication(USER, PASSWORD.toCharArray());
+        }
+    }
+
+    public static void getLocalPortTest() throws Exception {
+        // We actually use V5 for this test because that is the default
+        // protocol version used by the client and it doesn't really handle
+        // down grading very well.
+        try (SocksServer srvr = new SocksServer(0, false);
+             ServerSocket ss = new ServerSocket(0)) {
+
+            srvr.addUser(USER, PASSWORD);
+            int serverPort = ss.getLocalPort();
+            srvr.start();
+            int proxyPort = srvr.getPort();
+            System.out.printf("Server port %d, Proxy port %d\n", serverPort, proxyPort);
+            Proxy sp = new Proxy(Proxy.Type.SOCKS,
+                    new InetSocketAddress("localhost", proxyPort));
+            // Let's create an unresolved address
+            InetSocketAddress ad = new InetSocketAddress("127.0.0.1", serverPort);
+            try (Socket s = new Socket(sp)) {
+                s.connect(ad, 10000);
+                int pp = s.getLocalPort();
+                System.out.println("Local port = " + pp);
+                if (pp == serverPort || pp == proxyPort)
+                    throw new RuntimeException("wrong port returned");
+            } catch (UnknownHostException ex) {
+                throw new RuntimeException(ex);
+            } catch (IOException ioe) {
+                throw new RuntimeException(ioe);
+            }
+        }
+    }
+
+    public static void UHETest() throws Exception {
         // sanity before running the test
         assertUnresolvableHost(HOSTNAME);
 
         // Create a SOCKS V4 proxy
-        SocksServer srvr = new SocksServer(0, true);
-        srvr.start();
-        Proxy sp = new Proxy(Proxy.Type.SOCKS,
-                             new InetSocketAddress("localhost", srvr.getPort()));
-        // Let's create an unresolved address
-        InetSocketAddress ad = new InetSocketAddress(HOSTNAME, 1234);
-        try (Socket s = new Socket(sp)) {
-            s.connect(ad, 10000);
-        } catch (UnknownHostException ex) {
-            // OK, that's what we expected
-        } catch (NullPointerException npe) {
-            // Not OK, this used to be the bug
-            throw new RuntimeException("Got a NUllPointerException");
-        } finally {
-            srvr.terminate();
+        try (SocksServer srvr = new SocksServer(0, true)) {
+            srvr.start();
+            Proxy sp = new Proxy(Proxy.Type.SOCKS,
+                    new InetSocketAddress("localhost", srvr.getPort()));
+            // Let's create an unresolved address
+            InetSocketAddress ad = new InetSocketAddress(HOSTNAME, 1234);
+            try (Socket s = new Socket(sp)) {
+                s.connect(ad, 10000);
+            } catch (UnknownHostException ex) {
+                // OK, that's what we expected
+            } catch (NullPointerException npe) {
+                // Not OK, this used to be the bug
+                throw new RuntimeException("Got a NUllPointerException");
+            }
         }
     }
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/java/net/httpclient/GZIPInputStreamTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,650 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/*
+ * @test
+ * @bug 8217264
+ * @summary Tests that you can map an InputStream to a GZIPInputStream
+ * @library /test/lib http2/server
+ * @build jdk.test.lib.net.SimpleSSLContext
+ * @modules java.base/sun.net.www.http
+ *          java.net.http/jdk.internal.net.http.common
+ *          java.net.http/jdk.internal.net.http.frame
+ *          java.net.http/jdk.internal.net.http.hpack
+ * @run testng/othervm GZIPInputStreamTest
+ */
+
+import com.sun.net.httpserver.HttpServer;
+import com.sun.net.httpserver.HttpsConfigurator;
+import com.sun.net.httpserver.HttpsServer;
+import jdk.test.lib.net.SimpleSSLContext;
+import org.testng.annotations.AfterTest;
+import org.testng.annotations.BeforeTest;
+import org.testng.annotations.DataProvider;
+import org.testng.annotations.Test;
+
+import javax.net.ssl.SSLContext;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.io.UncheckedIOException;
+import java.net.InetAddress;
+import java.net.InetSocketAddress;
+import java.net.URI;
+import java.net.http.HttpClient;
+import java.net.http.HttpRequest;
+import java.net.http.HttpResponse;
+import java.net.http.HttpResponse.BodyHandler;
+import java.net.http.HttpResponse.BodyHandlers;
+import java.net.http.HttpResponse.BodySubscribers;
+import java.nio.charset.StandardCharsets;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.Executor;
+import java.util.concurrent.Executors;
+import java.util.function.Function;
+import java.util.function.Supplier;
+import java.util.zip.GZIPInputStream;
+import java.util.zip.GZIPOutputStream;
+
+import static java.lang.System.out;
+import static java.nio.charset.StandardCharsets.UTF_8;
+import static org.testng.Assert.assertEquals;
+
+public class GZIPInputStreamTest implements HttpServerAdapters {
+
+    SSLContext sslContext;
+    HttpTestServer httpTestServer;    // HTTP/1.1    [ 4 servers ]
+    HttpTestServer httpsTestServer;   // HTTPS/1.1
+    HttpTestServer http2TestServer;   // HTTP/2 ( h2c )
+    HttpTestServer https2TestServer;  // HTTP/2 ( h2  )
+    String httpURI;
+    String httpsURI;
+    String http2URI;
+    String https2URI;
+
+    static final int ITERATION_COUNT = 3;
+    // a shared executor helps reduce the amount of threads created by the test
+    // this test will block if the executor doesn't have at least two threads.
+    static final Executor executor = Executors.newFixedThreadPool(2);
+    static final Executor singleThreadExecutor = Executors.newSingleThreadExecutor();
+
+    public static final String LOREM_IPSUM =
+            "Lorem ipsum dolor sit amet, consectetur adipiscing elit. "
+                    + "Proin et lorem a sem faucibus finibus. "
+                    + "Nam nisl nibh, elementum laoreet rutrum quis, lobortis at sem. "
+                    + "Aenean purus libero, vehicula sed auctor ac, finibus commodo massa. "
+                    + "Etiam dapibus nisl ex, viverra iaculis sapien suscipit sit amet. "
+                    + "Phasellus fringilla id orci sit amet convallis. "
+                    + "Nam suscipit tempor felis sed feugiat. "
+                    + "Mauris quis viverra justo, vitae vulputate turpis. "
+                    + "Ut eu orci eget ante faucibus volutpat quis quis urna. "
+                    + "Ut porttitor mattis diam, ac sollicitudin ligula volutpat vel. "
+                    + "Quisque pretium leo sed augue lacinia, eu mollis dui tempor.\n\n"
+                    + "Nullam at mi porttitor, condimentum enim et, tristique felis. "
+                    + "Nulla ante elit, interdum id ante ac, dignissim suscipit urna. "
+                    + "Sed rhoncus felis eget placerat tincidunt. "
+                    + "Duis pellentesque, eros et laoreet lacinia, urna arcu elementum metus, "
+                    + "et tempor nibh ante vel odio. "
+                    + "Donec et dolor posuere, sagittis libero sit amet, imperdiet ligula. "
+                    + "Sed aliquam nulla congue bibendum hendrerit. "
+                    + "Morbi ut tincidunt turpis. "
+                    + "Nullam semper ipsum et sem imperdiet, sit amet commodo turpis euismod. "
+                    + "Nullam aliquet metus id libero elementum, ut pulvinar urna gravida. "
+                    + "Nullam non rhoncus diam. "
+                    + "Mauris sagittis bibendum odio, sed accumsan sem ullamcorper ut.\n\n"
+                    + "Proin malesuada nisl a quam dignissim rhoncus. "
+                    + "Pellentesque vitae dui velit. "
+                    + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. "
+                    + "Vivamus sagittis magna id magna vestibulum, nec lacinia odio maximus. "
+                    + "Nunc commodo, nisl non sagittis posuere, tortor ligula accumsan diam, "
+                    + "a rhoncus augue velit quis enim. "
+                    + "Nulla et dictum mauris. "
+                    + "Vivamus et accumsan mauris, et tincidunt nunc.\n\n"
+                    + "Nullam non pharetra lectus. "
+                    + "Fusce lobortis sapien ante, quis egestas tellus tincidunt efficitur. "
+                    + "Proin tempus mollis urna, sit amet congue diam eleifend in. "
+                    + "Ut auctor metus ipsum, at porta turpis consectetur sed. "
+                    + "Ut malesuada euismod massa, ut elementum nisi mattis eget. "
+                    + "Donec ultrices vel dolor at convallis. "
+                    + "Nunc eget felis nec nunc faucibus finibus. "
+                    + "Curabitur nec auctor metus, sit amet tristique lorem. "
+                    + "Donec tempus fringilla suscipit. Cras sit amet ante elit. "
+                    + "Ut sodales sagittis eros quis cursus. "
+                    + "Maecenas finibus ante quis euismod rutrum. "
+                    + "Aenean scelerisque placerat nisi. "
+                    + "Fusce porta, nibh vel efficitur sodales, urna eros consequat tellus, "
+                    + "at fringilla ex justo in mi. "
+                    + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. "
+                    + "Morbi accumsan, justo nec tincidunt pretium, justo ex consectetur ante, "
+                    + "nec euismod diam velit vitae quam.\n\n"
+                    + "Vestibulum ante ipsum primis in faucibus orci luctus et "
+                    + "ultrices posuere cubilia Curae; "
+                    + "Praesent eget consequat nunc, vel dapibus nulla. "
+                    + "Maecenas egestas luctus consectetur. "
+                    + "Duis lacus risus, sollicitudin sit amet justo sed, "
+                    + "ultrices facilisis sapien. "
+                    + "Mauris eget fermentum risus. "
+                    + "Suspendisse potenti. Nam at tempor risus. "
+                    + "Quisque lacus augue, dictum vel interdum quis, interdum et mi. "
+                    + "In purus mauris, pellentesque et lectus eget, condimentum pretium odio."
+                    + " Donec imperdiet congue laoreet. "
+                    + "Cras pharetra hendrerit purus ac efficitur. \n";
+
+
+
+    @DataProvider(name = "variants")
+    public Object[][] variants() {
+        return new Object[][]{
+                { httpURI,   false },
+                { httpURI,   true },
+                { httpsURI,  false },
+                { httpsURI,  true },
+                { http2URI,  false },
+                { http2URI,  true },
+                { https2URI, false },
+                { https2URI, true },
+        };
+    }
+
+    final ReferenceTracker TRACKER = ReferenceTracker.INSTANCE;
+    HttpClient newHttpClient() {
+        return TRACKER.track(HttpClient.newBuilder()
+                         .executor(executor)
+                         .sslContext(sslContext)
+                         .build());
+    }
+
+    HttpClient newSingleThreadClient() {
+        return TRACKER.track(HttpClient.newBuilder()
+                .executor(singleThreadExecutor)
+                .sslContext(sslContext)
+                .build());
+    }
+
+    HttpClient newInLineClient() {
+        return TRACKER.track(HttpClient.newBuilder()
+                .executor((r) -> r.run() )
+                .sslContext(sslContext)
+                .build());
+    }
+
+    @Test(dataProvider = "variants")
+    public void testPlainSyncAsString(String uri, boolean sameClient) throws Exception {
+        out.println("\nSmoke test: verify that the result we get from the server is correct.");
+        out.println("Uses plain send() and `asString` to get the plain string.");
+        out.println("Uses single threaded executor");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newSingleThreadClient(); // should work with 1 single thread
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri +"/txt/LoremIpsum.txt"))
+                    .build();
+            BodyHandler<String> handler = BodyHandlers.ofString(UTF_8);
+            HttpResponse<String> response = client.send(req, handler);
+            String lorem = response.body();
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testPlainSyncAsInputStream(String uri, boolean sameClient) throws Exception {
+        out.println("Uses plain send() and `asInputStream` - calls readAllBytes() from main thread");
+        out.println("Uses single threaded executor");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newSingleThreadClient(); // should work with 1 single thread
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/txt/LoremIpsum.txt"))
+                    .build();
+            BodyHandler<InputStream> handler = BodyHandlers.ofInputStream();
+            HttpResponse<InputStream> response = client.send(req, handler);
+            String lorem = new String(response.body().readAllBytes(), UTF_8);
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testGZIPSyncAsInputStream(String uri, boolean sameClient) throws Exception {
+        out.println("Uses plain send() and `asInputStream` - " +
+                "creates GZIPInputStream and calls readAllBytes() from main thread");
+        out.println("Uses single threaded executor");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newSingleThreadClient(); // should work with 1 single thread
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/gz/LoremIpsum.txt.gz"))
+                    .build();
+            BodyHandler<InputStream> handler = BodyHandlers.ofInputStream();
+            HttpResponse<InputStream> response = client.send(req, handler);
+            GZIPInputStream gz = new GZIPInputStream(response.body());
+            String lorem = new String(gz.readAllBytes(), UTF_8);
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testGZIPSyncAsGZIPInputStream(String uri, boolean sameClient) throws Exception {
+        out.println("Uses plain send() and a mapping subscriber to "+
+                "create the GZIPInputStream. Calls readAllBytes() from main thread");
+        out.println("Uses a fixed thread pool executor with 2 thread");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newHttpClient(); // needs at least 2 threads
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/gz/LoremIpsum.txt.gz"))
+                    .build();
+            // This is dangerous, because the finisher will block.
+            // We support this, but the executor must have enough threads.
+            BodyHandler<InputStream> handler = new GZIPBodyHandler();
+            HttpResponse<InputStream> response = client.send(req, handler);
+            String lorem = new String(response.body().readAllBytes(), UTF_8);
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testGZIPSyncAsGZIPInputStreamSupplier(String uri, boolean sameClient) throws Exception {
+        out.println("Uses plain send() and a mapping subscriber to "+
+                "create a Supplier<GZIPInputStream>. Calls Supplier.get() " +
+                "and readAllBytes() from main thread");
+        out.println("Uses a single threaded executor");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newSingleThreadClient(); // should work with 1 single thread
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/gz/LoremIpsum.txt.gz"))
+                    .build();
+            // This is dangerous, because the finisher will block.
+            // We support this, but the executor must have enough threads.
+            BodyHandler<Supplier<InputStream>> handler = new BodyHandler<Supplier<InputStream>>() {
+                 public HttpResponse.BodySubscriber<Supplier<InputStream>> apply(
+                         HttpResponse.ResponseInfo responseInfo)
+                 {
+                    String contentType = responseInfo.headers().firstValue("Content-Encoding")
+                            .orElse("identity");
+                    out.println("Content-Encoding: " + contentType);
+                    if (contentType.equalsIgnoreCase("gzip")) {
+                        // This is dangerous. Blocking in the mapping function can wedge the
+                        // response. We do support it provided that there enough thread in
+                        // the executor.
+                        return BodySubscribers.mapping(BodySubscribers.ofInputStream(),
+                                (is) -> (() -> {
+                                    try {
+                                        return new GZIPInputStream(is);
+                                    } catch (IOException io) {
+                                        throw new UncheckedIOException(io);
+                                    }
+                                }));
+                    } else return BodySubscribers.mapping(BodySubscribers.ofInputStream(),
+                            (is) -> (() -> is));
+                }
+            };
+            HttpResponse<Supplier<InputStream>> response = client.send(req, handler);
+            String lorem = new String(response.body().get().readAllBytes(), UTF_8);
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testPlainAsyncAsInputStreamBlocks(String uri, boolean sameClient) throws Exception {
+        out.println("Uses sendAsync() and `asInputStream`. Registers a dependent action "+
+                "that calls readAllBytes()");
+        out.println("Uses a fixed thread pool executor with two threads");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newHttpClient(); // needs at least 2 threads
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/txt/LoremIpsum.txt"))
+                    .build();
+            BodyHandler<InputStream> handler = BodyHandlers.ofInputStream();
+            CompletableFuture<HttpResponse<InputStream>> responseCF = client.sendAsync(req, handler);
+            // This is dangerous. Blocking in the mapping function can wedge the
+            // response. We do support it provided that there enough threads in
+            // the executor.
+            String lorem = responseCF.thenApply((r) -> {
+                try {
+                    return new String(r.body().readAllBytes(), UTF_8);
+                } catch (IOException io) {
+                    throw new UncheckedIOException(io);
+                }
+            }).join();
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testGZIPAsyncAsGZIPInputStreamBlocks(String uri, boolean sameClient) throws Exception {
+        out.println("Uses sendAsync() and a mapping subscriber to create a GZIPInputStream. " +
+                 "Registers a dependent action that calls readAllBytes()");
+        out.println("Uses a fixed thread pool executor with two threads");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newHttpClient(); // needs at least 2 threads
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/gz/LoremIpsum.txt.gz"))
+                    .build();
+            BodyHandler<InputStream> handler = new GZIPBodyHandler();
+            CompletableFuture<HttpResponse<InputStream>> responseCF = client.sendAsync(req, handler);
+            // This is dangerous - we support this, but it can block
+            // if there are not enough threads available.
+            // Correct custom code should use thenApplyAsync instead.
+            String lorem = responseCF.thenApply((r) -> {
+                try {
+                    return new String(r.body().readAllBytes(), UTF_8);
+                } catch (IOException io) {
+                    throw new UncheckedIOException(io);
+                }
+            }).join();
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testGZIPSyncAsGZIPInputStreamBlocks(String uri, boolean sameClient) throws Exception {
+        out.println("Uses sendAsync() and a mapping subscriber to create a GZIPInputStream," +
+                "which is mapped again using a mapping subscriber " +
+                "to call readAllBytes() and map to String");
+        out.println("Uses a fixed thread pool executor with two threads");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newHttpClient(); // needs at least 2 threads
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/gz/LoremIpsum.txt.gz"))
+                    .build();
+            // This is dangerous. Blocking in the mapping function can wedge the
+            // response. We do support it provided that there enough thread in
+            // the executor.
+            BodyHandler<String> handler = new MappingBodyHandler<>(new GZIPBodyHandler(),
+                    (InputStream is) ->  {
+                        try {
+                            return new String(is.readAllBytes(), UTF_8);
+                        } catch(IOException io) {
+                            throw new UncheckedIOException(io);
+                        }
+                    });
+            HttpResponse<String> response = client.send(req, handler);
+            String lorem = response.body();
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    @Test(dataProvider = "variants")
+    public void testGZIPSyncAsGZIPInputStreamSupplierInline(String uri, boolean sameClient) throws Exception {
+        out.println("Uses plain send() and a mapping subscriber to "+
+                "create a Supplier<GZIPInputStream>. Calls Supplier.get() " +
+                "and readAllBytes() from main thread");
+        out.println("Uses an inline executor (no threads)");
+        HttpClient client = null;
+        for (int i=0; i< ITERATION_COUNT; i++) {
+            if (!sameClient || client == null)
+                client = newInLineClient(); // should even work with no threads
+
+            HttpRequest req = HttpRequest.newBuilder(URI.create(uri + "/gz/LoremIpsum.txt.gz"))
+                    .build();
+            // This is dangerous, because the finisher will block.
+            // We support this, but the executor must have enough threads.
+            BodyHandler<Supplier<InputStream>> handler = new BodyHandler<Supplier<InputStream>>() {
+                public HttpResponse.BodySubscriber<Supplier<InputStream>> apply(
+                        HttpResponse.ResponseInfo responseInfo)
+                {
+                    String contentType = responseInfo.headers().firstValue("Content-Encoding")
+                            .orElse("identity");
+                    out.println("Content-Encoding: " + contentType);
+                    if (contentType.equalsIgnoreCase("gzip")) {
+                        // This is dangerous. Blocking in the mapping function can wedge the
+                        // response. We do support it provided that there enough thread in
+                        // the executor.
+                        return BodySubscribers.mapping(BodySubscribers.ofInputStream(),
+                                (is) -> (() -> {
+                                    try {
+                                        return new GZIPInputStream(is);
+                                    } catch (IOException io) {
+                                        throw new UncheckedIOException(io);
+                                    }
+                                }));
+                    } else return BodySubscribers.mapping(BodySubscribers.ofInputStream(),
+                            (is) -> (() -> is));
+                }
+            };
+            HttpResponse<Supplier<InputStream>> response = client.send(req, handler);
+            String lorem = new String(response.body().get().readAllBytes(), UTF_8);
+            if (!LOREM_IPSUM.equals(lorem)) {
+                out.println("Response doesn't match");
+                out.println("[" + LOREM_IPSUM + "] != [" + lorem + "]");
+                assertEquals(LOREM_IPSUM, lorem);
+            } else {
+                out.println("Received expected response.");
+            }
+        }
+    }
+
+    static final class GZIPBodyHandler implements BodyHandler<InputStream> {
+        @Override
+        public HttpResponse.BodySubscriber<InputStream> apply(HttpResponse.ResponseInfo responseInfo) {
+            String contentType = responseInfo.headers().firstValue("Content-Encoding")
+                    .orElse("identity");
+            out.println("Content-Encoding: " + contentType);
+            if (contentType.equalsIgnoreCase("gzip")) {
+                // This is dangerous. Blocking in the mapping function can wedge the
+                // response. We do support it provided that there enough thread in
+                // the executor.
+                return BodySubscribers.mapping(BodySubscribers.ofInputStream(),
+                        (is) -> {
+                    try {
+                        return new GZIPInputStream(is);
+                    } catch (IOException io) {
+                        throw new UncheckedIOException(io);
+                    }
+                });
+            } else return BodySubscribers.ofInputStream();
+        }
+    }
+
+    static final class MappingBodyHandler<T,U> implements BodyHandler<U> {
+        final BodyHandler<T> upstream;
+        final Function<? super T,? extends U> finisher;
+        MappingBodyHandler(BodyHandler<T> upstream, Function<T,U> finisher) {
+            this.upstream = upstream;
+            this.finisher = finisher;
+        }
+        @Override
+        public HttpResponse.BodySubscriber<U> apply(HttpResponse.ResponseInfo responseInfo) {
+            return BodySubscribers.mapping(upstream.apply(responseInfo), finisher);
+        }
+    }
+
+    static String serverAuthority(HttpServer server) {
+        return InetAddress.getLoopbackAddress().getHostName() + ":"
+                + server.getAddress().getPort();
+    }
+
+    @BeforeTest
+    public void setup() throws Exception {
+        sslContext = new SimpleSSLContext().get();
+        if (sslContext == null)
+            throw new AssertionError("Unexpected null sslContext");
+
+        HttpTestHandler plainHandler = new LoremIpsumPlainHandler();
+        HttpTestHandler gzipHandler  = new LoremIpsumGZIPHandler();
+
+        // HTTP/1.1
+        InetSocketAddress sa = new InetSocketAddress(InetAddress.getLoopbackAddress(), 0);
+        httpTestServer = HttpTestServer.of(HttpServer.create(sa, 0));
+        httpTestServer.addHandler(plainHandler, "/http1/chunk/txt");
+        httpTestServer.addHandler(gzipHandler,  "/http1/chunk/gz");
+        httpURI = "http://" + httpTestServer.serverAuthority() + "/http1/chunk";
+
+        HttpsServer httpsServer = HttpsServer.create(sa, 0);
+        httpsServer.setHttpsConfigurator(new HttpsConfigurator(sslContext));
+        httpsTestServer = HttpTestServer.of(httpsServer);
+        httpsTestServer.addHandler(plainHandler, "/https1/chunk/txt");
+        httpsTestServer.addHandler(gzipHandler, "/https1/chunk/gz");
+        httpsURI = "https://" + httpsTestServer.serverAuthority() + "/https1/chunk";
+
+        // HTTP/2
+        http2TestServer = HttpTestServer.of(new Http2TestServer("localhost", false, 0));
+        http2TestServer.addHandler(plainHandler, "/http2/chunk/txt");
+        http2TestServer.addHandler(gzipHandler, "/http2/chunk/gz");
+        http2URI = "http://" + http2TestServer.serverAuthority() + "/http2/chunk";
+
+        https2TestServer = HttpTestServer.of(new Http2TestServer("localhost", true, sslContext));
+        https2TestServer.addHandler(plainHandler, "/https2/chunk/txt");
+        https2TestServer.addHandler(gzipHandler, "/https2/chunk/gz");
+        https2URI = "https://" + https2TestServer.serverAuthority() + "/https2/chunk";
+
+        httpTestServer.start();
+        httpsTestServer.start();
+        http2TestServer.start();
+        https2TestServer.start();
+    }
+
+    @AfterTest
+    public void teardown() throws Exception {
+        Thread.sleep(100);
+        AssertionError fail = TRACKER.check(500);
+        try {
+            httpTestServer.stop();
+            httpsTestServer.stop();
+            http2TestServer.stop();
+            https2TestServer.stop();
+        } finally {
+            if (fail != null) {
+                throw fail;
+            }
+        }
+    }
+
+
+    static class LoremIpsumPlainHandler implements HttpTestHandler {
+        @Override
+        public void handle(HttpTestExchange t) throws IOException {
+            try {
+                out.println("LoremIpsumPlainHandler received request to " + t.getRequestURI());
+                t.getResponseHeaders().addHeader("Content-Encoding", "identity");
+                t.sendResponseHeaders(200, -1);
+                long size = 0;
+                try (OutputStream os = t.getResponseBody()) {
+                    for (String s : LOREM_IPSUM.split("\n")) {
+                        byte[] buf = s.getBytes(StandardCharsets.UTF_8);
+                        System.out.println("Writing " + (buf.length + 1) + " bytes...");
+                        os.write(buf);
+                        os.write('\n');
+                        os.flush();
+                        size += buf.length + 1;
+                    }
+                } finally {
+                    System.out.println("Sent " + size + " bytes");
+                }
+            } catch (IOException | RuntimeException | Error e) {
+                e.printStackTrace();
+                throw e;
+            }
+        }
+    }
+
+    static class LoremIpsumGZIPHandler implements HttpTestHandler {
+        @Override
+        public void handle(HttpTestExchange t) throws IOException {
+            try {
+                out.println("LoremIpsumGZIPHandler received request to " + t.getRequestURI());
+                t.getResponseHeaders().addHeader("Content-Encoding", "gzip");
+                t.sendResponseHeaders(200, -1);
+                long size = 0;
+                try (GZIPOutputStream os =
+                             new GZIPOutputStream(t.getResponseBody())) {
+                    for (String s : LOREM_IPSUM.split("\n")) {
+                        byte[] buf = s.getBytes(StandardCharsets.UTF_8);
+                        System.out.println("Writing and compressing "
+                                + (buf.length + 1) + " uncompressed bytes...");
+                        os.write(buf);
+                        os.write('\n');
+                        os.flush();
+                        size += buf.length + 1;
+                    }
+                } finally {
+                    System.out.println("Sent and compressed " + size + " uncompressed bytes");
+                }
+            } catch (IOException | RuntimeException | Error e) {
+                e.printStackTrace();
+                throw e;
+            }
+        }
+    }
+
+}
--- a/test/jdk/java/net/httpclient/MaxStreams.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/MaxStreams.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -105,6 +105,7 @@
 
     @Test(dataProvider = "uris", timeOut=20000)
     void testAsString(String uri) throws Exception {
+        System.err.println("Semaphore acquire");
         canStartTestRun.acquire();
         latch = new CountDownLatch(1);
         handler.setLatch(latch);
@@ -116,16 +117,19 @@
                                          .GET()
                                          .build();
         // send warmup to ensure we only have one Http2Connection
+        System.err.println("Sending warmup request");
         HttpResponse<String> warmup = client.send(request, BodyHandlers.ofString());
         if (warmup.statusCode() != 200 || !warmup.body().equals(RESPONSE))
             throw new RuntimeException();
 
         for (int i=0;i<MAX_STREAMS+1; i++) {
+            System.err.println("Sending request " + i);
             responses.add(client.sendAsync(request, BodyHandlers.ofString()));
         }
 
         // wait until we get local exception before allow server to proceed
         try {
+            System.err.println("Waiting for first exception");
             CompletableFuture.anyOf(responses.toArray(new CompletableFuture<?>[0])).join();
         } catch (Exception ee) {
             System.err.println("Expected exception 1 " + ee);
@@ -135,6 +139,7 @@
 
         // check the first MAX_STREAMS requests succeeded
         try {
+            System.err.println("Waiting for second exception");
             CompletableFuture.allOf(responses.toArray(new CompletableFuture<?>[0])).join();
             System.err.println("Did not get Expected exception 2 ");
         } catch (Exception ee) {
@@ -161,6 +166,7 @@
             throw new RuntimeException(msg);
         }
 
+        System.err.println("Sending last request");
         // make sure it succeeds now as number of streams == 0 now
         HttpResponse<String> warmdown = client.send(request, BodyHandlers.ofString());
         if (warmdown.statusCode() != 200 || !warmdown.body().equals(RESPONSE))
@@ -183,8 +189,8 @@
         http2TestServer.start();
 
         https2TestServer = new Http2TestServer("localhost", true, 0, exec, 10, props, ctx);
-        https2TestServer.addHandler(handler, "/http2/fixed");
-        https2FixedURI = "https://" + https2TestServer.serverAuthority()+ "/http2/fixed";
+        https2TestServer.addHandler(handler, "/https2/fixed");
+        https2FixedURI = "https://" + https2TestServer.serverAuthority()+ "/https2/fixed";
         https2TestServer.start();
     }
 
@@ -196,7 +202,7 @@
 
     class Http2FixedHandler implements Http2Handler {
         final AtomicInteger counter = new AtomicInteger(0);
-        CountDownLatch latch;
+        volatile CountDownLatch latch;
 
         synchronized void setLatch(CountDownLatch latch) {
             this.latch = latch;
@@ -218,9 +224,9 @@
                     // Wait for latch.
                     try {
                         // don't send any replies until all requests are sent
-                        System.err.println("latch await");
+                        System.err.println("Latch await");
                         getLatch().await();
-                        System.err.println("latch resume");
+                        System.err.println("Latch resume");
                     } catch (InterruptedException ee) {}
                 }
                 t.sendResponseHeaders(200, RESPONSE.length());
@@ -230,6 +236,7 @@
                 // but server should only see MAX_STREAMS + 2 in total. One is rejected by client
                 // counter c captured before increment so final value is MAX_STREAMS + 1
                 if (c == MAX_STREAMS + 1) {
+                    System.err.println("Semaphore release");
                     counter.set(0);
                     canStartTestRun.release();
                 }
--- a/test/jdk/java/net/httpclient/ProxyServer.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/ProxyServer.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -25,6 +25,9 @@
 import java.io.*;
 import java.util.*;
 import java.security.*;
+import static java.nio.charset.StandardCharsets.UTF_8;
+import static java.util.Arrays.asList;
+import static java.util.stream.Collectors.toList;
 
 /**
  * A minimal proxy server that supports CONNECT tunneling. It does not do
@@ -37,6 +40,18 @@
     ServerSocket listener;
     int port;
     volatile boolean debug;
+    private final Credentials credentials;  // may be null
+
+    private static class Credentials {
+        private final String name;
+        private final String password;
+        private Credentials(String name, String password) {
+            this.name = name;
+            this.password = password;
+        }
+        public String name() { return name; }
+        public String password() { return password; }
+    }
 
     /**
      * Create proxy on port (zero means don't care). Call getPort()
@@ -46,19 +61,42 @@
         this(port, false);
     }
 
-    public ProxyServer(Integer port, Boolean debug) throws IOException {
+    public ProxyServer(Integer port,
+                       Boolean debug,
+                       String username,
+                       String password)
+        throws IOException
+    {
+        this(port, debug, new Credentials(username, password));
+    }
+
+    public ProxyServer(Integer port,
+                       Boolean debug)
+        throws IOException
+    {
+        this(port, debug, null);
+    }
+
+    public ProxyServer(Integer port,
+                       Boolean debug,
+                       Credentials credentials)
+        throws IOException
+    {
         this.debug = debug;
         listener = new ServerSocket();
         listener.setReuseAddress(false);
         listener.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), port));
         this.port = listener.getLocalPort();
+        this.credentials = credentials;
         setName("ProxyListener");
         setDaemon(true);
         connections = new LinkedList<>();
         start();
     }
 
-    public ProxyServer(String s) {  }
+    public ProxyServer(String s) {
+        credentials = null;
+    }
 
     /**
      * Returns the port number this proxy is listening on
@@ -194,16 +232,69 @@
             return -1;
         }
 
+        // Checks credentials in the request against those allowable by the proxy.
+        private boolean authorized(Credentials credentials,
+                                   List<String> requestHeaders) {
+            List<String> authorization = requestHeaders.stream()
+                    .filter(n -> n.toLowerCase(Locale.US).startsWith("proxy-authorization"))
+                    .collect(toList());
+
+            if (authorization.isEmpty())
+                return false;
+
+            if (authorization.size() != 1) {
+                throw new IllegalStateException("Authorization unexpected count:" + authorization);
+            }
+            String value = authorization.get(0).substring("proxy-authorization".length()).trim();
+            if (!value.startsWith(":"))
+                throw new IllegalStateException("Authorization malformed: " + value);
+            value = value.substring(1).trim();
+
+            if (!value.startsWith("Basic "))
+                throw new IllegalStateException("Authorization not Basic: " + value);
+
+            value = value.substring("Basic ".length());
+            String values = new String(Base64.getDecoder().decode(value), UTF_8);
+            int sep = values.indexOf(':');
+            if (sep < 1) {
+                throw new IllegalStateException("Authorization no colon: " +  values);
+            }
+            String name = values.substring(0, sep);
+            String password = values.substring(sep + 1);
+
+            if (name.equals(credentials.name()) && password.equals(credentials.password()))
+                return true;
+
+            return false;
+        }
+
         public void init() {
             try {
-                byte[] buf = readHeaders(clientIn);
+                byte[] buf;
+                while (true) {
+                    buf = readHeaders(clientIn);
+                    if (findCRLF(buf) == -1) {
+                        close();
+                        return;
+                    }
+
+                    List<String> headers = asList(new String(buf, UTF_8).split("\r\n"));
+                    // check authorization credentials, if required by the server
+                    if (credentials != null && !authorized(credentials, headers)) {
+                        String resp = "HTTP/1.1 407 Proxy Authentication Required\r\n" +
+                                      "Content-Length: 0\r\n" +
+                                      "Proxy-Authenticate: Basic realm=\"proxy realm\"\r\n\r\n";
+
+                        clientOut.write(resp.getBytes(UTF_8));
+                    } else {
+                        break;
+                    }
+                }
+
                 int p = findCRLF(buf);
-                if (p == -1) {
-                    close();
-                    return;
-                }
                 String cmd = new String(buf, 0, p, "US-ASCII");
                 String[] params = cmd.split(" ");
+
                 if (params[0].equals("CONNECT")) {
                     doTunnel(params[1]);
                 } else {
--- a/test/jdk/java/net/httpclient/Response204.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/Response204.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -55,14 +55,17 @@
         logger.addHandler (c);
         logger.setLevel (Level.WARNING);
         Handler handler = new Handler();
-        InetSocketAddress addr = new InetSocketAddress (0);
+        InetSocketAddress addr = new InetSocketAddress (InetAddress.getLoopbackAddress(), 0);
         HttpServer server = HttpServer.create (addr, 0);
         HttpContext ctx = server.createContext ("/test", handler);
         ExecutorService executor = Executors.newCachedThreadPool();
         server.setExecutor (executor);
         server.start ();
 
-        URI uri = new URI("http://localhost:"+server.getAddress().getPort()+"/test/foo.html");
+        URI uri = new URI("http", null,
+                server.getAddress().getHostString(),
+                server.getAddress().getPort(),
+                "/test/foo.html", null, null);
 
         try {
             HttpClient client = HttpClient.newHttpClient();
--- a/test/jdk/java/net/httpclient/UnknownBodyLengthTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/UnknownBodyLengthTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -42,10 +42,14 @@
  * @bug 8207966
  * @library /test/lib
  * @build jdk.test.lib.net.SimpleSSLContext
- * @run main/othervm -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest plain false
- * @run main/othervm -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest SSL false
- * @run main/othervm -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest plain true
- * @run main/othervm -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest SSL true
+ * @run main/othervm -Djdk.httpclient.enableAllMethodRetry
+ *                   -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest plain false
+ * @run main/othervm -Djdk.httpclient.enableAllMethodRetry
+ *                   -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest SSL false
+ * @run main/othervm -Djdk.httpclient.enableAllMethodRetry
+ *                   -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest plain true
+ * @run main/othervm -Djdk.httpclient.enableAllMethodRetry
+ *                   -Djdk.tls.acknowledgeCloseNotify=true UnknownBodyLengthTest SSL true
  */
 
 public class UnknownBodyLengthTest {
@@ -84,46 +88,55 @@
                 throw new RuntimeException("error at position " + i);
     }
 
+    volatile boolean stopped;
+
     void server(final boolean withContentLength) {
         fillBuf(BUF);
         try {
-            Socket s = ss.accept();
-            s.setTcpNoDelay(true);
-            s.setSoLinger(true, 1);
-            System.out.println("Accepted: "+s.getRemoteSocketAddress());
-            System.out.println("Accepted: "+s);
-            OutputStream os = s.getOutputStream();
-            InputStream is = s.getInputStream();
-            boolean done = false;
-            byte[] buf = new byte[1024];
-            String rsp = "";
-            while (!done) {
-                int c = is.read(buf);
-                if (c < 0) break;
-                String s1 = new String(buf, 0, c, "ISO-8859-1");
-                rsp += s1;
-                done = rsp.endsWith("!#!#");
+            while (!stopped) {
+                try (Socket s = ss.accept()) {
+                    s.setTcpNoDelay(true);
+                    s.setSoLinger(true, 1);
+                    System.out.println("Accepted: " + s.getRemoteSocketAddress());
+                    System.out.println("Accepted: " + s);
+                    OutputStream os = s.getOutputStream();
+                    InputStream is = s.getInputStream();
+                    boolean done = false;
+                    byte[] buf = new byte[1024];
+                    String rsp = "";
+                    while (!done) {
+                        int c = is.read(buf);
+                        if (c < 0) break;
+                        String s1 = new String(buf, 0, c, "ISO-8859-1");
+                        rsp += s1;
+                        done = rsp.endsWith("!#!#");
+                    }
+                    String r = "HTTP/1.0 200 OK\r\nConnection: close\r\nContent-Type:" +
+                            " text/xml; charset=UTF-8\r\n";
+                    os.write(r.getBytes());
+                    String chdr = "Content-Length: " + Integer.toString(BUF.length) +
+                            "\r\n";
+                    System.out.println(chdr);
+                    if (withContentLength)
+                        os.write(chdr.getBytes());
+                    os.write("\r\n".getBytes());
+                    os.write(BUF);
+                    if (is.available() > 0)
+                        is.read(buf);
+                    os.flush();
+                    os.close();
+                    s.shutdownOutput();
+                } catch(Exception e) {
+                    if (!stopped) {
+                        System.out.println("Unexpected server exception: " + e);
+                        e.printStackTrace();
+                    }
+                }
             }
-            String r = "HTTP/1.0 200 OK\r\nConnection: close\r\nContent-Type:" +
-                       " text/xml; charset=UTF-8\r\n";
-            os.write(r.getBytes());
-            String chdr = "Content-Length: " + Integer.toString(BUF.length) +
-                     "\r\n";
-            System.out.println(chdr);
-            if(withContentLength)
-                os.write(chdr.getBytes());
-            os.write("\r\n".getBytes());
-            os.write(BUF);
-            if (is.available() > 0)
-                is.read(buf);
-            os.flush();
-            os.close();
-            s.shutdownOutput();
-            s.close();
         } catch(final Throwable t) {
-          t.printStackTrace();
+            if (!stopped) t.printStackTrace();
         } finally {
-            try {ss.close(); } catch (Exception e) {}
+            try {stopped = true; ss.close(); } catch (Exception e) {}
         }
     }
 
@@ -154,11 +167,20 @@
         boolean ssl = args[0].equals("SSL");
         boolean fixedlen = args[1].equals("true");
         UnknownBodyLengthTest test = new UnknownBodyLengthTest(ssl);
-        test.run(ssl, fixedlen);
+        try {
+            test.run(ssl, fixedlen);
+        } finally {
+            test.stop();
+        }
     }
 
     public void run(boolean ssl, boolean fixedlen) throws Exception {
         new Thread(()->server(fixedlen)).start();
         client(ssl);
     }
+
+    public void stop() {
+        stopped = true;
+        try { ss.close(); } catch (Throwable t) { }
+    }
 }
--- a/test/jdk/java/net/httpclient/examples/JavadocExamples.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/examples/JavadocExamples.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,8 @@
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.PrintStream;
+import java.io.UncheckedIOException;
+import java.lang.reflect.UndeclaredThrowableException;
 import java.net.Authenticator;
 import java.net.InetSocketAddress;
 import java.net.ProxySelector;
@@ -36,6 +38,7 @@
 import java.net.http.HttpResponse;
 import java.net.http.HttpResponse.BodyHandler;
 import java.net.http.HttpResponse.BodyHandlers;
+import java.net.http.HttpResponse.BodySubscriber;
 import java.net.http.HttpResponse.BodySubscribers;
 import java.nio.file.Path;
 import java.nio.file.Paths;
@@ -44,6 +47,7 @@
 import java.util.List;
 import java.util.concurrent.CopyOnWriteArrayList;
 import java.util.concurrent.Flow;
+import java.util.function.Supplier;
 import java.util.regex.Pattern;
 import static java.nio.charset.StandardCharsets.UTF_8;
 
@@ -177,6 +181,11 @@
                 .send(request, responseInfo ->
                         BodySubscribers.mapping(BodySubscribers.ofString(UTF_8), String::getBytes));
 
+        // Maps an InputStream to a Foo object.
+        HttpResponse<Supplier<Foo>> response9 = client.send(request,
+                (resp) -> FromMappingSubscriber.asJSON(Foo.class));
+        String resp = response9.body().get().asString();
+
     }
 
     /**
@@ -290,4 +299,51 @@
         }
     }
 
+    public static class Foo {
+        byte[] bytes;
+        public Foo(byte[] bytes) {
+            this.bytes = bytes;
+        }
+        public String asString() {
+            return new String(bytes, UTF_8);
+        }
+    }
+
+    static class ObjectMapper {
+        <W> W readValue(InputStream is, Class<W> targetType)
+            throws IOException
+        {
+                byte[] bytes = is.readAllBytes();
+                return map(bytes, targetType);
+        }
+
+        static <W> W map(byte[] bytes, Class<W> targetType) {
+            try {
+                return targetType.getConstructor(byte[].class).newInstance(bytes);
+            } catch (RuntimeException | Error x) {
+                throw x;
+            } catch (Exception x) {
+                throw new UndeclaredThrowableException(x);
+            }
+        }
+    }
+
+    static class FromMappingSubscriber {
+        public static <W> BodySubscriber<Supplier<W>> asJSON(Class<W> targetType) {
+            BodySubscriber<InputStream> upstream = BodySubscribers.ofInputStream();
+
+            BodySubscriber<Supplier<W>> downstream = BodySubscribers.mapping(
+                    upstream, (InputStream is) -> () -> {
+                        try (InputStream stream = is) {
+                            ObjectMapper objectMapper = new ObjectMapper();
+                            return objectMapper.readValue(stream, targetType);
+                        } catch (IOException e) {
+                            throw new UncheckedIOException(e);
+                        }
+                    });
+            return downstream;
+        }
+
+    }
+
 }
--- a/test/jdk/java/net/httpclient/websocket/DummyWebSocketServer.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/websocket/DummyWebSocketServer.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -46,13 +46,14 @@
 import java.util.Map;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.atomic.AtomicBoolean;
-import java.util.function.Function;
+import java.util.function.BiFunction;
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 
 import static java.lang.String.format;
 import static java.lang.System.err;
 import static java.nio.charset.StandardCharsets.ISO_8859_1;
+import static java.nio.charset.StandardCharsets.UTF_8;
 import static java.util.Arrays.asList;
 import static java.util.Objects.requireNonNull;
 
@@ -92,12 +93,32 @@
     private ByteBuffer read = ByteBuffer.allocate(16384);
     private final CountDownLatch readReady = new CountDownLatch(1);
 
-    public DummyWebSocketServer() {
-        this(defaultMapping());
+    private static class Credentials {
+        private final String name;
+        private final String password;
+        private Credentials(String name, String password) {
+            this.name = name;
+            this.password = password;
+        }
+        public String name() { return name; }
+        public String password() { return password; }
     }
 
-    public DummyWebSocketServer(Function<List<String>, List<String>> mapping) {
+    public DummyWebSocketServer() {
+        this(defaultMapping(), null, null);
+    }
+
+    public DummyWebSocketServer(String username, String password) {
+        this(defaultMapping(), username, password);
+    }
+
+    public DummyWebSocketServer(BiFunction<List<String>,Credentials,List<String>> mapping,
+                                String username,
+                                String password) {
         requireNonNull(mapping);
+        Credentials credentials = username != null ?
+                new Credentials(username, password) : null;
+
         thread = new Thread(() -> {
             try {
                 while (!Thread.currentThread().isInterrupted()) {
@@ -107,14 +128,23 @@
                     try {
                         channel.setOption(StandardSocketOptions.TCP_NODELAY, true);
                         channel.configureBlocking(true);
-                        StringBuilder request = new StringBuilder();
-                        if (!readRequest(channel, request)) {
-                            throw new IOException("Bad request:" + request);
+                        while (true) {
+                            StringBuilder request = new StringBuilder();
+                            if (!readRequest(channel, request)) {
+                                throw new IOException("Bad request:[" + request + "]");
+                            }
+                            List<String> strings = asList(request.toString().split("\r\n"));
+                            List<String> response = mapping.apply(strings, credentials);
+                            writeResponse(channel, response);
+
+                            if (response.get(0).startsWith("HTTP/1.1 401")) {
+                                err.println("Sent 401 Authentication response " + channel);
+                                continue;
+                            } else {
+                                serve(channel);
+                                break;
+                            }
                         }
-                        List<String> strings = asList(request.toString().split("\r\n"));
-                        List<String> response = mapping.apply(strings);
-                        writeResponse(channel, response);
-                        serve(channel);
                     } catch (IOException e) {
                         err.println("Error in connection: " + channel + ", " + e);
                     } finally {
@@ -125,7 +155,7 @@
                 }
             } catch (ClosedByInterruptException ignored) {
             } catch (Exception e) {
-                err.println(e);
+                e.printStackTrace(err);
             } finally {
                 close(ssc);
                 err.println("Stopped at: " + getURI());
@@ -256,8 +286,8 @@
         }
     }
 
-    private static Function<List<String>, List<String>> defaultMapping() {
-        return request -> {
+    private static BiFunction<List<String>,Credentials,List<String>> defaultMapping() {
+        return (request, credentials) -> {
             List<String> response = new LinkedList<>();
             Iterator<String> iterator = request.iterator();
             if (!iterator.hasNext()) {
@@ -309,14 +339,57 @@
             sha1.update(x.getBytes(ISO_8859_1));
             String v = Base64.getEncoder().encodeToString(sha1.digest());
             response.add("Sec-WebSocket-Accept: " + v);
+
+            // check authorization credentials, if required by the server
+            if (credentials != null && !authorized(credentials, requestHeaders)) {
+                response.clear();
+                response.add("HTTP/1.1 401 Unauthorized");
+                response.add("Content-Length: 0");
+                response.add("WWW-Authenticate: Basic realm=\"dummy server realm\"");
+            }
+
             return response;
         };
     }
 
+    // Checks credentials in the request against those allowable by the server.
+    private static boolean authorized(Credentials credentials,
+                                      Map<String,List<String>> requestHeaders) {
+        List<String> authorization = requestHeaders.get("Authorization");
+        if (authorization == null)
+            return false;
+
+        if (authorization.size() != 1) {
+            throw new IllegalStateException("Authorization unexpected count:" + authorization);
+        }
+        String header = authorization.get(0);
+        if (!header.startsWith("Basic "))
+            throw new IllegalStateException("Authorization not Basic: " + header);
+
+        header = header.substring("Basic ".length());
+        String values = new String(Base64.getDecoder().decode(header), UTF_8);
+        int sep = values.indexOf(':');
+        if (sep < 1) {
+            throw new IllegalStateException("Authorization not colon: " +  values);
+        }
+        String name = values.substring(0, sep);
+        String password = values.substring(sep + 1);
+
+        if (name.equals(credentials.name()) && password.equals(credentials.password()))
+            return true;
+
+        return false;
+    }
+
     protected static String expectHeader(Map<String, List<String>> headers,
                                          String name,
                                          String value) {
         List<String> v = headers.get(name);
+        if (v == null) {
+            throw new IllegalStateException(
+                    format("Expected '%s' header, not present in %s",
+                           name, headers));
+        }
         if (!v.contains(value)) {
             throw new IllegalStateException(
                     format("Expected '%s: %s', actual: '%s: %s'",
--- a/test/jdk/java/net/httpclient/websocket/Support.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/websocket/Support.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -79,16 +79,32 @@
     }
 
     public static DummyWebSocketServer serverWithCannedData(int... data) {
+        return serverWithCannedDataAndAuthentication(null, null, data);
+    }
+
+    public static DummyWebSocketServer serverWithCannedDataAndAuthentication(
+            String username,
+            String password,
+            int... data)
+    {
         byte[] copy = new byte[data.length];
         for (int i = 0; i < data.length; i++) {
             copy[i] = (byte) data[i];
         }
-        return serverWithCannedData(copy);
+        return serverWithCannedDataAndAuthentication(username, password, copy);
     }
 
     public static DummyWebSocketServer serverWithCannedData(byte... data) {
+       return serverWithCannedDataAndAuthentication(null, null, data);
+    }
+
+    public static DummyWebSocketServer serverWithCannedDataAndAuthentication(
+            String username,
+            String password,
+            byte... data)
+    {
         byte[] copy = Arrays.copyOf(data, data.length);
-        return new DummyWebSocketServer() {
+        return new DummyWebSocketServer(username, password) {
             @Override
             protected void write(SocketChannel ch) throws IOException {
                 int off = 0; int n = 1; // 1 byte at a time
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/java/net/httpclient/websocket/WebSocketProxyTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,309 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/*
+ * @test
+ * @bug 8217429
+ * @summary WebSocket proxy tunneling tests
+ * @compile DummyWebSocketServer.java ../ProxyServer.java
+ * @run testng/othervm
+ *         -Djdk.http.auth.tunneling.disabledSchemes=
+ *         WebSocketProxyTest
+ */
+
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.net.Authenticator;
+import java.net.InetAddress;
+import java.net.InetSocketAddress;
+import java.net.PasswordAuthentication;
+import java.net.ProxySelector;
+import java.net.http.HttpResponse;
+import java.net.http.WebSocket;
+import java.net.http.WebSocketHandshakeException;
+import java.nio.ByteBuffer;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.Base64;
+import java.util.List;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.CompletionException;
+import java.util.concurrent.CompletionStage;
+import java.util.function.Function;
+import java.util.function.Supplier;
+import java.util.stream.Collectors;
+import org.testng.annotations.DataProvider;
+import org.testng.annotations.Test;
+import static java.net.http.HttpClient.newBuilder;
+import static java.nio.charset.StandardCharsets.UTF_8;
+import static org.testng.Assert.assertEquals;
+import static org.testng.FileAssert.fail;
+
+public class WebSocketProxyTest {
+
+    // Used to verify a proxy/websocket server requiring Authentication
+    private static final String USERNAME = "wally";
+    private static final String PASSWORD = "xyz987";
+
+    static class WSAuthenticator extends Authenticator {
+        @Override
+        protected PasswordAuthentication getPasswordAuthentication() {
+            return new PasswordAuthentication(USERNAME, PASSWORD.toCharArray());
+        }
+    }
+
+    static final Function<int[],DummyWebSocketServer> SERVER_WITH_CANNED_DATA =
+        new Function<>() {
+            @Override public DummyWebSocketServer apply(int[] data) {
+                return Support.serverWithCannedData(data); }
+            @Override public String toString() { return "SERVER_WITH_CANNED_DATA"; }
+        };
+
+    static final Function<int[],DummyWebSocketServer> AUTH_SERVER_WITH_CANNED_DATA =
+        new Function<>() {
+            @Override public DummyWebSocketServer apply(int[] data) {
+                return Support.serverWithCannedDataAndAuthentication(USERNAME, PASSWORD, data); }
+            @Override public String toString() { return "AUTH_SERVER_WITH_CANNED_DATA"; }
+        };
+
+    static final Supplier<ProxyServer> TUNNELING_PROXY_SERVER =
+        new Supplier<>() {
+            @Override public ProxyServer get() {
+                try { return new ProxyServer(0, true);}
+                catch(IOException e) { throw new UncheckedIOException(e); } }
+            @Override public String toString() { return "TUNNELING_PROXY_SERVER"; }
+        };
+    static final Supplier<ProxyServer> AUTH_TUNNELING_PROXY_SERVER =
+        new Supplier<>() {
+            @Override public ProxyServer get() {
+                try { return new ProxyServer(0, true, USERNAME, PASSWORD);}
+                catch(IOException e) { throw new UncheckedIOException(e); } }
+            @Override public String toString() { return "AUTH_TUNNELING_PROXY_SERVER"; }
+        };
+
+    @DataProvider(name = "servers")
+    public Object[][] servers() {
+        return new Object[][] {
+            { SERVER_WITH_CANNED_DATA,      TUNNELING_PROXY_SERVER      },
+            { SERVER_WITH_CANNED_DATA,      AUTH_TUNNELING_PROXY_SERVER },
+            { AUTH_SERVER_WITH_CANNED_DATA, TUNNELING_PROXY_SERVER      },
+        };
+    }
+
+    @Test(dataProvider = "servers")
+    public void simpleAggregatingBinaryMessages
+            (Function<int[],DummyWebSocketServer> serverSupplier,
+             Supplier<ProxyServer> proxyServerSupplier)
+        throws IOException
+    {
+        List<byte[]> expected = List.of("hello", "chegar")
+                .stream()
+                .map(s -> s.getBytes(StandardCharsets.US_ASCII))
+                .collect(Collectors.toList());
+        int[] binary = new int[]{
+                0x82, 0x05, 0x68, 0x65, 0x6C, 0x6C, 0x6F,       // hello
+                0x82, 0x06, 0x63, 0x68, 0x65, 0x67, 0x61, 0x72, // chegar
+                0x88, 0x00                                      // <CLOSE>
+        };
+        CompletableFuture<List<byte[]>> actual = new CompletableFuture<>();
+
+        try (var proxyServer = proxyServerSupplier.get();
+             var server = serverSupplier.apply(binary)) {
+
+            InetSocketAddress proxyAddress = new InetSocketAddress(
+                    InetAddress.getLoopbackAddress(), proxyServer.getPort());
+            server.open();
+
+            WebSocket.Listener listener = new WebSocket.Listener() {
+
+                List<byte[]> collectedBytes = new ArrayList<>();
+                ByteBuffer buffer = ByteBuffer.allocate(1024);
+
+                @Override
+                public CompletionStage<?> onBinary(WebSocket webSocket,
+                                                   ByteBuffer message,
+                                                   boolean last) {
+                    System.out.printf("onBinary(%s, %s)%n", message, last);
+                    webSocket.request(1);
+
+                    append(message);
+                    if (last) {
+                        buffer.flip();
+                        byte[] bytes = new byte[buffer.remaining()];
+                        buffer.get(bytes);
+                        buffer.clear();
+                        processWholeBinary(bytes);
+                    }
+                    return null;
+                }
+
+                private void append(ByteBuffer message) {
+                    if (buffer.remaining() < message.remaining()) {
+                        assert message.remaining() > 0;
+                        int cap = (buffer.capacity() + message.remaining()) * 2;
+                        ByteBuffer b = ByteBuffer.allocate(cap);
+                        b.put(buffer.flip());
+                        buffer = b;
+                    }
+                    buffer.put(message);
+                }
+
+                private void processWholeBinary(byte[] bytes) {
+                    String stringBytes = new String(bytes, UTF_8);
+                    System.out.println("processWholeBinary: " + stringBytes);
+                    collectedBytes.add(bytes);
+                }
+
+                @Override
+                public CompletionStage<?> onClose(WebSocket webSocket,
+                                                  int statusCode,
+                                                  String reason) {
+                    actual.complete(collectedBytes);
+                    return null;
+                }
+
+                @Override
+                public void onError(WebSocket webSocket, Throwable error) {
+                    actual.completeExceptionally(error);
+                }
+            };
+
+            var webSocket = newBuilder()
+                    .proxy(ProxySelector.of(proxyAddress))
+                    .authenticator(new WSAuthenticator())
+                    .build().newWebSocketBuilder()
+                    .buildAsync(server.getURI(), listener)
+                    .join();
+
+            List<byte[]> a = actual.join();
+            assertEquals(a, expected);
+        }
+    }
+
+    // -- authentication specific tests
+
+    /*
+     * Ensures authentication succeeds when an Authenticator set on client builder.
+     */
+    @Test
+    public void clientAuthenticate() throws IOException  {
+        try (var proxyServer = AUTH_TUNNELING_PROXY_SERVER.get();
+             var server = new DummyWebSocketServer()){
+            server.open();
+            InetSocketAddress proxyAddress = new InetSocketAddress(
+                    InetAddress.getLoopbackAddress(), proxyServer.getPort());
+
+            var webSocket = newBuilder()
+                    .proxy(ProxySelector.of(proxyAddress))
+                    .authenticator(new WSAuthenticator())
+                    .build()
+                    .newWebSocketBuilder()
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { })
+                    .join();
+        }
+    }
+
+    /*
+     * Ensures authentication succeeds when an `Authorization` header is explicitly set.
+     */
+    @Test
+    public void explicitAuthenticate() throws IOException  {
+        try (var proxyServer = AUTH_TUNNELING_PROXY_SERVER.get();
+             var server = new DummyWebSocketServer()) {
+            server.open();
+            InetSocketAddress proxyAddress = new InetSocketAddress(
+                    InetAddress.getLoopbackAddress(), proxyServer.getPort());
+
+            String hv = "Basic " + Base64.getEncoder().encodeToString(
+                    (USERNAME + ":" + PASSWORD).getBytes(UTF_8));
+
+            var webSocket = newBuilder()
+                    .proxy(ProxySelector.of(proxyAddress)).build()
+                    .newWebSocketBuilder()
+                    .header("Proxy-Authorization", hv)
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { })
+                    .join();
+        }
+    }
+
+    /*
+     * Ensures authentication does not succeed when no authenticator is present.
+     */
+    @Test
+    public void failNoAuthenticator() throws IOException  {
+        try (var proxyServer = AUTH_TUNNELING_PROXY_SERVER.get();
+             var server = new DummyWebSocketServer(USERNAME, PASSWORD)) {
+            server.open();
+            InetSocketAddress proxyAddress = new InetSocketAddress(
+                    InetAddress.getLoopbackAddress(), proxyServer.getPort());
+
+            CompletableFuture<WebSocket> cf = newBuilder()
+                    .proxy(ProxySelector.of(proxyAddress)).build()
+                    .newWebSocketBuilder()
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { });
+
+            try {
+                var webSocket = cf.join();
+                fail("Expected exception not thrown");
+            } catch (CompletionException expected) {
+                WebSocketHandshakeException e = (WebSocketHandshakeException)expected.getCause();
+                HttpResponse<?> response = e.getResponse();
+                assertEquals(response.statusCode(), 407);
+            }
+        }
+    }
+
+    /*
+     * Ensures authentication does not succeed when the authenticator presents
+     * unauthorized credentials.
+     */
+    @Test
+    public void failBadCredentials() throws IOException  {
+        try (var proxyServer = AUTH_TUNNELING_PROXY_SERVER.get();
+             var server = new DummyWebSocketServer(USERNAME, PASSWORD)) {
+            server.open();
+            InetSocketAddress proxyAddress = new InetSocketAddress(
+                    InetAddress.getLoopbackAddress(), proxyServer.getPort());
+
+            Authenticator authenticator = new Authenticator() {
+                @Override protected PasswordAuthentication getPasswordAuthentication() {
+                    return new PasswordAuthentication("BAD"+USERNAME, "".toCharArray());
+                }
+            };
+
+            CompletableFuture<WebSocket> cf = newBuilder()
+                    .proxy(ProxySelector.of(proxyAddress))
+                    .authenticator(authenticator)
+                    .build()
+                    .newWebSocketBuilder()
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { });
+
+            try {
+                var webSocket = cf.join();
+                fail("Expected exception not thrown");
+            } catch (CompletionException expected) {
+                System.out.println("caught expected exception:" + expected);
+            }
+        }
+    }
+}
--- a/test/jdk/java/net/httpclient/websocket/WebSocketTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/net/httpclient/websocket/WebSocketTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
 
 /*
  * @test
+ * @bug 8217429
  * @build DummyWebSocketServer
  * @run testng/othervm
  *       WebSocketTest
@@ -33,23 +34,32 @@
 import org.testng.annotations.Test;
 
 import java.io.IOException;
+import java.net.Authenticator;
+import java.net.PasswordAuthentication;
+import java.net.http.HttpResponse;
 import java.net.http.WebSocket;
+import java.net.http.WebSocketHandshakeException;
 import java.nio.ByteBuffer;
 import java.nio.charset.StandardCharsets;
 import java.util.ArrayList;
+import java.util.Base64;
 import java.util.List;
 import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.CompletionException;
 import java.util.concurrent.CompletionStage;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicBoolean;
+import java.util.function.Function;
 import java.util.function.Supplier;
 import java.util.stream.Collectors;
 
 import static java.net.http.HttpClient.Builder.NO_PROXY;
 import static java.net.http.HttpClient.newBuilder;
 import static java.net.http.WebSocket.NORMAL_CLOSURE;
+import static java.nio.charset.StandardCharsets.UTF_8;
 import static org.testng.Assert.assertEquals;
 import static org.testng.Assert.assertThrows;
+import static org.testng.Assert.fail;
 
 public class WebSocketTest {
 
@@ -68,8 +78,11 @@
 
     @AfterTest
     public void cleanup() {
-        server.close();
-        webSocket.abort();
+        System.out.println("AFTER TEST");
+        if (server != null)
+            server.close();
+        if (webSocket != null)
+            webSocket.abort();
     }
 
     @Test
@@ -134,6 +147,8 @@
         assertThrows(IAE, () -> webSocket.request(Long.MIN_VALUE));
         assertThrows(IAE, () -> webSocket.request(-1));
         assertThrows(IAE, () -> webSocket.request(0));
+
+        server.close();
     }
 
     @Test
@@ -149,6 +164,7 @@
         // Pings & Pongs are fine
         webSocket.sendPing(ByteBuffer.allocate(125)).join();
         webSocket.sendPong(ByteBuffer.allocate(125)).join();
+        server.close();
     }
 
     @Test
@@ -165,6 +181,7 @@
         // Pings & Pongs are fine
         webSocket.sendPing(ByteBuffer.allocate(125)).join();
         webSocket.sendPong(ByteBuffer.allocate(125)).join();
+        server.close();
     }
 
     @Test
@@ -198,6 +215,8 @@
         assertFails(IOE, webSocket.sendPong(ByteBuffer.allocate(124)));
         assertFails(IOE, webSocket.sendPong(ByteBuffer.allocate(1)));
         assertFails(IOE, webSocket.sendPong(ByteBuffer.allocate(0)));
+
+        server.close();
     }
 
     @DataProvider(name = "sequence")
@@ -318,6 +337,8 @@
         listener.invocations();
         violation.complete(null); // won't affect if completed exceptionally
         violation.join();
+
+        server.close();
     }
 
     @Test
@@ -372,10 +393,48 @@
         assertFails(IOE, webSocket.sendPong(ByteBuffer.allocate(124)));
         assertFails(IOE, webSocket.sendPong(ByteBuffer.allocate(1)));
         assertFails(IOE, webSocket.sendPong(ByteBuffer.allocate(0)));
+
+        server.close();
+    }
+
+    // Used to verify a server requiring Authentication
+    private static final String USERNAME = "chegar";
+    private static final String PASSWORD = "a1b2c3";
+
+    static class WSAuthenticator extends Authenticator {
+        @Override
+        protected PasswordAuthentication getPasswordAuthentication() {
+            return new PasswordAuthentication(USERNAME, PASSWORD.toCharArray());
+        }
     }
 
-    @Test
-    public void simpleAggregatingBinaryMessages() throws IOException {
+    static final Function<int[],DummyWebSocketServer> SERVER_WITH_CANNED_DATA =
+        new Function<>() {
+            @Override public DummyWebSocketServer apply(int[] data) {
+                return Support.serverWithCannedData(data); }
+            @Override public String toString() { return "SERVER_WITH_CANNED_DATA"; }
+        };
+
+    static final Function<int[],DummyWebSocketServer> AUTH_SERVER_WITH_CANNED_DATA =
+        new Function<>() {
+            @Override public DummyWebSocketServer apply(int[] data) {
+                return Support.serverWithCannedDataAndAuthentication(USERNAME, PASSWORD, data); }
+            @Override public String toString() { return "AUTH_SERVER_WITH_CANNED_DATA"; }
+        };
+
+    @DataProvider(name = "servers")
+    public Object[][] servers() {
+        return new Object[][] {
+            { SERVER_WITH_CANNED_DATA },
+            { AUTH_SERVER_WITH_CANNED_DATA },
+        };
+    }
+
+    @Test(dataProvider = "servers")
+    public void simpleAggregatingBinaryMessages
+            (Function<int[],DummyWebSocketServer> serverSupplier)
+        throws IOException
+    {
         List<byte[]> expected = List.of("alpha", "beta", "gamma", "delta")
                 .stream()
                 .map(s -> s.getBytes(StandardCharsets.US_ASCII))
@@ -399,7 +458,7 @@
         };
         CompletableFuture<List<byte[]>> actual = new CompletableFuture<>();
 
-        server = Support.serverWithCannedData(binary);
+        server = serverSupplier.apply(binary);
         server.open();
 
         WebSocket.Listener listener = new WebSocket.Listener() {
@@ -437,7 +496,7 @@
             }
 
             private void processWholeBinary(byte[] bytes) {
-                String stringBytes = new String(bytes, StandardCharsets.UTF_8);
+                String stringBytes = new String(bytes, UTF_8);
                 System.out.println("processWholeBinary: " + stringBytes);
                 collectedBytes.add(bytes);
             }
@@ -456,17 +515,24 @@
             }
         };
 
-        webSocket = newBuilder().proxy(NO_PROXY).build().newWebSocketBuilder()
+        webSocket = newBuilder()
+                .proxy(NO_PROXY)
+                .authenticator(new WSAuthenticator())
+                .build().newWebSocketBuilder()
                 .buildAsync(server.getURI(), listener)
                 .join();
 
         List<byte[]> a = actual.join();
         assertEquals(a, expected);
+
+        server.close();
     }
 
-    @Test
-    public void simpleAggregatingTextMessages() throws IOException {
-
+    @Test(dataProvider = "servers")
+    public void simpleAggregatingTextMessages
+            (Function<int[],DummyWebSocketServer> serverSupplier)
+        throws IOException
+    {
         List<String> expected = List.of("alpha", "beta", "gamma", "delta");
 
         int[] binary = new int[]{
@@ -488,7 +554,7 @@
         };
         CompletableFuture<List<String>> actual = new CompletableFuture<>();
 
-        server = Support.serverWithCannedData(binary);
+        server = serverSupplier.apply(binary);
         server.open();
 
         WebSocket.Listener listener = new WebSocket.Listener() {
@@ -530,21 +596,28 @@
             }
         };
 
-        webSocket = newBuilder().proxy(NO_PROXY).build().newWebSocketBuilder()
+        webSocket = newBuilder()
+                .proxy(NO_PROXY)
+                .authenticator(new WSAuthenticator())
+                .build().newWebSocketBuilder()
                 .buildAsync(server.getURI(), listener)
                 .join();
 
         List<String> a = actual.join();
         assertEquals(a, expected);
+
+        server.close();
     }
 
     /*
      * Exercises the scenario where requests for more messages are made prior to
      * completing the returned CompletionStage instances.
      */
-    @Test
-    public void aggregatingTextMessages() throws IOException {
-
+    @Test(dataProvider = "servers")
+    public void aggregatingTextMessages
+        (Function<int[],DummyWebSocketServer> serverSupplier)
+        throws IOException
+    {
         List<String> expected = List.of("alpha", "beta", "gamma", "delta");
 
         int[] binary = new int[]{
@@ -566,8 +639,7 @@
         };
         CompletableFuture<List<String>> actual = new CompletableFuture<>();
 
-
-        server = Support.serverWithCannedData(binary);
+        server = serverSupplier.apply(binary);
         server.open();
 
         WebSocket.Listener listener = new WebSocket.Listener() {
@@ -623,11 +695,111 @@
             }
         };
 
-        webSocket = newBuilder().proxy(NO_PROXY).build().newWebSocketBuilder()
+        webSocket = newBuilder()
+                .proxy(NO_PROXY)
+                .authenticator(new WSAuthenticator())
+                .build().newWebSocketBuilder()
                 .buildAsync(server.getURI(), listener)
                 .join();
 
         List<String> a = actual.join();
         assertEquals(a, expected);
+
+        server.close();
+    }
+
+    // -- authentication specific tests
+
+    /*
+     * Ensures authentication succeeds when an Authenticator set on client builder.
+     */
+    @Test
+    public void clientAuthenticate() throws IOException  {
+        try (var server = new DummyWebSocketServer(USERNAME, PASSWORD)){
+            server.open();
+
+            var webSocket = newBuilder()
+                    .proxy(NO_PROXY)
+                    .authenticator(new WSAuthenticator())
+                    .build()
+                    .newWebSocketBuilder()
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { })
+                    .join();
+        }
+    }
+
+    /*
+     * Ensures authentication succeeds when an `Authorization` header is explicitly set.
+     */
+    @Test
+    public void explicitAuthenticate() throws IOException  {
+        try (var server = new DummyWebSocketServer(USERNAME, PASSWORD)) {
+            server.open();
+
+            String hv = "Basic " + Base64.getEncoder().encodeToString(
+                    (USERNAME + ":" + PASSWORD).getBytes(UTF_8));
+
+            var webSocket = newBuilder()
+                    .proxy(NO_PROXY).build()
+                    .newWebSocketBuilder()
+                    .header("Authorization", hv)
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { })
+                    .join();
+        }
+    }
+
+    /*
+     * Ensures authentication does not succeed when no authenticator is present.
+     */
+    @Test
+    public void failNoAuthenticator() throws IOException  {
+        try (var server = new DummyWebSocketServer(USERNAME, PASSWORD)) {
+            server.open();
+
+            CompletableFuture<WebSocket> cf = newBuilder()
+                    .proxy(NO_PROXY).build()
+                    .newWebSocketBuilder()
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { });
+
+            try {
+                var webSocket = cf.join();
+                fail("Expected exception not thrown");
+            } catch (CompletionException expected) {
+                WebSocketHandshakeException e = (WebSocketHandshakeException)expected.getCause();
+                HttpResponse<?> response = e.getResponse();
+                assertEquals(response.statusCode(), 401);
+            }
+        }
+    }
+
+    /*
+     * Ensures authentication does not succeed when the authenticator presents
+     * unauthorized credentials.
+     */
+    @Test
+    public void failBadCredentials() throws IOException  {
+        try (var server = new DummyWebSocketServer(USERNAME, PASSWORD)) {
+            server.open();
+
+            Authenticator authenticator = new Authenticator() {
+                @Override protected PasswordAuthentication getPasswordAuthentication() {
+                    return new PasswordAuthentication("BAD"+USERNAME, "".toCharArray());
+                }
+            };
+
+            CompletableFuture<WebSocket> cf = newBuilder()
+                    .proxy(NO_PROXY)
+                    .authenticator(authenticator)
+                    .build()
+                    .newWebSocketBuilder()
+                    .buildAsync(server.getURI(), new WebSocket.Listener() { });
+
+            try {
+                var webSocket = cf.join();
+                fail("Expected exception not thrown");
+            } catch (CompletionException expected) {
+                System.out.println("caught expected exception:" + expected);
+            }
+        }
     }
 }
--- a/test/jdk/java/nio/channels/DatagramChannel/UseDGWithIPv6.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/nio/channels/DatagramChannel/UseDGWithIPv6.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2006, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,8 @@
 /* @test
  * @bug 6435300
  * @summary Check using IPv6 address does not crash the VM
+ * @run main/othervm UseDGWithIPv6
+ * @run main/othervm -Djava.net.preferIPv4Stack=true UseDGWithIPv6
  */
 
 import java.io.IOException;
@@ -31,6 +33,7 @@
 import java.net.SocketAddress;
 import java.nio.ByteBuffer;
 import java.nio.channels.DatagramChannel;
+import java.nio.channels.UnsupportedAddressTypeException;
 
 public class UseDGWithIPv6 {
     static String[] targets = {
@@ -57,6 +60,8 @@
             try {
                 int n = dgChannel.send(data, sa);
                 System.out.println("DG_Sent " + n + " bytes");
+            } catch (UnsupportedAddressTypeException e) {
+                System.out.println("Ignoring unsupported address type");
             } catch (IOException e) {
                 //This regression test is to check vm crash only, so ioe is OK.
                 e.printStackTrace();
--- a/test/jdk/java/nio/channels/SocketChannel/SendUrgentData.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/nio/channels/SocketChannel/SendUrgentData.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -133,9 +133,7 @@
                             throw new RuntimeException("Unexpected message", ex);
                         }
                     } else if (osName.contains("windows")) {
-                        if (!(ex instanceof SocketException)) {
-                            throw new RuntimeException("Unexpected exception", ex);
-                        } else if (!ex.getMessage().contains("Resource temporarily unavailable")) {
+                        if (!ex.getMessage().equals("Socket buffer full")) {
                             throw new RuntimeException("Unexpected message", ex);
                         }
                     } else {
--- a/test/jdk/java/text/Format/DateFormat/DateFormatTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/text/Format/DateFormat/DateFormatTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,7 @@
 /**
  * @test
  * @bug 4052223 4089987 4469904 4326988 4486735 8008577 8045998 8140571
+ *      8216969
  * @summary test DateFormat and SimpleDateFormat.
  * @library /java/text/testlib
  * @modules jdk.localedata
@@ -1205,4 +1206,18 @@
             TimeZone.setDefault(initialTimeZone);
         }
     }
+
+    public void Test8216969() throws Exception {
+        Locale locale = new Locale("ru");
+        String format = "\u0434\u0435\u043a";
+        String standalone = "\u0434\u0435\u043a.";
+
+        // Check that format form is used so that the dot is parsed correctly.
+        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd MMM.yyyy", locale);
+        System.out.println(simpleDateFormat.parse("28 " + format + ".2018"));
+
+        // Check that standalone form is used.
+        simpleDateFormat = new SimpleDateFormat("MMM", locale);
+        System.out.println(simpleDateFormat.parse(standalone));
+    }
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/java/util/Base64/TestEncodingDecodingLength.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,72 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+import java.nio.ByteBuffer;
+import java.util.Base64;
+
+/**
+ * @test
+ * @bug 8210583
+ * @summary Tests Base64.Encoder.encode/Decoder.decode for the large size
+ *          of resulting bytes which can not be allocated
+ * @requires os.maxMemory >= 6g
+ * @run main/othervm -Xms4g -Xmx6g TestEncodingDecodingLength
+ *
+ */
+
+public class TestEncodingDecodingLength {
+
+    public static void main(String[] args) {
+        int size = Integer.MAX_VALUE - 2;
+        byte[] inputBytes = new byte[size];
+        byte[] outputBytes = new byte[size];
+
+        // Check encoder with large array length
+        Base64.Encoder encoder = Base64.getEncoder();
+        checkOOM("encode(byte[])", () -> encoder.encode(inputBytes));
+        checkIAE("encode(byte[] byte[])", () -> encoder.encode(inputBytes, outputBytes));
+        checkOOM("encodeToString(byte[])", () -> encoder.encodeToString(inputBytes));
+        checkOOM("encode(ByteBuffer)", () -> encoder.encode(ByteBuffer.allocate(size)));
+
+        // Check decoder with large array length
+        Base64.Decoder decoder = Base64.getDecoder();
+        checkOOM("decode(byte[])", () -> decoder.decode(inputBytes));
+        checkIAE("decode(byte[], byte[])", () -> decoder.decode(inputBytes, outputBytes));
+        checkOOM("decode(ByteBuffer)", () -> decoder.decode(ByteBuffer.allocate(size)));
+    }
+
+    private static final void checkOOM(String methodName, Runnable r) {
+        try {
+            r.run();
+            throw new RuntimeException("OutOfMemoryError should have been thrown by: " + methodName);
+        } catch (OutOfMemoryError er) {}
+    }
+
+    private static final void checkIAE(String methodName, Runnable r) {
+        try {
+            r.run();
+            throw new RuntimeException("IllegalArgumentException should have been thrown by: " + methodName);
+        } catch (IllegalArgumentException iae) {}
+    }
+}
+
--- a/test/jdk/java/util/TimeZone/CLDRDisplayNamesTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/util/TimeZone/CLDRDisplayNamesTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -73,6 +73,8 @@
         },
     };
 
+    private static final String NO_INHERITANCE_MARKER = "\u2205\u2205\u2205";
+
     public static void main(String[] args) {
         // Make sure that localized time zone names of CLDR are used
         // if specified.
@@ -131,5 +133,27 @@
         if (errors > 0) {
             throw new RuntimeException("test failed");
         }
+
+        // 8217366: No "no inheritance marker" should be left in the returned array
+        // from DateFormatSymbols.getZoneStrings()
+        List.of(Locale.ROOT,
+                Locale.CHINA,
+                Locale.GERMANY,
+                Locale.JAPAN,
+                Locale.UK,
+                Locale.US,
+                Locale.forLanguageTag("hi-IN"),
+                Locale.forLanguageTag("es-419")).stream()
+            .peek(System.out::println)
+            .map(l -> DateFormatSymbols.getInstance(l).getZoneStrings())
+            .flatMap(zoneStrings -> Arrays.stream(zoneStrings))
+            .filter(namesArray -> Arrays.stream(namesArray)
+                .anyMatch(aName -> aName.equals(NO_INHERITANCE_MARKER)))
+            .findAny()
+            .ifPresentOrElse(marker -> {
+                    throw new RuntimeException("No inheritance marker detected with tzid: "
+                                                + marker[0]);
+                },
+                () -> System.out.println("Success: No \"no inheritance marker\" detected."));
     }
 }
--- a/test/jdk/java/util/logging/LogManager/Configuration/updateConfiguration/HandlersOnComplexResetUpdate.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/util/logging/LogManager/Configuration/updateConfiguration/HandlersOnComplexResetUpdate.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -80,6 +80,14 @@
         }
     }
 
+    public static final double TIMEOUT_FACTOR;
+    static {
+        String toFactor = System.getProperty("test.timeout.factor", "1.0");
+        TIMEOUT_FACTOR = Double.parseDouble(toFactor);
+    }
+    static int adjustCount(int count) {
+        return (int) Math.ceil(TIMEOUT_FACTOR * count);
+    }
 
     private static final String PREFIX =
             "FileHandler-" + UUID.randomUUID() + ".log";
@@ -213,11 +221,11 @@
                     + barChild.getParent() +"\n\texpected: " + barRef.get());
         }
         Reference<? extends Logger> ref2;
-        int max = 3;
+        int max = adjustCount(3);
         barChild = null;
         while ((ref2 = queue.poll()) == null) {
             System.gc();
-            Thread.sleep(100);
+            Thread.sleep(1000);
             if (--max == 0) break;
         }
 
@@ -328,21 +336,25 @@
                     throw new RuntimeException(x);
                 }
             });
-            fooChild = null;
-            System.out.println("Setting fooChild to: " + fooChild);
-            while ((ref2 = queue.poll()) == null) {
-                System.gc();
-                Thread.sleep(1000);
-            }
-            if (ref2 != fooRef) {
-                throw new RuntimeException("Unexpected reference: "
-                        + ref2 +"\n\texpected: " + fooRef);
-            }
-            if (ref2.get() != null) {
-                throw new RuntimeException("Referent not cleared: " + ref2.get());
-            }
-            System.out.println("Got fooRef after reset(), fooChild is " + fooChild);
-
+            try {
+                fooChild = null;
+                System.out.println("Setting fooChild to: " + fooChild);
+                while ((ref2 = queue.poll()) == null) {
+                    System.gc();
+                    Thread.sleep(1000);
+                }
+                if (ref2 != fooRef) {
+                    throw new RuntimeException("Unexpected reference: "
+                            + ref2 +"\n\texpected: " + fooRef);
+                }
+                if (ref2.get() != null) {
+                    throw new RuntimeException("Referent not cleared: " + ref2.get());
+                }
+                System.out.println("Got fooRef after reset(), fooChild is " + fooChild);
+             } catch(Throwable t) {
+                if (failed != null) t.addSuppressed(failed);
+                throw t;
+             }
         }
         if (failed != null) {
             // should rarely happen...
--- a/test/jdk/java/util/logging/LogManager/Configuration/updateConfiguration/HandlersOnComplexUpdate.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/util/logging/LogManager/Configuration/updateConfiguration/HandlersOnComplexUpdate.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -80,6 +80,14 @@
         }
     }
 
+    public static final double TIMEOUT_FACTOR;
+    static {
+        String toFactor = System.getProperty("test.timeout.factor", "1.0");
+        TIMEOUT_FACTOR = Double.parseDouble(toFactor);
+    }
+    static int adjustCount(int count) {
+        return (int) Math.ceil(TIMEOUT_FACTOR * count);
+    }
 
     private static final String PREFIX =
             "FileHandler-" + UUID.randomUUID() + ".log";
@@ -213,11 +221,11 @@
                     + barChild.getParent() +"\n\texpected: " + barRef.get());
         }
         Reference<? extends Logger> ref2;
-        int max = 3;
+        int max = adjustCount(3);
         barChild = null;
         while ((ref2 = queue.poll()) == null) {
             System.gc();
-            Thread.sleep(100);
+            Thread.sleep(1000);
             if (--max == 0) break;
         }
 
@@ -316,21 +324,25 @@
                     throw new RuntimeException(x);
                 }
             });
-            fooChild = null;
-            System.out.println("Setting fooChild to: " + fooChild);
-            while ((ref2 = queue.poll()) == null) {
-                System.gc();
-                Thread.sleep(1000);
-            }
-            if (ref2 != fooRef) {
-                throw new RuntimeException("Unexpected reference: "
-                        + ref2 +"\n\texpected: " + fooRef);
-            }
-            if (ref2.get() != null) {
-                throw new RuntimeException("Referent not cleared: " + ref2.get());
-            }
-            System.out.println("Got fooRef after reset(), fooChild is " + fooChild);
-
+            try {
+                fooChild = null;
+                System.out.println("Setting fooChild to: " + fooChild);
+                while ((ref2 = queue.poll()) == null) {
+                    System.gc();
+                    Thread.sleep(1000);
+                }
+                if (ref2 != fooRef) {
+                    throw new RuntimeException("Unexpected reference: "
+                            + ref2 +"\n\texpected: " + fooRef);
+                }
+                if (ref2.get() != null) {
+                    throw new RuntimeException("Referent not cleared: " + ref2.get());
+                }
+                System.out.println("Got fooRef after reset(), fooChild is " + fooChild);
+           } catch (Throwable t) {
+               if (failed != null) t.addSuppressed(failed);
+               throw t;
+           }
         }
         if (failed != null) {
             // should rarely happen...
--- a/test/jdk/java/util/prefs/ExportSubtree.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/java/util/prefs/ExportSubtree.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -21,76 +21,74 @@
  * questions.
  */
 
+import java.io.ByteArrayInputStream;
+import java.io.ByteArrayOutputStream;
+import java.util.prefs.Preferences;
 
-/* @test
- * @bug 6203576 4700020 7197662
+/**
+ * @test
+ * @bug 6203576 4700020 7197662 8217777
  * @summary checks if the output of exportSubtree() is identical to
  *          the output from previous release.
  * @run main/othervm -Djava.util.prefs.userRoot=. ExportSubtree
  */
-
-import java.io.*;
-import java.util.prefs.*;
+public class ExportSubtree {
+    private static final String LS = System.getProperty("line.separator");
 
-public class ExportSubtree {
-   public static void main(String[] args) throws Exception {
-      try
-      {
-          //File f = new File(System.getProperty("test.src", "."), "TestPrefs.xml");
-          ByteArrayInputStream bais = new ByteArrayInputStream(importPrefs.getBytes("utf-8"));
-          Preferences.importPreferences(bais);
-          ByteArrayOutputStream baos = new ByteArrayOutputStream();
-          Preferences.userRoot().node("testExportSubtree").exportSubtree(baos);
-          Preferences.userRoot().node("testExportSubtree").removeNode();
-          if (!expectedResult.equals(baos.toString())) {
-              //System.out.print(baos.toString());
-              //System.out.print(expectedResult);
-              throw new IOException("exportSubtree does not output expected result");
-          }
-      }
-      catch( Exception e ) {
-         e.printStackTrace();
-      }
-   }
+    private static final String IMPORT_PREFS =
+        "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
+        "<!DOCTYPE preferences SYSTEM \"http://java.sun.com/dtd/preferences.dtd\">" +
+        "<preferences EXTERNAL_XML_VERSION=\"1.0\">" +
+        "  <root type=\"user\">" +
+        "    <map>" +
+        "      <entry key=\"key1\" value=\"value1\"/>" +
+        "    </map>" +
+        "    <node name=\"testExportSubtree\">" +
+        "      <map>" +
+        "        <entry key=\"key2\" value=\"value2\"/>" +
+        "      </map>" +
+        "      <node name=\"test\">" +
+        "        <map>" +
+        "          <entry key=\"key3\" value=\"value3\"/>" +
+        "        </map>" +
+        "      </node>" +
+        "    </node>" +
+        "  </root>" +
+        "</preferences>";
 
-   static String ls = System.getProperty("line.separator");
-   static String importPrefs =
-       "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
-        + "<!DOCTYPE preferences SYSTEM \"http://java.sun.com/dtd/preferences.dtd\">"
-        + "<preferences EXTERNAL_XML_VERSION=\"1.0\">"
-        + "  <root type=\"user\">"
-        + "    <map>"
-        + "      <entry key=\"key1\" value=\"value1\"/>"
-        + "    </map>"
-        + "    <node name=\"testExportSubtree\">"
-        + "      <map>"
-        + "        <entry key=\"key2\" value=\"value2\"/>"
-        + "      </map>"
-        + "      <node name=\"test\">"
-        + "        <map>"
-        + "          <entry key=\"key3\" value=\"value3\"/>"
-        + "        </map>"
-        + "      </node>"
-        + "    </node>"
-        + "  </root>"
-        + "</preferences>";
+    private static final String EXPECTED_RESULT =
+        "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>" + LS +
+        "<!DOCTYPE preferences SYSTEM \"http://java.sun.com/dtd/preferences.dtd\">" + LS +
+        "<preferences EXTERNAL_XML_VERSION=\"1.0\">" + LS +
+        "  <root type=\"user\">" + LS +
+        "    <map/>" + LS +
+        "    <node name=\"testExportSubtree\">" + LS +
+        "      <map>" + LS +
+        "        <entry key=\"key2\" value=\"value2\"/>" + LS +
+        "      </map>" + LS +
+        "      <node name=\"test\">" + LS +
+        "        <map>" + LS +
+        "          <entry key=\"key3\" value=\"value3\"/>" + LS +
+        "        </map>" + LS +
+        "      </node>" + LS +
+        "    </node>" + LS +
+        "  </root>" + LS +
+        "</preferences>" + LS;
 
-   static String expectedResult =
-       "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
-        + ls    +  "<!DOCTYPE preferences SYSTEM \"http://java.sun.com/dtd/preferences.dtd\">"
-        + ls    +  "<preferences EXTERNAL_XML_VERSION=\"1.0\">"
-        + ls    +  "  <root type=\"user\">"
-        + ls    +  "    <map/>"
-        + ls    +  "    <node name=\"testExportSubtree\">"
-        + ls    +  "      <map>"
-        + ls    +  "        <entry key=\"key2\" value=\"value2\"/>"
-        + ls    +  "      </map>"
-        + ls    +  "      <node name=\"test\">"
-        + ls    +  "        <map>"
-        + ls    +  "          <entry key=\"key3\" value=\"value3\"/>"
-        + ls    +  "        </map>"
-        + ls    +  "      </node>"
-        + ls    +  "    </node>"
-        + ls    +  "  </root>"
-        + ls    +  "</preferences>"     + ls;
+    public static void main(String[] args) throws Exception {
+        ByteArrayInputStream bais = new ByteArrayInputStream(IMPORT_PREFS.getBytes("utf-8"));
+        Preferences.importPreferences(bais);
+        ByteArrayOutputStream baos = new ByteArrayOutputStream();
+        Preferences.userRoot().node("testExportSubtree").exportSubtree(baos);
+        Preferences.userRoot().node("testExportSubtree").removeNode();
+        if (!EXPECTED_RESULT.equals(baos.toString())) {
+            String errMsg = "Preferences::exportSubtree did not yield the expected result.";
+            System.out.println(errMsg + LS +
+                               "Actual:" + LS +
+                               baos + LS +
+                               "Expected:" + LS +
+                               EXPECTED_RESULT);
+            throw new RuntimeException(errMsg);
+        }
+    }
 }
--- a/test/jdk/jdk/jfr/event/gc/collection/TestG1ParallelPhases.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/jdk/jfr/event/gc/collection/TestG1ParallelPhases.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -90,7 +90,6 @@
         Set<String> allPhases = of(
             "ExtRootScan",
             "ThreadRoots",
-            "StringTableRoots",
             "UniverseRoots",
             "JNIRoots",
             "ObjectSynchronizerRoots",
--- a/test/jdk/jdk/jfr/event/runtime/TestShutdownEvent.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/jdk/jfr/event/runtime/TestShutdownEvent.java	Tue Jan 29 09:38:31 2019 -0500
@@ -31,6 +31,7 @@
 import java.util.List;
 import java.util.stream.Collectors;
 
+import jdk.internal.misc.Unsafe;
 import jdk.jfr.consumer.RecordedEvent;
 import jdk.jfr.consumer.RecordedFrame;
 import jdk.jfr.consumer.RecordedStackTrace;
@@ -41,7 +42,7 @@
 import jdk.test.lib.process.ProcessTools;
 import jdk.test.lib.jfr.EventNames;
 import jdk.test.lib.jfr.Events;
-import sun.misc.Unsafe;
+
 
 /**
  * @test
@@ -50,7 +51,8 @@
  * @requires vm.hasJFR
  * @library /test/lib
  * @modules jdk.jfr
- * @run main jdk.jfr.event.runtime.TestShutdownEvent
+ *          java.base/jdk.internal.misc
+ * @run main/othervm jdk.jfr.event.runtime.TestShutdownEvent
  */
 public class TestShutdownEvent {
     private static ShutdownEventSubTest subTests[] = {
@@ -59,9 +61,11 @@
              new TestVMCrash(),
              new TestUnhandledException(),
              new TestRuntimeHalt(),
-             new TestSig("TERM"),
-             new TestSig("HUP"),
-             new TestSig("INT")};
+             // exclude until JDK-8217744 is fixed
+             // new TestSig("TERM"),
+             // new TestSig("HUP"),
+             // new TestSig("INT")
+    };
 
     public static void main(String[] args) throws Throwable {
         for (int i = 0; i < subTests.length; ++i) {
@@ -77,6 +81,7 @@
         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(true,
                                 "-Xlog:jfr=debug",
                                 "-XX:-CreateCoredumpOnCrash",
+                                "--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED",
                                 "-XX:StartFlightRecording=filename=./dumped.jfr,dumponexit=true,settings=default",
                                 "jdk.jfr.event.runtime.TestShutdownEvent$TestMain",
                                 String.valueOf(subTestIndex));
@@ -117,17 +122,6 @@
         void verifyEvents(RecordedEvent event);
     }
 
-    public static Unsafe getUnsafe() {
-        try {
-            Field f = Unsafe.class.getDeclaredField("theUnsafe");
-            f.setAccessible(true);
-            return (Unsafe)f.get(null);
-        } catch (Exception e) {
-            Asserts.fail("Could not access Unsafe");
-        }
-        return null;
-    }
-
     // Basic stack trace validation, checking that the runTest method is part of the stack
     static void validateStackTrace(RecordedStackTrace stackTrace) {
         List<RecordedFrame> frames = stackTrace.getFrames();
@@ -169,7 +163,7 @@
         @Override
         public void runTest() {
             System.out.println("Attempting to crash");
-            getUnsafe().putInt(0L, 0);
+            Unsafe.getUnsafe().putInt(0L, 0);
         }
 
         @Override
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/jdk/nio/zipfs/PropertyPermissionTests.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,95 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+import org.testng.annotations.AfterClass;
+import org.testng.annotations.BeforeClass;
+import org.testng.annotations.Test;
+
+import java.io.IOException;
+import java.nio.file.FileSystem;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.nio.file.spi.FileSystemProvider;
+import java.util.Map;
+
+/**
+ * @test
+ * @bug 8210469
+ * @summary Verify ZIP FileSystem works with a Security Manager
+ * @modules jdk.zipfs
+ * @compile PropertyPermissionTests.java
+ * @run testng/othervm/java.security.policy=PropertyPermissions.policy  PropertyPermissionTests
+ */
+public class PropertyPermissionTests {
+
+    // Map to used for creating a ZIP archive
+    private static final Map<String, String> ZIPFS_OPTIONS = Map.of("create", "true");
+
+    // The ZIP file system provider
+    private static final FileSystemProvider ZIPFS_PROVIDER = getZipFSProvider();
+
+    // Primary jar file used for testing
+    private static Path jarFile;
+
+    /**
+     * Create the JAR files used by the tests
+     */
+    @BeforeClass
+    public void setUp()  throws Exception {
+        jarFile = Utils.createJarFile("basic.jar",
+                "META-INF/services/java.nio.file.spi.FileSystemProvider");
+    }
+
+    /**
+     * Remove JAR files used by test as part of clean-up
+     */
+    @AfterClass
+    public void tearDown() throws Exception {
+        Files.deleteIfExists(jarFile);
+    }
+
+    /**
+     * Validate that the ZIP File System can be successfully closed when a Security Manager
+     * has been enabled.
+     */
+    @Test
+    public void test0000() throws IOException {
+        FileSystem zipfs = ZIPFS_PROVIDER.newFileSystem(
+                Paths.get("basic.jar"), ZIPFS_OPTIONS);
+        zipfs.close();
+    }
+
+    /**
+     * Returns the Zip FileSystem Provider
+     */
+    private static FileSystemProvider getZipFSProvider() {
+        for (FileSystemProvider fsProvider : FileSystemProvider.installedProviders()) {
+            if ("jar".equals(fsProvider.getScheme())) {
+                return fsProvider;
+            }
+        }
+        return null;
+    }
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/jdk/nio/zipfs/PropertyPermissions.policy	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,4 @@
+grant {
+    permission java.io.FilePermission "<<ALL FILES>>","read,write,delete";
+
+};
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/jdk/security/JavaDotSecurity/TestJDKIncludeInExceptions.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+import java.security.Security;
+
+/**
+ * @test
+ * @bug 8207846 8208691
+ * @summary Test the default setting of the jdk.net.includeInExceptions
+ *          security property
+ * @comment In OpenJDK, this property is empty by default and on purpose.
+ *          This test assures the default is not changed.
+ * @run main TestJDKIncludeInExceptions
+ */
+public class TestJDKIncludeInExceptions {
+
+    public static void main(String args[]) throws Exception {
+        String incInExc = Security.getProperty("jdk.includeInExceptions");
+        if (incInExc != null) {
+            throw new RuntimeException("Test failed: default value of " +
+                "jdk.includeInExceptions security property is not null: " +
+                incInExc);
+        }
+    }
+}
--- a/test/jdk/sun/net/www/protocol/http/ProxyTunnelServer.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/sun/net/www/protocol/http/ProxyTunnelServer.java	Tue Jan 29 09:38:31 2019 -0500
@@ -38,33 +38,40 @@
 
 public class ProxyTunnelServer extends Thread {
 
-    private static ServerSocket ss = null;
+    private final ServerSocket ss;
     /*
      * holds the registered user's username and password
      * only one such entry is maintained
      */
-    private String userPlusPass;
+    private volatile String userPlusPass;
 
     // client requesting for a tunnel
-    private Socket clientSocket = null;
+    private volatile Socket clientSocket = null;
 
     /*
      * Origin server's address and port that the client
      * wants to establish the tunnel for communication.
      */
-    private InetAddress serverInetAddr;
-    private int serverPort;
+    private volatile InetAddress serverInetAddr;
+    private volatile int serverPort;
 
     /*
      * denote whether the proxy needs to authorize
      * CONNECT requests.
      */
-    static boolean needAuth = false;
+
+    volatile boolean needAuth = false;
 
     public ProxyTunnelServer() throws IOException {
-        if (ss == null) {
-          ss = (ServerSocket) ServerSocketFactory.getDefault().
-          createServerSocket(0);
+        ss = new ServerSocket(0);
+    }
+
+    static private void close(Closeable c) {
+        try {
+            if (c != null)
+                c.close();
+        } catch (IOException e) {
+            e.printStackTrace();
         }
     }
 
@@ -72,6 +79,11 @@
         needAuth = auth;
     }
 
+    public void terminate() {
+        close(ss);
+        close(clientSocket);
+    }
+
     /*
      * register users with the proxy, by providing username and
      * password. The username and password are used for authorizing the
@@ -81,10 +93,16 @@
         userPlusPass = uname + ":" + passwd;
     }
 
+    volatile boolean makeTunnel;
+
+    public void doTunnel(boolean tunnel) {
+        makeTunnel = tunnel;
+    }
+
     public void run() {
         try {
             clientSocket = ss.accept();
-            processRequests();
+            processRequests(makeTunnel);
         } catch (Exception e) {
             System.out.println("Proxy Failed: " + e);
             e.printStackTrace();
@@ -105,7 +123,7 @@
      * if there is a match, connection is set in tunneling mode. If
      * needAuth is set to false, Proxy-Authorization checks are not made
      */
-    private void processRequests() throws Exception {
+    private void processRequests(boolean makeTunnel) throws Exception {
 
         InputStream in = clientSocket.getInputStream();
         MessageHeader mheader = new MessageHeader(in);
@@ -125,6 +143,13 @@
                    }
                 }
             }
+
+            if (makeTunnel) {
+                retrieveConnectInfo(statusLine);
+                doTunnel();
+                return;
+            }
+
             respondForConnect(needAuth);
 
             // connection set to the tunneling mode
@@ -178,6 +203,9 @@
      * direction.
      */
     private void doTunnel() throws Exception {
+        OutputStream out = clientSocket.getOutputStream();
+        out.write("HTTP/1.1 200 OK\r\n\r\n".getBytes());
+        out.flush();
 
         Socket serverSocket = new Socket(serverInetAddr, serverPort);
         ProxyTunnel clientToServer = new ProxyTunnel(
@@ -202,10 +230,10 @@
      * socket, until both sockets are open and EOF has not been received.
      */
     class ProxyTunnel extends Thread {
-        Socket sockIn;
-        Socket sockOut;
-        InputStream input;
-        OutputStream output;
+        final Socket sockIn;
+        final Socket sockOut;
+        final InputStream input;
+        final OutputStream output;
 
         public ProxyTunnel(Socket sockIn, Socket sockOut)
         throws Exception {
--- a/test/jdk/sun/net/www/protocol/http/TunnelThroughProxy.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/sun/net/www/protocol/http/TunnelThroughProxy.java	Tue Jan 29 09:38:31 2019 -0500
@@ -25,6 +25,7 @@
  * @test
  * @bug 4620362
  * @modules java.base/sun.net.www
+ * @build ProxyTunnelServer
  * @run main/othervm TunnelThroughProxy
  * @summary JSSE not returning proper exception on unknown host
  */
@@ -34,8 +35,13 @@
 
 public class TunnelThroughProxy {
     public static void main(String[] args) throws Exception {
+        nonexistingHostTest();
+        getLocalPortTest();
+    }
+
+    static void nonexistingHostTest() throws Exception {
+        ProxyTunnelServer proxy = setupProxy(false);
         try {
-            setupProxy();
             URL u = new URL("https://www.nonexistent-site.com/");
             URLConnection uc = u.openConnection();
             InputStream is = uc.getInputStream();
@@ -44,16 +50,48 @@
             if (!e.getMessage().matches(".*HTTP\\/.*500.*")) {
                 throw new RuntimeException(e);
             }
+        } finally {
+            proxy.terminate();
         }
     }
-    static void setupProxy() throws IOException {
+
+
+    static void getLocalPortTest() throws Exception {
+        ProxyTunnelServer proxy = setupProxy(true);
+        try {
+            int proxyPort = proxy.getPort();
+            ServerSocket server = new ServerSocket(0);
+            int serverPort = server.getLocalPort();
+
+            Socket sock;
+            sock = new Socket(new Proxy(Proxy.Type.HTTP, new InetSocketAddress("127.0.0.1", proxyPort)));
+            InetSocketAddress dest = new InetSocketAddress("127.0.0.1", serverPort);
+            sock.connect(dest);
+            int localPort = sock.getLocalPort();
+            if (localPort == proxyPort)
+                throw new RuntimeException("Fail: socket has wrong local port");
+            // check that tunnel really works
+            Socket sock1 = server.accept();
+            OutputStream os = sock1.getOutputStream();
+            os.write(99);
+            os.flush();
+            if (sock.getInputStream().read() != 99)
+                throw new RuntimeException("Tunnel does not work");
+        } finally {
+            proxy.terminate();
+        }
+    }
+
+    static ProxyTunnelServer setupProxy(boolean makeTunnel) throws IOException {
         ProxyTunnelServer pserver = new ProxyTunnelServer();
+        pserver.doTunnel(makeTunnel);
+        int proxyPort = pserver.getPort();
 
         // disable proxy authentication
         pserver.needUserAuth(false);
         pserver.start();
         System.setProperty("https.proxyHost", "localhost");
-        System.setProperty("https.proxyPort", String.valueOf(
-                                        pserver.getPort()));
+        System.setProperty("https.proxyPort", String.valueOf(proxyPort));
+        return pserver;
     }
 }
--- a/test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/Distrust.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/Distrust.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -35,13 +35,15 @@
 
 /**
  * @test
- * @bug 8207258
+ * @bug 8207258 8216280
  * @summary Check that TLS Server certificates chaining back to distrusted
  *          Symantec roots are invalid
  * @library /test/lib
  * @modules java.base/sun.security.validator
- * @run main/othervm Distrust true
- * @run main/othervm Distrust false
+ * @run main/othervm Distrust after policyOn invalid
+ * @run main/othervm Distrust after policyOff valid
+ * @run main/othervm Distrust before policyOn valid
+ * @run main/othervm Distrust before policyOff valid
  */
 
 public class Distrust {
@@ -57,35 +59,67 @@
         "thawteprimaryrootcag3", "verisignclass3g3ca", "verisignclass3g4ca",
         "verisignclass3g5ca", "verisignuniversalrootca" };
 
+    // Each of the subCAs with a delayed distrust date have a test certificate
+    // chain stored in a file named "<subCA>-chain.pem".
+    private static String[] subCAsToTest = new String[] {
+        "appleistca2g1", "appleistca8g1" };
+
     // A date that is after the restrictions take affect
     private static final Date APRIL_17_2019 =
         Date.from(LocalDate.of(2019, 4, 17)
                            .atStartOfDay(ZoneOffset.UTC)
                            .toInstant());
 
+    // A date that is a second before the restrictions take affect
+    private static final Date BEFORE_APRIL_17_2019 =
+        Date.from(LocalDate.of(2019, 4, 17)
+                           .atStartOfDay(ZoneOffset.UTC)
+                           .minusSeconds(1)
+                           .toInstant());
+
+    // A date that is after the subCA restrictions take affect
+    private static final Date JANUARY_1_2020 =
+        Date.from(LocalDate.of(2020, 1, 1)
+                           .atStartOfDay(ZoneOffset.UTC)
+                           .toInstant());
+
+    // A date that is a second before the subCA restrictions take affect
+    private static final Date BEFORE_JANUARY_1_2020 =
+        Date.from(LocalDate.of(2020, 1, 1)
+                           .atStartOfDay(ZoneOffset.UTC)
+                           .minusSeconds(1)
+                           .toInstant());
+
     public static void main(String[] args) throws Exception {
 
         cf = CertificateFactory.getInstance("X.509");
-        boolean distrust = args[0].equals("true");
-        if (!distrust) {
-            // disable policy
+
+        boolean before = args[0].equals("before");
+        boolean policyOn = args[1].equals("policyOn");
+        boolean isValid = args[2].equals("valid");
+
+        if (!policyOn) {
+            // disable policy (default is on)
             Security.setProperty("jdk.security.caDistrustPolicies", "");
         }
 
+        Date notBefore = before ? BEFORE_APRIL_17_2019 : APRIL_17_2019;
+
         X509TrustManager pkixTM = getTMF("PKIX", null);
         X509TrustManager sunX509TM = getTMF("SunX509", null);
         for (String test : rootsToTest) {
             System.err.println("Testing " + test);
             X509Certificate[] chain = loadCertificateChain(test);
 
-            testTM(sunX509TM, chain, !distrust);
-            testTM(pkixTM, chain, !distrust);
+            testTM(sunX509TM, chain, notBefore, isValid);
+            testTM(pkixTM, chain, notBefore, isValid);
         }
 
         // test chain if params are passed to TrustManager
         System.err.println("Testing verisignuniversalrootca with params");
         testTM(getTMF("PKIX", getParams()),
-               loadCertificateChain("verisignuniversalrootca"), !distrust);
+               loadCertificateChain("verisignuniversalrootca"),
+               notBefore, isValid);
 
         // test code-signing chain (should be valid as restrictions don't apply)
         System.err.println("Testing verisignclass3g5ca code-signing chain");
@@ -95,6 +129,16 @@
         // set validation date so this will still pass when cert expires
         v.setValidationDate(new Date(1544197375493l));
         v.validate(loadCertificateChain("verisignclass3g5ca-codesigning"));
+
+        // test chains issued through subCAs
+        notBefore = before ? BEFORE_JANUARY_1_2020 : JANUARY_1_2020;
+        for (String test : subCAsToTest) {
+            System.err.println("Testing " + test);
+            X509Certificate[] chain = loadCertificateChain(test);
+
+            testTM(sunX509TM, chain, notBefore, isValid);
+            testTM(pkixTM, chain, notBefore, isValid);
+        }
     }
 
     private static X509TrustManager getTMF(String type,
@@ -122,12 +166,13 @@
     }
 
     private static void testTM(X509TrustManager xtm, X509Certificate[] chain,
-                               boolean valid) throws Exception {
+                               Date notBefore, boolean valid) throws Exception {
         // Check if TLS Server certificate (the first element of the chain)
-        // is issued after April 16, 2019 (should be rejected unless distrust
-        // property is false). To do this, we need to fake the notBefore date
-        // since none of the test certs are issued after then.
-        chain[0] = new DistrustedTLSServerCert(chain[0], APRIL_17_2019);
+        // is issued after the specified notBefore date (should be rejected
+        // unless distrust property is false). To do this, we need to
+        // fake the notBefore date since none of the test certs are issued
+        // after then.
+        chain[0] = new DistrustedTLSServerCert(chain[0], notBefore);
 
         try {
             xtm.checkServerTrusted(chain, "ECDHE_RSA");
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/appleistca2g1-chain.pem	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,80 @@
+-----BEGIN CERTIFICATE-----
+MIIGGzCCBQOgAwIBAgIITJltLCqcD0gwDQYJKoZIhvcNAQELBQAwYjEcMBoGA1UE
+AxMTQXBwbGUgSVNUIENBIDIgLSBHMTEgMB4GA1UECxMXQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkxEzARBgNVBAoTCkFwcGxlIEluYy4xCzAJBgNVBAYTAlVTMB4XDTE5
+MDEwODIxMTcxNFoXDTIwMDgwODIxMjcwMFowgaoxSjBIBgNVBAMMQWFjdGl2ZS5n
+ZW90cnVzdC1nbG9iYWwtY2EudGVzdC1wYWdlcy5jZXJ0aWZpY2F0ZW1hbmFnZXIu
+YXBwbGUuY29tMSUwIwYDVQQLDBxtYW5hZ2VtZW50OmlkbXMuZ3JvdXAuODY0ODU5
+MRMwEQYDVQQKDApBcHBsZSBJbmMuMRMwEQYDVQQIDApDYWxpZm9ybmlhMQswCQYD
+VQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMCjFUrVHTEX
+0aVU6x9LiGa6oVr9blaCsMFrLicPQguc43Vs/pN+g4jzRXsTSMe9XefezBQb6tzZ
+SMRXVB4kWMr4K1BVgQDkXeyoh4KrXRkdEF9ZIJPNxwTmmYUOc5M6NOYwkLelYz+t
+7n1iNIGylbjwU4qwauElk2alFVqYTEPDLzwvqVDb9jMAJ8MPSDjfUlXW0XD9oXZM
+hC+8LU9JBgJ3YBdzRHa4WnrudUbWjspqaNfAYpVIX0cfCJKnMsKqaSKjS4pIRtWm
+L6NlCTCoIMyOh+wmbWPPX24H2D3+ump5FA35fRYbVznmosl5n1AK34S9tD4XZ7lO
+WZKfaFi1liMCAwEAAaOCAoowggKGMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU
+2HqURHyQcJAWnt0XnAFEA4bWKikwfgYIKwYBBQUHAQEEcjBwMDQGCCsGAQUFBzAC
+hihodHRwOi8vY2VydHMuYXBwbGUuY29tL2FwcGxlaXN0Y2EyZzEuZGVyMDgGCCsG
+AQUFBzABhixodHRwOi8vb2NzcC5hcHBsZS5jb20vb2NzcDAzLWFwcGxlaXN0Y2Ey
+ZzEwMTBMBgNVHREERTBDgkFhY3RpdmUuZ2VvdHJ1c3QtZ2xvYmFsLWNhLnRlc3Qt
+cGFnZXMuY2VydGlmaWNhdGVtYW5hZ2VyLmFwcGxlLmNvbTCB/wYDVR0gBIH3MIH0
+MIHxBgoqhkiG92NkBQsEMIHiMIGkBggrBgEFBQcCAjCBlwyBlFJlbGlhbmNlIG9u
+IHRoaXMgY2VydGlmaWNhdGUgYnkgYW55IHBhcnR5IGFzc3VtZXMgYWNjZXB0YW5j
+ZSBvZiBhbnkgYXBwbGljYWJsZSB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2Ug
+YW5kL29yIGNlcnRpZmljYXRpb24gcHJhY3RpY2Ugc3RhdGVtZW50cy4wOQYIKwYB
+BQUHAgEWLWh0dHA6Ly93d3cuYXBwbGUuY29tL2NlcnRpZmljYXRlYXV0aG9yaXR5
+L3JwYTAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwNwYDVR0fBDAwLjAs
+oCqgKIYmaHR0cDovL2NybC5hcHBsZS5jb20vYXBwbGVpc3RjYTJnMS5jcmwwHQYD
+VR0OBBYEFP0qkmFJhArI0MsfW0V+/wY9x4GSMA4GA1UdDwEB/wQEAwIFoDANBgkq
+hkiG9w0BAQsFAAOCAQEATjT8M0bIq+mFc8k5cd4KDjCMBjYl/l3/8zKlWYGP+nl1
+KRogXcGRa3LcfpdJcqgMrx8e9Xohduvl8MBzwv671rYkppzZdsmZdLVorAdbL5GL
+suhTjAS5yL3NBWNMRpeOgFsVr7YtPDEvo3CFsnzjg7THe0S6Y35oYukJtUzGUvSY
+kC3ApBTdjj0vAeow+dbt+AHKnQiEnon4ToSFmtnkru08Uxe7uyHCQ2sLUg0EPYc9
+t9I8lviaHfK/mQoCzlme2O/H5Rher8dXCv8hVT1NKbsi28EpgpqcTLS+hn/Edc/q
+4dPDoO1Ozs+ixRzFeMpA+JrnAyARb6qbSrAPBgtIbQ==
+-----END CERTIFICATE-----
+-----BEGIN CERTIFICATE-----
+MIIEQDCCAyigAwIBAgIDAjp0MA0GCSqGSIb3DQEBCwUAMEIxCzAJBgNVBAYTAlVT
+MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i
+YWwgQ0EwHhcNMTQwNjE2MTU0MjAyWhcNMjIwNTIwMTU0MjAyWjBiMRwwGgYDVQQD
+ExNBcHBsZSBJU1QgQ0EgMiAtIEcxMSAwHgYDVQQLExdDZXJ0aWZpY2F0aW9uIEF1
+dGhvcml0eTETMBEGA1UEChMKQXBwbGUgSW5jLjELMAkGA1UEBhMCVVMwggEiMA0G
+CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQk6EdR0MgFrILa+vD1bTox5jN896/
+6E3p4zaAB/xFG2p8RYauVtOkCX9hDWtdflJrfbTIOcT0Zzr3g84Zb4YvfkV+Rxxn
+UsqVBV3iNlGFwNRngDVvFd0+/R3S/Y80UNjsdiq+49Pa5P3I6ygClhGXF2Ec6cRZ
+O0LcMtEJHdqm0UOG/16yvIzPZtsBiwKulEjzOI/96jKoCOyGl1GUJD5JSZZT6Hmh
+QIHpBbuTlVH84/18EUv3ngizFUkVB/nRN6CbSzL2tcTcatH8Cu324MUpoKiLcf4N
+krz+VHAYCm3H7Qz7yS0Gw4yF/MuGXNY2jhKLCX/7GRo41fCUMHoPpozzAgMBAAGj
+ggEdMIIBGTAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1luMrMTjAdBgNVHQ4E
+FgQU2HqURHyQcJAWnt0XnAFEA4bWKikwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNV
+HQ8BAf8EBAMCAQYwNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2cuc3ltY2IuY29t
+L2NybHMvZ3RnbG9iYWwuY3JsMC4GCCsGAQUFBwEBBCIwIDAeBggrBgEFBQcwAYYS
+aHR0cDovL2cuc3ltY2QuY29tMEwGA1UdIARFMEMwQQYKYIZIAYb4RQEHNjAzMDEG
+CCsGAQUFBwIBFiVodHRwOi8vd3d3Lmdlb3RydXN0LmNvbS9yZXNvdXJjZXMvY3Bz
+MA0GCSqGSIb3DQEBCwUAA4IBAQAWR3NvhaJi4ecqdruJlUIml7xKrKxwUzo/MYM9
+PByrmuKxXRx2GqA8DHJXvtOeUODImdZY1wLqzg0pVHzN9cLGkClVo28UqAtCDTqY
+bQZ4nvBqox0CCqIopI3CgUY+bWfa3j/+hQ5CKhLetbf7uBunlux3n+zUU5V6/wf0
+8goUwFFSsdaOUAsamVy8C8m97e34XsFW201+I6QRoSzUGwWa5BtS9nw4mQVLunKN
+QolgBGYq9P1o12v3mUEo1mwkq+YlUy7Igpnioo8jvjCDsSeL+mh/AUnoxphrEC6Y
+XorXykuxx8lYmtA225aV7LaB5PLNbxt5h0wQPInkTfpU3Kqm
+-----END CERTIFICATE-----
+-----BEGIN CERTIFICATE-----
+MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT
+MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i
+YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG
+EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg
+R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9
+9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq
+fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv
+iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU
+1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+
+bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW
+MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA
+ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l
+uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn
+Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS
+tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF
+PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un
+hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV
+5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw==
+-----END CERTIFICATE-----
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/appleistca8g1-chain.pem	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,64 @@
+-----BEGIN CERTIFICATE-----
+MIIElDCCBDqgAwIBAgIIWax3IY1ByGIwCgYIKoZIzj0EAwIwYjEcMBoGA1UEAwwT
+QXBwbGUgSVNUIENBIDggLSBHMTEgMB4GA1UECwwXQ2VydGlmaWNhdGlvbiBBdXRo
+b3JpdHkxEzARBgNVBAoMCkFwcGxlIEluYy4xCzAJBgNVBAYTAlVTMB4XDTE5MDEw
+ODIxMTAyNFoXDTIwMDgwODIxMjAwMFowga0xTTBLBgNVBAMMRGFjdGl2ZS5nZW90
+cnVzdC1nbG9iYWwtY2EtZzIudGVzdC1wYWdlcy5jZXJ0aWZpY2F0ZW1hbmFnZXIu
+YXBwbGUuY29tMSUwIwYDVQQLDBxtYW5hZ2VtZW50OmlkbXMuZ3JvdXAuODY0ODU5
+MRMwEQYDVQQKDApBcHBsZSBJbmMuMRMwEQYDVQQIDApDYWxpZm9ybmlhMQswCQYD
+VQQGEwJVUzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABN4oxNLGzmOIfgFRxDaU
+SaOYTQVZCc7a7MXlK1L4/KgN22stgSkrg47aOWviMuzb9Q9hDA/Tn19o9Zr8G5ON
+pYijggKMMIICiDAMBgNVHRMBAf8EAjAAMB8GA1UdIwQYMBaAFMPEpFgFY9eDBrqW
+jdyyjzL2u7dBMH4GCCsGAQUFBwEBBHIwcDA0BggrBgEFBQcwAoYoaHR0cDovL2Nl
+cnRzLmFwcGxlLmNvbS9hcHBsZWlzdGNhOGcxLmRlcjA4BggrBgEFBQcwAYYsaHR0
+cDovL29jc3AuYXBwbGUuY29tL29jc3AwMy1hcHBsZWlzdGNhOGcxMDEwTwYDVR0R
+BEgwRoJEYWN0aXZlLmdlb3RydXN0LWdsb2JhbC1jYS1nMi50ZXN0LXBhZ2VzLmNl
+cnRpZmljYXRlbWFuYWdlci5hcHBsZS5jb20wgf4GA1UdIASB9jCB8zCB8AYKKoZI
+hvdjZAULBDCB4TCBpAYIKwYBBQUHAgIwgZcMgZRSZWxpYW5jZSBvbiB0aGlzIGNl
+cnRpZmljYXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgYW55
+IGFwcGxpY2FibGUgdGVybXMgYW5kIGNvbmRpdGlvbnMgb2YgdXNlIGFuZC9vciBj
+ZXJ0aWZpY2F0aW9uIHByYWN0aWNlIHN0YXRlbWVudHMuMDgGCCsGAQUFBwICMCwM
+Kmh0dHA6Ly93d3cuYXBwbGUuY29tL2NlcnRpZmljYXRlYXV0aG9yaXR5LzAdBgNV
+HSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwNwYDVR0fBDAwLjAsoCqgKIYmaHR0
+cDovL2NybC5hcHBsZS5jb20vYXBwbGVpc3RjYThnMS5jcmwwHQYDVR0OBBYEFCQy
+hU8U00tcIz6L0MCT6EGVho0EMA4GA1UdDwEB/wQEAwIDiDAKBggqhkjOPQQDAgNI
+ADBFAiAl5nGHi2u8V0aJSp4o1i3TlK7ao8WvxwBuHKfuKibSLAIhAN8PZqhESS9u
+V7Dr6qzs88yn/1z6oeqPwDsntFpUFtWG
+-----END CERTIFICATE-----
+-----BEGIN CERTIFICATE-----
+MIIDVDCCAtugAwIBAgIQE1Iuv8HdXOEe8nZAdR/n3zAKBggqhkjOPQQDAzCBmDEL
+MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj
+KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2
+MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0
+eSAtIEcyMB4XDTE2MDYwOTAwMDAwMFoXDTMxMDYwODIzNTk1OVowYjEcMBoGA1UE
+AwwTQXBwbGUgSVNUIENBIDggLSBHMTEgMB4GA1UECwwXQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkxEzARBgNVBAoMCkFwcGxlIEluYy4xCzAJBgNVBAYTAlVTMFkwEwYH
+KoZIzj0CAQYIKoZIzj0DAQcDQgAELVSOaLAQE+/0LdvYCbJD6J1lmW40uNSXyY7J
+1qgiNzLIcWDusPHyxWT2ukdf/OYHeDIt9sqAIMn9cPhykyGIRaOCATowggE2MBIG
+A1UdEwEB/wQIMAYBAf8CAQAwNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2cuc3lt
+Y2IuY29tL0dlb1RydXN0UENBLUcyLmNybDAOBgNVHQ8BAf8EBAMCAQYwLgYIKwYB
+BQUHAQEEIjAgMB4GCCsGAQUFBzABhhJodHRwOi8vZy5zeW1jZC5jb20wSQYDVR0g
+BEIwQDA+BgZngQwBAgIwNDAyBggrBgEFBQcCARYmaHR0cHM6Ly93d3cuZ2VvdHJ1
+c3QuY29tL3Jlc291cmNlcy9jcHMwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUF
+BwMCMB0GA1UdDgQWBBTDxKRYBWPXgwa6lo3cso8y9ru3QTAfBgNVHSMEGDAWgBQV
+XzVXUVX7JbKtA2n8AaP6vhFV1TAKBggqhkjOPQQDAwNnADBkAjBH2jMNybjCk3Ts
+OidXxJX9YDPMd5S3KDCv8vyTdJGhtoly7fQJRNv5rnVz+6YGfsMCMEp6wyheL7NK
+mqavsduix2R+j1B3wRjelzJYgXzgM3nwhQKKlJWxpF7IGHuva1taxg==
+-----END CERTIFICATE-----
+-----BEGIN CERTIFICATE-----
+MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDEL
+MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj
+KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2
+MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0
+eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1OVowgZgxCzAJBgNV
+BAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykgMjAw
+NyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNV
+BAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH
+MjB2MBAGByqGSM49AgEGBSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcL
+So17VDs6bl8VAsBQps8lL33KSLjHUGMcKiEIfJo22Av+0SbFWDEwKCXzXV2juLal
+tJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO
+BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG
+CCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGT
+qQ7mndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBucz
+rD6ogRLQy7rQkgu2npaqBA+K
+-----END CERTIFICATE-----
--- a/test/jdk/tools/launcher/Test7029048.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jdk/tools/launcher/Test7029048.java	Tue Jan 29 09:38:31 2019 -0500
@@ -155,12 +155,22 @@
                     }
 
                     desc = "LD_LIBRARY_PATH should not be set (no libjvm.so)";
+                    if (TestHelper.isAIX) {
+                        System.out.println("Skipping test case \"" + desc +
+                                           "\" because the Aix launcher adds the paths in any case.");
+                        continue;
+                    }
                     break;
                 case NO_DIR:
                     if (dstLibDir.exists()) {
                         recursiveDelete(dstLibDir);
                     }
                     desc = "LD_LIBRARY_PATH should not be set (no directory)";
+                    if (TestHelper.isAIX) {
+                        System.out.println("Skipping test case \"" + desc +
+                                           "\" because the Aix launcher adds the paths in any case.");
+                        continue;
+                    }
                     break;
                 default:
                     throw new RuntimeException("unknown case");
--- a/test/jtreg-ext/requires/VMProps.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/jtreg-ext/requires/VMProps.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -86,6 +86,7 @@
         map.put("vm.rtm.cpu", vmRTMCPU());
         map.put("vm.rtm.compiler", vmRTMCompiler());
         map.put("vm.aot", vmAOT());
+        map.put("vm.aot.enabled", vmAotEnabled());
         // vm.cds is true if the VM is compiled with cds support.
         map.put("vm.cds", vmCDS());
         map.put("vm.cds.custom.loaders", vmCDSForCustomLoaders());
@@ -266,6 +267,7 @@
         vmOptFinalFlag(map, "ClassUnloading");
         vmOptFinalFlag(map, "UseCompressedOops");
         vmOptFinalFlag(map, "EnableJVMCI");
+        vmOptFinalFlag(map, "EliminateAllocations");
     }
 
     /**
@@ -334,6 +336,13 @@
         return "" + Files.exists(jaotc);
     }
 
+    /*
+     * @return true if there is at least one loaded AOT'ed library.
+     */
+    protected String vmAotEnabled() {
+        return "" + (WB.aotLibrariesCount() > 0);
+    }
+
     /**
      * Check for CDS support.
      *
--- a/test/langtools/Makefile	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,464 +0,0 @@
-#
-# Makefile to run jtreg and other tests
-#
-
-# Product builds and langtools builds
-#
-# A full product build (or "control" build) creates a complete JDK image.
-# To test a product build, set TESTJAVA to the path for the image.
-#
-# A langtools build just builds the langtools components of a JDK.
-# To test a langtools build, set TESTJAVA to the path for a recent JDK
-# build, and set TESTBOOTCLASSPATH to the compiled langtools classes --
-# for example build/classes or dist/lib/classes.jar.
-
-# Get OS/ARCH specifics
-OSNAME = $(shell uname -s)
-ifeq ($(OSNAME), SunOS)
-  SLASH_JAVA = /java
-  PLATFORM = solaris
-  ARCH = $(shell uname -p)
-  ifeq ($(ARCH), i386)
-    ARCH=i586
-  endif
-endif
-ifeq ($(OSNAME), Linux)
-  SLASH_JAVA = /java
-  PLATFORM = linux
-  ARCH = $(shell uname -m)
-  ifeq ($(ARCH), i386)
-    ARCH=i586
-  endif
-endif
-ifeq ($(OSNAME), Darwin)
-  PLATFORM = bsd
-  ARCH = $(shell uname -m)
-  ifeq ($(ARCH), i386)
-    ARCH=i586
-  endif
-endif
-ifeq ($(OSNAME), Windows_NT)
-  # MKS
-  PLATFORM=windows
-endif
-ifeq ($(PLATFORM),)
-  PLATFORM = windows
-  CYGPATH = | cygpath -m -s -f -
-endif
-
-ifeq ($(PLATFORM), windows)
-  SLASH_JAVA = J:
-  ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),ia64)
-    ARCH=ia64
-  else
-    ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),AMD64)
-      ARCH=x64
-    else
-      ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),EM64T)
-        ARCH=x64
-      else
-        ARCH=i586
-      endif
-    endif
-  endif
-  EXE_SUFFIX=.exe
-endif
-
-# Root of this test area (important to use full paths in some places)
-TEST_ROOT := $(shell pwd $(CYGPATH) )
-
-ifeq ($(PLATFORM), windows)
-  SLASH_JAVA = J:
-else
-  SLASH_JAVA = /java
-endif
-
-# Default JTREG to run
-ifndef JTREG_HOME
-  ifdef JT_HOME
-    JTREG_HOME = $(JT_HOME)
-  else
-    JTREG_HOME = $(SLASH_JAVA)/re/jtreg/4.2/promoted/latest/
-  endif
-endif
-JTREG = $(JTREG_HOME)/bin/jtreg
-JTDIFF = $(JTREG_HOME)/bin/jtdiff
-
-# Problematic tests to be excluded
-PROBLEM_LISTS=ProblemList.txt
-
-# Create exclude list for this platform and arch
-ifdef NO_EXCLUDES
-  JTREG_EXCLUSIONS =
-else
-  JTREG_EXCLUSIONS = $(PROBLEM_LISTS:%=-exclude:%)
-endif
-
-# Default JCK to run
-ifndef JCK_HOME
-  JCK_HOME = $(SLASH_JAVA)/re/jck/8/promoted/latest/binaries
-endif
-
-# Default JDK for JTREG and JCK
-#
-# JT_JAVA is the version of java used to run jtreg/JCK. 
-#
-ifndef JT_JAVA
-  JT_JAVA = $(SLASH_JAVA)/re/jdk/1.9.0/archive/fcs/binaries/$(PLATFORM)-$(ARCH)
-endif
-
-# Default JDK to test
-TESTJAVA = $(SLASH_JAVA)/re/jdk/1.9.0/promoted/latest/binaries/$(PLATFORM)-$(ARCH)
-
-# PRODUCT_HOME is a variable pointing to a directory containing the output from
-# make/Makefile
-# For langtools, this is a directory containing build and dist
-# For a control build, this is build/$(PRODUCT)-$(ARCH)/XYZ-image
-#	(i.e, j2sdk-image or jdk-module-image)
-ifdef PRODUCT_HOME
-  ifeq ($(shell [ -r $(PRODUCT_HOME)/dist/lib/classes.jar ]; echo $$?),0)
-    TESTBOOTCLASSPATH = $(PRODUCT_HOME)/dist/lib/classes.jar
-  endif
-  ifeq ($(shell [ -r $(PRODUCT_HOME)/bin/javac$(EXE_SUFFIX) ]; echo $$?),0)
-    TESTJAVA = $(PRODUCT_HOME)
-  endif
-endif
-
-ifdef TESTBOOTCLASSPATH
-  JTREG_OPTIONS += -Xbootclasspath/p:$(TESTBOOTCLASSPATH)
-### In the following, -refvmoptions is an undocumented option
-### The following does not work JCK 7 b30 2/6/2010. Awaiting b31.
-  JCK_OPTIONS += \
-	-vmoptions:-Xbootclasspath/p:$(TESTBOOTCLASSPATH) \
-	-refvmoptions:-Xbootclasspath/p:$(TESTBOOTCLASSPATH)
-endif
-
-# Set the max memory for jtreg target test JVMs
-JTREG_TESTVM_MEMORY_OPTION = -vmoption:-Xmx768m
-JTREG_OPTIONS += $(JTREG_TESTVM_MEMORY_OPTION)
-
-# Retain all files for failing tests
-JTREG_OPTIONS += -retain:fail,error
-
-ifdef EXTRA_JTREG_OPTIONS
-  JTREG_OPTIONS += $(EXTRA_JTREG_OPTIONS)
-endif
-
-# Concurrency is the number of tests that can execute at once.
-# On an otherwise empty machine, suggest setting to (#cpus + 2)
-# If unset, the default is (#cpus)
-### RFE: determine and use #cpus
-ifdef CONCURRENCY
-  JTREG_OPTIONS += -agentvm -concurrency:$(CONCURRENCY)
-else
-  JTREG_OPTIONS += -agentvm
-endif
-
-ifdef JCK_CONCURRENCY
-  JCK_OPTIONS += -concurrency:$(JCK_CONCURRENCY)
-endif
-
-# JCK is executed using "Multi-JVM Group Mode", which is a hybrid
-# of otherVM and sameVM modes. New JVMs are created and reused for
-# a number of tests, then eventually discarded and a new one started.
-# This amortizes the JVM startup time.  The "group size" defines
-# how many tests are run in a JVM before it is replaced.
-# If unset, the default is 100.
-JCK_GROUP_SIZE = 1000
-ifdef JCK_GROUP_SIZE
-  JCK_COMPILER_OPTIONS += \
-    -jtoptions:-Ejck.env.compiler.testCompile.groupMode.groupSize=$(JCK_GROUP_SIZE) \
-    -jtoptions:-Ejck.env.compiler.compRefExecute.groupMode.groupSize=$(JCK_GROUP_SIZE)
-### The following is not supported. Awaiting RFE 6924287
-### 6924287: Jck4Jdk: Allow to configure test group size for group mode via simple command line option
-###  JCK_RUNTIME_OPTIONS += \
-###    -jtoptions:-Ejck.env.runtime.testCompile.groupMode.groupSize=$(JCK_GROUP_SIZE)
-endif
-
-# Timeouts
-ifdef JTREG_TIMEOUT_FACTOR
-  JTREG_OPTIONS += -timeoutFactor:$(JTREG_TIMEOUT_FACTOR)
-endif
-
-ifdef JCK_TIMEOUT_FACTOR
-  JCK_OPTIONS += -timeout:$(JCK_TIMEOUT_FACTOR)
-endif
-
-# Default verbosity setting for jtreg
-JTREG_VERBOSE ?= fail,error,time
-
-# Default verbosity setting for jck
-JCK_VERBOSE ?= non-pass
-
-# Assertions: some tests show failures when assertions are enabled.
-# Since javac is typically loaded via the bootclassloader (either via TESTJAVA
-# or TESTBOOTCLASSPATH), you may need -esa to enable assertions in javac.
-JTREG_OPTIONS += $(ASSERTION_OPTIONS)
-JCK_OPTIONS += $(ASSERTION_OPTIONS:%=-vmoptions:%)
-
-# Include shared options
-JCK_COMPILER_OPTIONS += $(JCK_OPTIONS)
-JCK_RUNTIME_OPTIONS += $(JCK_OPTIONS)
-
-# Exit codes:
-# jtreg, jck:   0: OK, 1: tests failed, 2: tests error; 3+: SERIOUS
-FATAL_JTREG_EXIT = 3
-FATAL_JCK_EXIT = 3
-# jtdiff: 0: OK, 1: differences found; 2+: SERIOUS
-FATAL_JTDIFF_EXIT = 2
-#
-# Exit -- used for final "normal" exit from "make". Redefine to "true" to avoid
-# having make exit with non-zero return code.
-EXIT = exit
-# Function to exit shell if exit code of preceding command is greater than or equal
-# to a given level. Redefine function or preceding FATAL_*_EXIT codes as needed.
-EXIT_IF_FATAL = status=$$?; if [ $$status -ge $(1) ]; then exit $$status ; fi
-
-# Root of all test results
-TEST_OUTPUT_DIR ?= $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools
-ABS_TEST_OUTPUT_DIR := \
-	$(shell mkdir -p $(TEST_OUTPUT_DIR); \
-		cd  $(TEST_OUTPUT_DIR); \
-		pwd $(CYGPATH))
-# Subdirectories for different test runs
-JTREG_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jtreg
-JCK_COMPILER_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jck-compiler
-JCK_RUNTIME_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jck-runtime-Xcompile
-
-# Is the test JVM 32-bit?
-DATA_MODEL := \
-	$(shell $(TESTJAVA)/bin/java -XshowSettings:properties -version 2>&1 | \
-		grep 'sun\.arch\.data\.model' | \
-		awk '{print $$3}')
-ifeq ($(DATA_MODEL), 32)
-  # Set the GC options for test vms having a smaller address space
-  JTREG_GC_OPTION = -vmoption:-XX:+UseSerialGC
-  JTREG_OPTIONS += $(JTREG_GC_OPTION)
-endif
-
-# Default make rule -- warning, may take a while
-all: jtreg-tests jck-compiler-tests jck-runtime-tests all-summary
-	@echo "Testing completed successfully"
-
-jtreg apt javac javadoc javah javap jdeps: jtreg-tests jtreg-summary
-	@echo "Testing completed successfully"
-
-jck-compiler: jck-compiler-tests jck-compiler-summary
-	@echo "Testing completed successfully"
-
-jck-runtime: jck-runtime-tests jck-runtime-summary
-	@echo "Testing completed successfully"
-
-# a way to select tests from outside
-# works for targets 'jtreg', 'jck-compiler', and 'jck-runtime'
-ifdef TEST_SELECTION
-  JTREG_TESTDIRS = $(TEST_SELECTION)
-  JCK_COMPILER_TESTDIRS = $(TEST_SELECTION)
-  JCK_RUNTIME_TESTDIRS = $(TEST_SELECTION)
-endif
-
-# convenience targets
-all:		JTREG_TESTDIRS = .
-jtreg:		JTREG_TESTDIRS ?= .
-apt:		JTREG_TESTDIRS = tools/apt
-javac: 		JTREG_TESTDIRS = tools/javac
-javadoc:	JTREG_TESTDIRS = tools/javadoc com/sun/javadoc
-javah:		JTREG_TESTDIRS = tools/javah
-javap:		JTREG_TESTDIRS = tools/javap
-jdeps:		JTREG_TESTDIRS = tools/jdeps
-
-
-# Run jtreg tests
-#
-# JTREG_HOME
-#	Installed location of jtreg
-# JT_JAVA
-#	Version of java used to run jtreg.  Should normally be the same as TESTJAVA
-# TESTJAVA
-# 	Version of java to be tested.
-# JTREG_VERBOSE
-# Verbosity setting for jtreg
-# JTREG_OPTIONS
-#	Additional options for jtreg
-# JTREG_TESTDIRS
-#	Directories of tests to be run
-# JTREG_OUTPUT_DIR
-#	Where to write the results
-# JTREG_REFERENCE
-#	(Optional) reference results (e.g. work, report or summary.txt)
-#
-jtreg_tests: jtreg-tests
-jtreg-tests: check-jtreg FRC
-	@rm -f -r $(JTREG_OUTPUT_DIR)/JTwork $(JTREG_OUTPUT_DIR)/JTreport \
-	    $(JTREG_OUTPUT_DIR)/diff.html $(JTREG_OUTPUT_DIR)/status.txt
-	@mkdir -p $(JTREG_OUTPUT_DIR)
-	( JT_JAVA=$(JT_JAVA) $(JTREG) \
-	  -a -ignore:quiet $(if $(JTREG_VERBOSE),-v:$(JTREG_VERBOSE)) \
-	  -r:$(JTREG_OUTPUT_DIR)/JTreport \
-	  -w:$(JTREG_OUTPUT_DIR)/JTwork \
-	  -jdk:$(TESTJAVA) \
-	  $(JAVA_ARGS:%=-vmoption:%) \
-	  $(JTREG_EXCLUSIONS) \
-	  $(JTREG_OPTIONS) \
-	  $(JTREG_TESTDIRS) \
-	  || ( $(call EXIT_IF_FATAL,$(FATAL_JTREG_EXIT)) ; \
-	    echo $$status > $(JTREG_OUTPUT_DIR)/status.txt \
-	  ) \
-	) 2>&1 | tee $(JTREG_OUTPUT_DIR)/output.txt
-ifdef JTREG_REFERENCE
-	JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JTREG_OUTPUT_DIR)/diff.html \
-	    $(JTREG_REFERENCE) $(JTREG_OUTPUT_DIR)/JTreport \
-	|| ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) )
-endif
-
-jtreg-summary: FRC
-	@if [ -r $(JTREG_OUTPUT_DIR)/status.txt ]; then \
-	    echo ; echo "Summary of jtreg test failures" ; \
-	    cat $(JTREG_OUTPUT_DIR)/JTreport/text/summary.txt | \
-		grep -v 'Not run' | grep -v 'Passed' ; \
-	    echo ; \
-	    $(EXIT) `cat $(JTREG_OUTPUT_DIR)/status.txt` ; \
-	fi
-
-# Check to make sure these directories exist
-check-jtreg: $(PRODUCT_HOME) $(JTREG)
-
-
-# Run JCK-compiler tests
-#
-# JCK_HOME
-#	Installed location of JCK: should include JCK-compiler, and JCK-extras
-#       Default is JCK 8.
-# JT_JAVA
-#	Version of java used to run JCK.  Should normally be the same as TESTJAVA
-#       Default is JDK 7
-# TESTJAVA
-# 	Version of java to be tested.
-# JCK_VERBOSE
-#	Verbosity setting for jtjck
-# JCK_COMPILER_OPTIONS
-#	Additional options for JCK-compiler
-# JCK_COMPILER_TESTDIRS
-#	Directories of tests to be run
-# JCK_COMPILER_OUTPUT_DIR
-#	Where to write the results
-# JCK_COMPILER_REFERENCE
-#	(Optional) reference results (e.g. work, report or summary.txt)
-#
-jck-compiler-tests: check-jck FRC
-	@rm -f -r $(JCK_COMPILER_OUTPUT_DIR)/work $(JCK_COMPILER_OUTPUT_DIR)/report \
-	    $(JCK_COMPILER_OUTPUT_DIR)/diff.html $(JCK_COMPILER_OUTPUT_DIR)/status.txt
-	@mkdir -p $(JCK_COMPILER_OUTPUT_DIR)
-	$(JT_JAVA)/bin/java -Xmx1024m \
-	    -jar $(JCK_HOME)/JCK-compiler-9/lib/jtjck.jar \
-	    $(if $(JCK_VERBOSE),$(if $(filter $(JCK_VERBOSE),summary),-v,-v:$(JCK_VERBOSE))) \
-            -r:$(JCK_COMPILER_OUTPUT_DIR)/report \
-            -w:$(JCK_COMPILER_OUTPUT_DIR)/work \
-            -jdk:$(TESTJAVA) \
-	    $(JCK_COMPILER_OPTIONS) \
-            $(JCK_COMPILER_TESTDIRS) \
-	|| ( $(call EXIT_IF_FATAL,$(FATAL_JCK_EXIT)) ; \
-	    echo $$status > $(JCK_COMPILER_OUTPUT_DIR)/status.txt \
-	)
-ifdef JCK_COMPILER_REFERENCE
-	JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JCK_COMPILER_OUTPUT_DIR)/diff.html \
-	    $(JCK_COMPILER_REFERENCE) $(JCK_COMPILER_OUTPUT_DIR)/report \
-	|| ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) )
-endif
-
-jck-compiler-summary: FRC
-	@if [ -r $(JCK_COMPILER_OUTPUT_DIR)/status.txt ]; then \
-	    echo ; echo "Summary of JCK-compiler test failures" ; \
-	    cat $(JCK_COMPILER_OUTPUT_DIR)/report/text/summary.txt | \
-		grep -v 'Not run' | grep -v 'Passed' ; \
-	    echo ; \
-	    $(EXIT) `cat $(JCK_COMPILER_OUTPUT_DIR)/status.txt` ; \
-	fi
-
-# Run JCK-runtime tests in -Xcompile mode
-# This is a special mode to test javac by compiling the tests in the JCK-runtime test suite
-# Normal JCK-runtime invocation belongs in the jdk/ repository.
-#
-# JCK_HOME
-#	Installed location of JCK: should include JCK-compiler, JCK-runtime and JCK-extras
-# JT_JAVA
-#	Version of java used to run JCK.  Should normally be the same as TESTJAVA
-# TESTJAVA
-# 	Version of java to be tested.
-# JCK_VERBOSE
-#	Verbosity setting for jtjck
-# JCK_RUNTIME_OPTIONS
-#	Additional options for JCK-runtime
-# JCK_RUNTIME_TESTDIRS
-#	Directories of tests to be run
-# JCK_RUNTIME_OUTPUT_DIR
-#	Where to write the results
-# JCK_RUNTIME_REFERENCE
-#	(Optional) reference results (e.g. work, report or summary.txt)
-#
-jck-runtime-tests: check-jck FRC
-	@rm -f -r $(JCK_RUNTIME_OUTPUT_DIR)/work $(JCK_RUNTIME_OUTPUT_DIR)/report \
-	    $(JCK_RUNTIME_OUTPUT_DIR)/diff.html $(JCK_RUNTIME_OUTPUT_DIR)/status.txt
-	@mkdir -p $(JCK_RUNTIME_OUTPUT_DIR)
-	$(JT_JAVA)/bin/java -Xmx1024m \
-	    -jar $(JCK_HOME)/JCK-runtime-9/lib/jtjck.jar \
-	    $(if $(JCK_VERBOSE),$(if $(filter $(JCK_VERBOSE),summary),-v,-v:$(JCK_VERBOSE))) \
-            -r:$(JCK_RUNTIME_OUTPUT_DIR)/report \
-            -w:$(JCK_RUNTIME_OUTPUT_DIR)/work \
-            -jdk:$(TESTJAVA) \
-	    -Xcompile \
-	    $(JCK_RUNTIME_OPTIONS) \
-            $(JCK_RUNTIME_TESTDIRS) \
-	|| ( $(call EXIT_IF_FATAL,$(FATAL_JCK_EXIT)) ; \
-	    echo $$status > $(JCK_RUNTIME_OUTPUT_DIR)/status.txt \
-	)
-ifdef JCK_RUNTIME_REFERENCE
-	JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JCK_RUNTIME_OUTPUT_DIR)/diff.html \
-	    $(JCK_RUNTIME_REFERENCE) $(JCK_RUNTIME_OUTPUT_DIR)/report \
-	|| ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) )
-endif
-
-jck-runtime-summary: FRC
-	@if [ -r $(JCK_RUNTIME_OUTPUT_DIR)/status.txt ]; then \
-	    echo ; echo "Summary of JCK-runtime test failures" ; \
-	    cat $(JCK_RUNTIME_OUTPUT_DIR)/report/text/summary.txt | \
-		grep -v 'Not run' | grep -v 'Passed' ; \
-	    echo ; \
-	    $(EXIT) `cat $(JCK_RUNTIME_OUTPUT_DIR)/status.txt` ; \
-	fi
-
-# Check to make sure these directories exist
-check-jck:
-	@if [ ! -d '$(JCK_HOME)' ]; then \
-	    echo "JCK_HOME $(JCK_HOME) missing" ; \
-	    $(EXIT) 1 ; \
-	fi
-	@if [ ! -d '$(PRODUCT_HOME)' ]; then \
-	    echo "PRODUCT_HOME $(PRODUCT_HOME) missing" ; \
-	    $(EXIT) 1 ; \
-	fi
-
-all-summary: FRC
-	@if [ -n "`find $(TEST_OUTPUT_DIR) -name status.txt`" ]; then
-	    echo ; echo "Summary of test failures" ; \
-	    cat `find $(TEST_OUTPUT_DIR) -name summary.txt` | \
-		grep -v 'Not run' | grep -v 'Passed' ; \
-	    echo ; \
-	    $(EXIT) 1
-	fi
-
-# Cleanup
-clean:
-
-# Used to force a target rules to run
-FRC:
-
-# Phony targets (e.g. these are not filenames)
-.PHONY: all clean \
-	jtreg javac javadoc javah javap jdeps jtreg-tests jtreg-summary check-jtreg \
-	jck-compiler jck-compiler-tests jck-compiler-summary \
-	jck-runtime jck-runtime-tests jck-runtime-summary check-jck
-
-# No use of suffix rules
-.SUFFIXES:
-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/langtools/tools/javac/generics/typevars/AnnoTypeVarBounds.java	Tue Jan 29 09:38:31 2019 -0500
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/*
+ * @test
+ * @bug     8193367
+ * @summary Annotated type variable bounds crash javac
+ * @compile AnnoTypeVarBounds.java
+ */
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Target;
+
+class AnnoTypeVarBounds {
+    @Target(value = {ElementType.TYPE_USE})
+    @interface A{}
+    class Sup<X, Y> { }
+    class Sub<U extends @A V, @A V extends String> extends Sup<U, V> { }
+}
--- a/test/langtools/tools/javac/lib/DPrinter.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/langtools/tools/javac/lib/DPrinter.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1336,8 +1336,8 @@
             // null or bot. So, only print the bound for subtypes of TypeVar,
             // or if the bound is (erroneously) not null or bot.
             if (!type.hasTag(TypeTag.TYPEVAR)
-                    || !(type.bound == null || type.bound.hasTag(TypeTag.BOT))) {
-                printType("bound", type.bound, Details.FULL);
+                    || !(type.getUpperBound() == null || type.getUpperBound().hasTag(TypeTag.BOT))) {
+                printType("bound", type.getUpperBound(), Details.FULL);
             }
             printType("lower", type.lower, Details.FULL);
             return visitType(type, null);
--- a/test/langtools/tools/javac/types/GenericTypeWellFormednessTest.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/langtools/tools/javac/types/GenericTypeWellFormednessTest.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -144,7 +144,7 @@
         typeVars[typeVars.length - 1] = new InstantiableType(null) {
             Type inst(Type clazz) {
                 TypeVar tvar = fac.TypeVariable();
-                tvar.bound = subst(clazz, Mapping(clazz.getTypeArguments().head, tvar));
+                tvar.setUpperBound( subst(clazz, Mapping(clazz.getTypeArguments().head, tvar)) );
                 return tvar;
             }
         };
@@ -204,20 +204,20 @@
 
         TypeVar tv4 = fac.TypeVariable();
         Type decl4 = fac.Class(tv4);
-        tv4.bound = decl4;
+        tv4.setUpperBound(decl4);
         tv4.tsym.name = predef.exceptionType.tsym.name;
 
         TypeVar tv5 = fac.TypeVariable();
         Type decl5 = fac.Class(tv5);
-        tv5.bound = subst(decl5, Mapping(tv5, fac.Wildcard(BoundKind.EXTENDS, tv5)));
+        tv5.setUpperBound( subst(decl5, Mapping(tv5, fac.Wildcard(BoundKind.EXTENDS, tv5))) );
 
         TypeVar tv6 = fac.TypeVariable();
         Type decl6 = fac.Class(tv6);
-        tv6.bound = subst(decl6, Mapping(tv6, fac.Wildcard(BoundKind.SUPER, tv6)));
+        tv6.setUpperBound( subst(decl6, Mapping(tv6, fac.Wildcard(BoundKind.SUPER, tv6))) );
 
         TypeVar tv7 = fac.TypeVariable();
         Type decl7 = fac.Class(tv7);
-        tv7.bound = subst(decl7, Mapping(tv7, fac.Wildcard(BoundKind.UNBOUND, predef.objectType)));
+        tv7.setUpperBound( subst(decl7, Mapping(tv7, fac.Wildcard(BoundKind.UNBOUND, predef.objectType))) );
 
         columns = new Type[] {
             decl1, decl2, decl3, decl4, decl5, decl6, decl7
--- a/test/lib/jdk/test/lib/NetworkConfiguration.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/lib/jdk/test/lib/NetworkConfiguration.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,9 +23,9 @@
 
 package jdk.test.lib;
 
+import java.io.IOException;
 import java.io.PrintStream;
 import java.io.UncheckedIOException;
-import java.io.IOException;
 import java.net.Inet4Address;
 import java.net.Inet6Address;
 import java.net.InetAddress;
@@ -35,9 +35,9 @@
 import java.util.LinkedList;
 import java.util.List;
 import java.util.Map;
-import java.util.function.Predicate;
 import java.util.stream.Collectors;
 import java.util.stream.Stream;
+
 import static java.net.NetworkInterface.getNetworkInterfaces;
 import static java.util.Collections.list;
 
@@ -49,12 +49,140 @@
 
     private Map<NetworkInterface,List<Inet4Address>> ip4Interfaces;
     private Map<NetworkInterface,List<Inet6Address>> ip6Interfaces;
+    private final boolean isIPv6Available;
+    private boolean has_testableipv6address = false;
+    private boolean has_sitelocaladdress = false;
+    private boolean has_linklocaladdress = false;
+    private boolean has_globaladdress = false;
 
     private NetworkConfiguration(
             Map<NetworkInterface,List<Inet4Address>> ip4Interfaces,
             Map<NetworkInterface,List<Inet6Address>> ip6Interfaces) {
         this.ip4Interfaces = ip4Interfaces;
         this.ip6Interfaces = ip6Interfaces;
+
+        // initialize properties that can be queried
+        isIPv6Available = !ip6Interfaces().collect(Collectors.toList()).isEmpty();
+        ip6Interfaces().forEach(nif -> {
+            ip6Addresses(nif)
+                // On Solaris or AIX, a configuration with only local or loopback
+                // addresses does not fully enable IPv6 operations.
+                // E.g. IPv6 multicasting does not work.
+                // So, don't set has_testableipv6address if we only find these.
+                .filter(addr -> Platform.isSolaris() || Platform.isAix() ?
+                    !(addr.isAnyLocalAddress() || addr.isLoopbackAddress()) : true)
+                .forEach(ia -> {
+                    has_testableipv6address = true;
+                    if (ia.isLinkLocalAddress()) has_linklocaladdress = true;
+                    if (ia.isSiteLocalAddress()) has_sitelocaladdress = true;
+
+                    if (!ia.isLinkLocalAddress() &&
+                        !ia.isSiteLocalAddress() &&
+                        !ia.isLoopbackAddress()) {
+                        has_globaladdress = true;
+                    }
+                });
+        });
+    }
+
+    private static boolean isNotExcludedInterface(NetworkInterface nif) {
+        if (Platform.isOSX() && nif.getName().contains("awdl")) {
+            return false;
+        }
+        if (Platform.isWindows()) {
+            String dName = nif.getDisplayName();
+            if (dName != null && dName.contains("Teredo")) {
+                return false;
+            }
+        }
+        return true;
+    }
+
+    private static boolean isNotLoopback(NetworkInterface nif) {
+        try {
+            return !nif.isLoopback();
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+    }
+
+    private boolean hasIp4Addresses(NetworkInterface nif) {
+        return ip4Interfaces.get(nif).stream().anyMatch(a -> !a.isAnyLocalAddress());
+    }
+
+    private boolean hasIp6Addresses(NetworkInterface nif) {
+        return ip6Interfaces.get(nif).stream().anyMatch(a -> !a.isAnyLocalAddress());
+    }
+
+    private boolean supportsIp4Multicast(NetworkInterface nif) {
+        try {
+            if (!nif.supportsMulticast()) {
+                return false;
+            }
+
+            // On AIX there is a bug:
+            // When IPv6 is enabled on the system, the JDK opens sockets as AF_INET6.
+            // If there's an interface configured with IPv4 addresses only, it should
+            // be able to become the network interface for a multicast socket (that
+            // could be in both, IPv4 or IPv6 space). But both possible setsockopt
+            // calls for either IPV6_MULTICAST_IF or IP_MULTICAST_IF return
+            // EADDRNOTAVAIL. So we must skip such interfaces here.
+            if (Platform.isAix() && isIPv6Available() && !hasIp6Addresses(nif)) {
+                return false;
+            }
+
+            return hasIp4Addresses(nif);
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+    }
+
+    private boolean supportsIp6Multicast(NetworkInterface nif) {
+        try {
+            if (!nif.supportsMulticast()) {
+                return false;
+            }
+
+            return hasIp6Addresses(nif);
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+    }
+
+    /**
+     * Returns whether IPv6 is available at all.
+     * This should resemble the result of native ipv6_available() in net_util.c
+     */
+    public boolean isIPv6Available() {
+        return isIPv6Available;
+    }
+
+    /**
+     * Does any (usable) IPv6 address exist in the network configuration?
+     */
+    public boolean hasTestableIPv6Address() {
+        return has_testableipv6address;
+    }
+
+    /**
+     * Does any site local address exist?
+     */
+    public boolean hasSiteLocalAddress() {
+        return has_sitelocaladdress;
+    }
+
+    /**
+     * Does any link local address exist?
+     */
+    public boolean hasLinkLocalAddress() {
+        return has_linklocaladdress;
+    }
+
+    /**
+     * Does any global IPv6 address exist?
+     */
+    public boolean has_globaladdress() {
+        return has_globaladdress;
     }
 
     /**
@@ -72,7 +200,7 @@
         return ip4Interfaces.keySet()
                             .stream()
                             .filter(NetworkConfiguration::isNotExcludedInterface)
-                            .filter(hasIp4Addresses);
+                            .filter(this::hasIp4Addresses);
     }
 
     /**
@@ -82,64 +210,57 @@
         return ip6Interfaces.keySet()
                             .stream()
                             .filter(NetworkConfiguration::isNotExcludedInterface)
-                            .filter(hasIp6Addresses);
+                            .filter(this::hasIp6Addresses);
     }
 
-    private static boolean isNotExcludedInterface(NetworkInterface nif) {
-        if (Platform.isOSX() && nif.getName().contains("awdl")) {
-            return false;
-        }
-        String dName = nif.getDisplayName();
-        if (Platform.isWindows() && dName != null && dName.contains("Teredo")) {
-            return false;
-        }
-        return true;
+    /**
+     * Returns a stream of interfaces suitable for functional tests.
+     */
+    public Stream<NetworkInterface> multicastInterfaces(boolean includeLoopback) {
+        return Stream
+            .concat(ip4MulticastInterfaces(includeLoopback),
+                    ip6MulticastInterfaces(includeLoopback))
+            .distinct();
     }
 
-    private final Predicate<NetworkInterface> hasIp4Addresses = nif ->
-            ip4Interfaces.get(nif).stream().anyMatch(a -> !a.isAnyLocalAddress());
-
-    private final Predicate<NetworkInterface> hasIp6Addresses = nif ->
-            ip6Interfaces.get(nif).stream().anyMatch(a -> !a.isAnyLocalAddress());
-
+    /**
+     * Returns a stream of interfaces suitable for IPv4 multicast tests.
+     *
+     * The loopback interface will not be included.
+     */
+    public Stream<NetworkInterface> ip4MulticastInterfaces() {
+        return ip4MulticastInterfaces(false);
+    }
 
     /**
      * Returns a stream of interfaces suitable for IPv4 multicast tests.
      */
-    public Stream<NetworkInterface> ip4MulticastInterfaces() {
-        return ip4Interfaces().filter(supportsIp4Multicast);
+    public Stream<NetworkInterface> ip4MulticastInterfaces(boolean includeLoopback) {
+        return (includeLoopback) ?
+            ip4Interfaces().filter(this::supportsIp4Multicast) :
+            ip4Interfaces().filter(this::supportsIp4Multicast)
+                .filter(NetworkConfiguration::isNotLoopback);
+    }
+
+    /**
+     * Returns a stream of interfaces suitable for IPv6 multicast tests.
+     *
+     * The loopback interface will not be included.
+     */
+    public Stream<NetworkInterface> ip6MulticastInterfaces() {
+        return ip6MulticastInterfaces(false);
     }
 
     /**
      * Returns a stream of interfaces suitable for IPv6 multicast tests.
      */
-    public Stream<NetworkInterface> ip6MulticastInterfaces() {
-        return ip6Interfaces().filter(supportsIp6Multicast);
+    public Stream<NetworkInterface> ip6MulticastInterfaces(boolean includeLoopback) {
+        return (includeLoopback) ?
+            ip6Interfaces().filter(this::supportsIp6Multicast) :
+            ip6Interfaces().filter(this::supportsIp6Multicast)
+                .filter(NetworkConfiguration::isNotLoopback);
     }
 
-    private final Predicate<NetworkInterface> supportsIp4Multicast = nif -> {
-        try {
-            if (!nif.supportsMulticast() || nif.isLoopback()) {
-                return false;
-            }
-            return hasIp4Addresses.test(nif);
-        } catch (IOException e) {
-            throw new UncheckedIOException(e);
-        }
-    };
-
-    private final Predicate<NetworkInterface> supportsIp6Multicast = nif -> {
-        try {
-            if (!nif.supportsMulticast() || nif.isLoopback()) {
-                return false;
-            }
-
-            return hasIp6Addresses.test(nif);
-        } catch (IOException e) {
-            throw new UncheckedIOException(e);
-        }
-    };
-
     /**
      * Returns all addresses on all "functional" interfaces.
      */
@@ -176,6 +297,12 @@
         return ip6Interfaces.get(nif).stream();
     }
 
+    @Override
+    public String toString() {
+        return interfaces().map(NetworkConfiguration::interfaceInformation)
+                           .collect(Collectors.joining());
+    }
+
     /**
      * Return a NetworkConfiguration instance.
      */
@@ -205,12 +332,6 @@
         return new NetworkConfiguration(ip4Interfaces, ip6Interfaces);
     }
 
-    @Override
-    public String toString() {
-        return interfaces().map(NetworkConfiguration::interfaceInformation)
-                           .collect(Collectors.joining());
-    }
-
     /** Returns detailed information for the given interface. */
     public static String interfaceInformation(NetworkInterface nif) {
         StringBuilder sb = new StringBuilder();
--- a/test/lib/sun/hotspot/WhiteBox.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/lib/sun/hotspot/WhiteBox.java	Tue Jan 29 09:38:31 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -549,4 +549,7 @@
 
   // Protection Domain Table
   public native int protectionDomainRemovedCount();
+
+  // Number of loaded AOT libraries
+  public native int aotLibrariesCount();
 }
--- a/test/micro/org/openjdk/bench/javax/crypto/full/CryptoBase.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/micro/org/openjdk/bench/javax/crypto/full/CryptoBase.java	Tue Jan 29 09:38:31 2019 -0500
@@ -45,7 +45,7 @@
 import java.util.concurrent.TimeUnit;
 
 
-@Fork(5)
+@Fork(jvmArgsAppend = {"-XX:+AlwaysPreTouch"}, value = 5)
 @Warmup(iterations = 3, time = 3)
 @Measurement(iterations = 8, time = 2)
 @OutputTimeUnit(TimeUnit.SECONDS)
--- a/test/micro/org/openjdk/bench/vm/lang/LockUnlock.java	Tue Jan 22 09:43:38 2019 -0500
+++ b/test/micro/org/openjdk/bench/vm/lang/LockUnlock.java	Tue Jan 29 09:38:31 2019 -0500
@@ -110,6 +110,18 @@
         factorial = fact(10);
     }
 
+    /**
+     * Same as {@link #testRecursiveSynchronization()} but the first call
+     * to this method will generate the identity hashcode for this object
+     * which effectively disables biased locking as they occupy the same
+     * bits in the object header.
+     */
+    @Benchmark
+    public void testRecursiveSynchronizationNoBias() {
+        System.identityHashCode(this);
+        factorial = fact(10);
+    }
+
     private synchronized int fact(int n) {
         if (n == 0) {
             return 1;
--- a/test/nashorn/Makefile	Tue Jan 22 09:43:38 2019 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-default: all
-
-USE_FAILURE_HANDLER := true
-
-include ../TestCommon.gmk
-
-# Default make rule (runs default nashorn tests)
-all: nashorn_default
-	@$(ECHO) "Testing completed successfully"
-
-# ------------------------------------------------------------------
-
-nashorn_%:
-	$(ECHO) "Running tests: $@"
-	for each in $@; do \
-	        $(MAKE) -j 1 TEST_SELECTION=":$$each" UNIQUE_DIR=$$each jtreg_tests; \
-	done
-