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

Method Statistics

include/common/statistics.h:31–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29class Statistics {
30public:
31 Statistics(const uint64_t Lim = UINT64_MAX)
32 : CostTab(UINT16_MAX + 1, 1ULL), InstrCnt(0), CostLimit(Lim), CostSum(0) {
33 }
34 Statistics(Span<const uint64_t> Tab, const uint64_t Lim = UINT64_MAX)
35 : CostTab(Tab.begin(), Tab.end()), InstrCnt(0), CostLimit(Lim),
36 CostSum(0) {

Callers

nothing calls this directly

Calls 4

resizeMethod · 0.80
beginMethod · 0.45
endMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected