diff src/share/vm/opto/phaseX.hpp @ 17799:752ba2e5f6d0

Merge
author kvn
date Tue, 25 Feb 2014 15:11:18 -0800
parents de95063c0e34
children 4ca6dc0799b6 70649f10b88c
line wrap: on
line diff
--- a/src/share/vm/opto/phaseX.hpp	Wed Feb 19 20:12:43 2014 -0800
+++ b/src/share/vm/opto/phaseX.hpp	Tue Feb 25 15:11:18 2014 -0800
@@ -92,7 +92,8 @@
   }
 
   void   remove_useless_nodes(VectorSet &useful); // replace with sentinel
-  void replace_with(NodeHash* nh);
+  void   replace_with(NodeHash* nh);
+  void   check_no_speculative_types(); // Check no speculative part for type nodes in table
 
   Node  *sentinel() { return _sentinel; }
 
@@ -501,6 +502,9 @@
                                         Deoptimization::DeoptReason reason);
 
   void remove_speculative_types();
+  void check_no_speculative_types() {
+    _table.check_no_speculative_types();
+  }
 
 #ifndef PRODUCT
 protected: