src/share/vm/opto/node.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/opto/node.cpp

src/share/vm/opto/node.cpp

Print this page
rev 8016 : 8069191: moving predicate out of loops may cause array accesses to bypass null check
Summary: Remove CastPP nodes only during final graph reshape
Reviewed-by:

*** 1385,1400 **** return true; } return false; } - //------------------------------Ideal_DU_postCCP------------------------------- - // Idealize graph, using DU info. Must clone result into new-space - Node *Node::Ideal_DU_postCCP( PhaseCCP * ) { - return NULL; // Default to no change - } - //------------------------------hash------------------------------------------- // Hash function over Nodes. uint Node::hash() const { uint sum = 0; for( uint i=0; i<_cnt; i++ ) // Add in all inputs --- 1385,1394 ----
src/share/vm/opto/node.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File