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