diff src/share/vm/opto/matcher.hpp @ 351:fab5f738c515

Merge
author ysr
date Tue, 01 Jul 2008 11:59:44 -0700
parents 2a1a77d3458f
children 9c2ecc2ffb12
line wrap: on
line diff
--- a/src/share/vm/opto/matcher.hpp	Mon Jun 30 17:04:59 2008 -0700
+++ b/src/share/vm/opto/matcher.hpp	Tue Jul 01 11:59:44 2008 -0700
@@ -84,6 +84,7 @@
   Node_Array _shared_nodes;
 
   debug_only(Node_Array _old2new_map;)   // Map roots of ideal-trees to machine-roots
+  debug_only(Node_Array _new2old_map;)   // Maps machine nodes back to ideal
 
   // Accessors for the inherited field PhaseTransform::_nodes:
   void   grow_new_node_array(uint idx_limit) {
@@ -104,6 +105,8 @@
 #ifdef ASSERT
   // Make sure only new nodes are reachable from this node
   void verify_new_nodes_only(Node* root);
+
+  Node* _mem_node;   // Ideal memory node consumed by mach node
 #endif
 
 public:
@@ -388,5 +391,9 @@
 
 #ifdef ASSERT
   void dump_old2new_map();      // machine-independent to machine-dependent
+
+  Node* find_old_node(Node* new_node) {
+    return _new2old_map[new_node->_idx];
+  }
 #endif
 };