From deec4ce18c8c2f64a9cb549d5eb870fa0ee32937 Mon Sep 17 00:00:00 2001 From: Vladimir Ivanov Date: Tue, 20 Oct 2015 19:22:56 +0300 Subject: [PATCH] 8132168: Support IdealGraphVisualizer in optimized build Reviewed-by: kvn --- hotspot/src/share/vm/opto/c2_globals.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hotspot/src/share/vm/opto/c2_globals.hpp b/hotspot/src/share/vm/opto/c2_globals.hpp index 1782abfd0a1..864f9d859e4 100644 --- a/hotspot/src/share/vm/opto/c2_globals.hpp +++ b/hotspot/src/share/vm/opto/c2_globals.hpp @@ -368,18 +368,18 @@ product(bool, UseRDPCForConstantTableBase, false, \ "Use Sparc RDPC instruction for the constant table base.") \ \ - develop(bool, PrintIdealGraph, false, \ + notproduct(bool, PrintIdealGraph, false, \ "Print ideal graph to XML file / network interface. " \ "By default attempts to connect to the visualizer on a socket.") \ \ - develop(intx, PrintIdealGraphLevel, 0, \ + notproduct(intx, PrintIdealGraphLevel, 0, \ "Level of detail of the ideal graph printout. " \ "System-wide value, 0=nothing is printed, 4=all details printed. "\ "Level of detail of printouts can be set on a per-method level " \ "as well by using CompileCommand=option.") \ range(0, 4) \ \ - develop(intx, PrintIdealGraphPort, 4444, \ + notproduct(intx, PrintIdealGraphPort, 4444, \ "Ideal graph printer to network port") \ range(0, SHRT_MAX) \ \