MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / push

Method push

include/runtime/stackmgr.h:78–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76
77 /// Push a new value entry to the stack.
78 template <typename T> void push(T &&Val) {
79 ValueStack.push_back(std::forward<T>(Val));
80 }
81
82 /// Push a vector of values to the stack.
83 void pushValVec(const std::vector<Value> &ValVec) {

Callers 15

enterFunctionMethod · 0.80
throwExceptionMethod · 0.80
runRefNullOpMethod · 0.80
runRefFuncOpMethod · 0.80
runStructNewOpMethod · 0.80
runArrayNewOpMethod · 0.80
runMemorySizeOpMethod · 0.80
runMemoryGrowOpMethod · 0.80
runLocalGetOpMethod · 0.80
runGlobalGetOpMethod · 0.80
runTableGetOpMethod · 0.80
runTableGrowOpMethod · 0.80

Calls

no outgoing calls

Tested by 1

callWasmFunction · 0.64