Searched defs:WasmModule (Results 1 – 3 of 3) sorted by relevance
124 struct V8_EXPORT_PRIVATE WasmModule { struct127 std::unique_ptr<Zone> signature_zone;128 uint32_t initial_pages = 0; // initial size of the memory in 64k pages129 uint32_t maximum_pages = 0; // maximum size of the memory in 64k pages130 bool has_shared_memory = false; // true if memory is a SharedArrayBuffer131 bool has_maximum_pages = false; // true if there is a maximum memory size132 bool has_memory = false; // true if the memory was defined or imported133 bool mem_export = false; // true if the memory is exported134 int start_function_index = -1; // start function, >= 0 if any136 std::vector<WasmGlobal> globals;[all …]
100 WasmModule::WasmModule(std::unique_ptr<Zone> owned) in WasmModule() function in v8::internal::wasm::WasmModule
43 using WasmModule = wasm::WasmModule; typedef