Searched defs:WasmModule (Results 1 – 2 of 2) sorted by relevance
157 struct WasmModule { struct158 static const uint32_t kPageSize = 0x10000; // Page size, 64kb.159 static const uint32_t kMinMemPages = 1; // Minimum memory size = 64kb160 static const uint32_t kMaxMemPages = 16384; // Maximum memory size = 1gb162 const byte* module_start; // starting address for the module bytes.163 const byte* module_end; // end address for the module bytes.164 uint32_t min_mem_pages; // minimum size of the memory in 64k pages.165 uint32_t max_mem_pages; // maximum size of the memory in 64k pages.166 bool mem_export; // true if the memory is exported.190 WasmModule(); argument[all …]
341 WasmModule::WasmModule() in WasmModule() function in v8::internal::wasm::WasmModule