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

src/share/vm/opto/node.hpp

Print this page
rev 8006 : 8073480: C2 should optimize explicit range checks
Summary: explicit range checks should be recognized by C2
Reviewed-by:

*** 929,939 **** // Return a node with opcode "opc" and same inputs as "this" if one can // be found; Otherwise return NULL; Node* find_similar(int opc); // Return the unique control out if only one. Null if none or more than one. ! Node* unique_ctrl_out(); //----------------- Code Generation // Ideal register class for Matching. Zero means unmatched instruction // (these are cloned instead of converted to machine nodes). --- 929,939 ---- // Return a node with opcode "opc" and same inputs as "this" if one can // be found; Otherwise return NULL; Node* find_similar(int opc); // Return the unique control out if only one. Null if none or more than one. ! Node* unique_ctrl_out() const; //----------------- Code Generation // Ideal register class for Matching. Zero means unmatched instruction // (these are cloned instead of converted to machine nodes).
src/share/vm/opto/node.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File