Home
last modified time | relevance | path

Searched defs:WasmModule (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/wasm/
Dwasm-module.h157 struct WasmModule { struct
158 static const uint32_t kPageSize = 0x10000; // Page size, 64kb.
159 static const uint32_t kMinMemPages = 1; // Minimum memory size = 64kb
160 static const uint32_t kMaxMemPages = 16384; // Maximum memory size = 1gb
162 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 …]
Dwasm-module.cc341 WasmModule::WasmModule() in WasmModule() function in v8::internal::wasm::WasmModule