MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / unlock

Method unlock

chapter17/src/main/java/com/seaofnodes/simple/node/Node.java:520–525  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

518
519 // If the _hash is set, then the Node is in the GVN table; remove it.
520 void unlock() {
521 if( _hash==0 ) return;
522 Node old = GVN.remove(this); // Pull from table
523 assert old==this;
524 _hash=0; // Out of table now
525 }
526
527
528 // Hash of opcode and inputs

Callers 7

setDefMethod · 0.95
delDefMethod · 0.95
addDefMethod · 0.95
popUntilMethod · 0.95
killMethod · 0.95
subsumeMethod · 0.95
swap12Method · 0.95

Calls 1

removeMethod · 0.45

Tested by

no test coverage detected