comparison src/share/vm/opto/compile.cpp @ 14384:17ec2d5c43e8

8032490: Remove -XX:+-UseOldInlining Summary: Move the option to obsolete options list, purge the redundant compiler code. Reviewed-by: kvn, jrose
author shade
date Fri, 24 Jan 2014 15:26:56 +0400
parents 5ec7dace41a6
children 45467c53f178 085b304a1cc5
comparison
equal deleted inserted replaced
14383:5ec7dace41a6 14384:17ec2d5c43e8
699 Init(::AliasLevel); 699 Init(::AliasLevel);
700 700
701 701
702 print_compile_messages(); 702 print_compile_messages();
703 703
704 if (UseOldInlining || PrintCompilation NOT_PRODUCT( || PrintOpto) ) 704 _ilt = InlineTree::build_inline_tree_root();
705 _ilt = InlineTree::build_inline_tree_root();
706 else
707 _ilt = NULL;
708 705
709 // Even if NO memory addresses are used, MergeMem nodes must have at least 1 slice 706 // Even if NO memory addresses are used, MergeMem nodes must have at least 1 slice
710 assert(num_alias_types() >= AliasIdxRaw, ""); 707 assert(num_alias_types() >= AliasIdxRaw, "");
711 708
712 #define MINIMUM_NODE_HASH 1023 709 #define MINIMUM_NODE_HASH 1023