hotspot/src/share/vm/runtime/globals.hpp
changeset 23474 55fbc11353ec
parent 23445 f01f43f477a1
parent 23472 35e93890ed88
child 23526 6851d341ad52
child 23517 27c4307d6cda
--- a/hotspot/src/share/vm/runtime/globals.hpp	Wed Mar 19 07:08:11 2014 -0700
+++ b/hotspot/src/share/vm/runtime/globals.hpp	Fri Mar 21 09:11:56 2014 +0100
@@ -3840,6 +3840,22 @@
   experimental(uintx, SymbolTableSize, defaultSymbolTableSize,              \
           "Number of buckets in the JVM internal Symbol table")             \
                                                                             \
+  product(bool, UseStringDeduplication, false,                              \
+          "Use string deduplication")                                       \
+                                                                            \
+  product(bool, PrintStringDeduplicationStatistics, false,                  \
+          "Print string deduplication statistics")                          \
+                                                                            \
+  product(uintx, StringDeduplicationAgeThreshold, 3,                        \
+          "A string must reach this age (or be promoted to an old region) " \
+          "to be considered for deduplication")                             \
+                                                                            \
+  diagnostic(bool, StringDeduplicationResizeALot, false,                    \
+          "Force table resize every time the table is scanned")             \
+                                                                            \
+  diagnostic(bool, StringDeduplicationRehashALot, false,                    \
+          "Force table rehash every time the table is scanned")             \
+                                                                            \
   develop(bool, TraceDefaultMethods, false,                                 \
           "Trace the default method processing steps")                      \
                                                                             \