Searched defs:WasmModule (Results 1 – 3 of 3) sorted by relevance
263 struct V8_EXPORT_PRIVATE WasmModule { struct264 std::unique_ptr<Zone> signature_zone;265 uint32_t initial_pages = 0; // initial size of the memory in 64k pages266 uint32_t maximum_pages = 0; // maximum size of the memory in 64k pages267 bool has_shared_memory = false; // true if memory is a SharedArrayBuffer268 bool has_maximum_pages = false; // true if there is a maximum memory size269 bool is_memory64 = false; // true if the memory is 64 bit270 bool has_memory = false; // true if the memory was defined or imported271 bool mem_export = false; // true if the memory is exported272 int start_function_index = -1; // start function, >= 0 if any[all …]
220 WasmModule::WasmModule(std::unique_ptr<Zone> signature_zone) in WasmModule() function in v8::internal::wasm::WasmModule
43 using WasmModule = wasm::WasmModule; typedef