src/share/vm/runtime/arguments.cpp

Print this page

        

@@ -2680,10 +2680,14 @@
         jio_fprintf(defaultStream::error_stream(),
                     "Invalid maximum code cache size: %s.\n", option->optionString);
         return JNI_EINVAL;
       }
       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
+#ifndef PRODUCT
+      } else if(match_option(option, "-XX:PrintCodeCacheDetails=", &tail)) {
+        CodeCache::init_printing_options(tail);
+#endif
       //-XX:IncreaseFirstTierCompileThresholdAt=
       } else if (match_option(option, "-XX:IncreaseFirstTierCompileThresholdAt=", &tail)) {
         uintx uint_IncreaseFirstTierCompileThresholdAt = 0;
         if (!parse_uintx(tail, &uint_IncreaseFirstTierCompileThresholdAt, 0) || uint_IncreaseFirstTierCompileThresholdAt > 99) {
           jio_fprintf(defaultStream::error_stream(),