()
| 507 | |
| 508 | // If the _hash is set, then the Node is in the GVN table; remove it. |
| 509 | void unlock() { |
| 510 | if( _hash==0 ) return; |
| 511 | Node old = GVN.remove(this); // Pull from table |
| 512 | assert old==this; |
| 513 | _hash=0; // Out of table now |
| 514 | } |
| 515 | |
| 516 | |
| 517 | // Hash of opcode and inputs |