MCPcopy Create free account
hub / github.com/dylibso/chicory / push

Method push

runtime/src/main/java/com/dylibso/chicory/runtime/MStack.java:27–34  ·  view source on GitHub ↗
(long v)

Source from the content-addressed store, hash-verified

25 }
26
27 public void push(long v) {
28 elements[count] = v;
29 count++;
30
31 if (count == elements.length) {
32 increaseCapacity();
33 }
34 }
35
36 public long pop() {
37 count--;

Callers 15

parseCodeSectionMethod · 0.45
addMethod · 0.45
doControlTransferMethod · 0.45
callMethod · 0.45
evalMethod · 0.45
I32_GE_UMethod · 0.45
I64_GT_UMethod · 0.45
I32_GE_SMethod · 0.45
I64_GE_UMethod · 0.45
I64_GE_SMethod · 0.45
I32_LE_SMethod · 0.45

Calls 1

increaseCapacityMethod · 0.95

Tested by 1

addMethod · 0.36