Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-module.h263 struct V8_EXPORT_PRIVATE WasmModule { struct
264 std::unique_ptr<Zone> signature_zone;
265 uint32_t initial_pages = 0; // initial size of the memory in 64k pages
266 uint32_t maximum_pages = 0; // maximum size of the memory in 64k pages
267 bool has_shared_memory = false; // true if memory is a SharedArrayBuffer
268 bool has_maximum_pages = false; // true if there is a maximum memory size
269 bool is_memory64 = false; // true if the memory is 64 bit
270 bool has_memory = false; // true if the memory was defined or imported
271 bool mem_export = false; // true if the memory is exported
272 int start_function_index = -1; // start function, >= 0 if any
[all …]
Dwasm-module.cc220 WasmModule::WasmModule(std::unique_ptr<Zone> signature_zone) in WasmModule() function in v8::internal::wasm::WasmModule
Dwasm-objects.cc43 using WasmModule = wasm::WasmModule; typedef