Searched defs:WasmModule (Results 1 – 2 of 2) sorted by relevance
143 struct V8_EXPORT_PRIVATE WasmModule { struct144 static const uint32_t kPageSize = 0x10000; // Page size, 64kb.145 static const uint32_t kMinMemPages = 1; // Minimum memory size = 64kb147 Zone* owned_zone;148 uint32_t min_mem_pages = 0; // minimum size of the memory in 64k pages149 uint32_t max_mem_pages = 0; // maximum size of the memory in 64k pages150 bool has_max_mem = false; // try if a maximum memory size exists151 bool has_memory = false; // true if the memory was defined or imported152 bool mem_export = false; // true if the memory is exported156 int start_function_index = -1; // start function, if any[all …]
844 WasmModule::WasmModule(Zone* owned) in WasmModule() function in WasmModule