Searched defs:WasmModule (Results 1 – 4 of 4) sorted by relevance
414 struct V8_EXPORT_PRIVATE WasmModule { struct415 std::unique_ptr<Zone> signature_zone;416 uint32_t initial_pages = 0; // initial size of the memory in 64k pages417 uint32_t maximum_pages = 0; // maximum size of the memory in 64k pages418 bool has_shared_memory = false; // true if memory is a SharedArrayBuffer419 bool has_maximum_pages = false; // true if there is a maximum memory size420 bool is_memory64 = false; // true if the memory is 64 bit421 bool has_memory = false; // true if the memory was defined or imported422 bool mem_export = false; // true if the memory is exported423 int start_function_index = -1; // start function, >= 0 if any[all …]
221 WasmModule::WasmModule(std::unique_ptr<Zone> signature_zone) in WasmModule() function in v8::internal::wasm::WasmModule
45 using WasmModule = wasm::WasmModule; typedef
103045 struct WasmModule : js::AtomicRefCounted<WasmModule> struct103047 virtual ~WasmModule() {} in ~WasmModule()