()
| 600 | |
| 601 | // If the _hash is set, then the Node is in the GVN table; remove it. |
| 602 | void unlock() { |
| 603 | if( _hash==0 ) return; |
| 604 | Node old = CODE._gvn.remove(this); // Pull from table |
| 605 | assert old==this; |
| 606 | _hash=0; // Out of table now |
| 607 | } |
| 608 | |
| 609 | |
| 610 | // Hash of opcode and inputs |