src/share/vm/opto/c2_globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/opto

src/share/vm/opto/c2_globals.hpp

Print this page
rev 5462 : 8024069: replace_in_map() should operate on parent maps
Summary: type information gets lost because replace_in_map() doesn't update parent maps
Reviewed-by:
rev 5464 : 8024070: C2 needs some form of type speculation
Summary: record unused type profile information with type system, propagate and use it.
Reviewed-by:
rev 5465 : imported patch speculative-cleanup


 624                                                                             \
 625   develop(bool, VerifyAliases, false,                                       \
 626           "perform extra checks on the results of alias analysis")          \
 627                                                                             \
 628   product(bool, IncrementalInline, true,                                    \
 629           "do post parse inlining")                                         \
 630                                                                             \
 631   develop(bool, AlwaysIncrementalInline, false,                             \
 632           "do all inlining incrementally")                                  \
 633                                                                             \
 634   product(intx, LiveNodeCountInliningCutoff, 20000,                         \
 635           "max number of live nodes in a method")                           \
 636                                                                             \
 637   diagnostic(bool, OptimizeExpensiveOps, true,                              \
 638           "Find best control for expensive operations")                     \
 639                                                                             \
 640   product(bool, UseMathExactIntrinsics, true,                               \
 641           "Enables intrinsification of various java.lang.Math functions")   \
 642                                                                             \
 643   product(bool, ReplaceInParentMaps, false,                                 \
 644           "Propagate type improvements in callers of inlinee if possible")



 645 
 646 C2_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_EXPERIMENTAL_FLAG, DECLARE_NOTPRODUCT_FLAG)
 647 
 648 #endif // SHARE_VM_OPTO_C2_GLOBALS_HPP


 624                                                                             \
 625   develop(bool, VerifyAliases, false,                                       \
 626           "perform extra checks on the results of alias analysis")          \
 627                                                                             \
 628   product(bool, IncrementalInline, true,                                    \
 629           "do post parse inlining")                                         \
 630                                                                             \
 631   develop(bool, AlwaysIncrementalInline, false,                             \
 632           "do all inlining incrementally")                                  \
 633                                                                             \
 634   product(intx, LiveNodeCountInliningCutoff, 20000,                         \
 635           "max number of live nodes in a method")                           \
 636                                                                             \
 637   diagnostic(bool, OptimizeExpensiveOps, true,                              \
 638           "Find best control for expensive operations")                     \
 639                                                                             \
 640   product(bool, UseMathExactIntrinsics, true,                               \
 641           "Enables intrinsification of various java.lang.Math functions")   \
 642                                                                             \
 643   product(bool, ReplaceInParentMaps, false,                                 \
 644           "Propagate type improvements in callers of inlinee if possible")  \
 645                                                                             \
 646   diagnostic(bool, UseTypeSpeculation, true,                                \
 647           "Speculatively propagate types from profiles")
 648 
 649 C2_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_EXPERIMENTAL_FLAG, DECLARE_NOTPRODUCT_FLAG)
 650 
 651 #endif // SHARE_VM_OPTO_C2_GLOBALS_HPP
src/share/vm/opto/c2_globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File