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

Method getAddrType

include/ast/type.h:77–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75 bool is32() const noexcept { return static_cast<uint8_t>(Type) < 0x04U; }
76 bool is64() const noexcept { return !is32(); }
77 AddressType getAddrType() const noexcept {
78 return is32() ? AddressType::I32 : AddressType::I64;
79 }
80 void setType(LimitType TargetType) noexcept { Type = TargetType; }
81
82 /// Getter and setter for min value.

Callers 15

compileMethod · 0.80
addTableMethod · 0.80
addMemoryMethod · 0.80
validateMethod · 0.80
instantiateMethod · 0.80
instantiateMethod · 0.80
matchLimitFunction · 0.80
runMemorySizeOpMethod · 0.80
runMemoryGrowOpMethod · 0.80
runMemoryInitOpMethod · 0.80
runMemoryCopyOpMethod · 0.80
runMemoryFillOpMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected