comparison src/share/vm/runtime/globals.hpp @ 20028:104304a54b0c

Support CTW in product for graal
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 25 Mar 2015 11:47:49 -0700
parents f8147c931ce4
children 7848fc12602b
comparison
equal deleted inserted replaced
20027:87419b0d9bfb 20028:104304a54b0c
2676 \ 2676 \
2677 develop(bool, DelayCompilationDuringStartup, true, \ 2677 develop(bool, DelayCompilationDuringStartup, true, \
2678 "Delay invoking the compiler until main application class is " \ 2678 "Delay invoking the compiler until main application class is " \
2679 "loaded") \ 2679 "loaded") \
2680 \ 2680 \
2681 develop(bool, CompileTheWorld, false, \ 2681 NOT_GRAAL(develop(bool, CompileTheWorld, false, \
2682 "Compile all methods in all classes in bootstrap class path " \ 2682 "Compile all methods in all classes in bootstrap class path " \
2683 "(stress test)") \ 2683 "(stress test)")) \
2684 \
2685 GRAAL_ONLY(product(bool, CompileTheWorld, false, \
2686 "Compile all methods in all classes in bootstrap class path " \
2687 "(stress test)")) \
2684 \ 2688 \
2685 develop(bool, CompileTheWorldPreloadClasses, true, \ 2689 develop(bool, CompileTheWorldPreloadClasses, true, \
2686 "Preload all classes used by a class before start loading") \ 2690 "Preload all classes used by a class before start loading") \
2687 \ 2691 \
2688 notproduct(intx, CompileTheWorldSafepointInterval, 100, \ 2692 notproduct(intx, CompileTheWorldSafepointInterval, 100, \