src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/runtime/globals.hpp

src/share/vm/runtime/globals.hpp

Print this page
rev 9032 : 8137167: JEP165: Compiler Control: Implementation task
Summary: Compiler Control JEP
Reviewed-by: roland, twisti

*** 3547,3556 **** --- 3547,3559 ---- "List of methods (pkg/class.name) to restrict compilation to") \ \ product(ccstr, CompileCommandFile, NULL, \ "Read compiler commands from this file [.hotspot_compiler]") \ \ + diagnostic(ccstr, CompilerDirectivesFile, NULL, \ + "Read compiler directives from this file") \ + \ product(ccstrlist, CompileCommand, "", \ "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \ \ develop(bool, ReplayCompiles, false, \ "Enable replay of compilations from ReplayDataFile") \
*** 4100,4110 **** "that are annotated with the @HotSpotIntrinsicCandidate " \ "annotation, and that " \ "(3) no orphan methods exist for class C (i.e., methods for " \ "which the VM declares an intrinsic but that are not declared "\ "in the loaded class C. " \ ! "Check (3) is available only in debug builds.") /* * Macros for factoring of globals */ --- 4103,4119 ---- "that are annotated with the @HotSpotIntrinsicCandidate " \ "annotation, and that " \ "(3) no orphan methods exist for class C (i.e., methods for " \ "which the VM declares an intrinsic but that are not declared "\ "in the loaded class C. " \ ! "Check (3) is available only in debug builds.") \ ! \ ! diagnostic(bool, CompilerDirectivesIgnoreCompileCommands, false, \ ! "Disable backwards compatibility for compile commands.") \ ! \ ! diagnostic(bool, PrintCompilerDirectives, false, \ ! "Print compiler directives on installation.") /* * Macros for factoring of globals */
src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File