Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-module.h124 struct V8_EXPORT_PRIVATE WasmModule { struct
127 std::unique_ptr<Zone> signature_zone;
128 uint32_t initial_pages = 0; // initial size of the memory in 64k pages
129 uint32_t maximum_pages = 0; // maximum size of the memory in 64k pages
130 bool has_shared_memory = false; // true if memory is a SharedArrayBuffer
131 bool has_maximum_pages = false; // true if there is a maximum memory size
132 bool has_memory = false; // true if the memory was defined or imported
133 bool mem_export = false; // true if the memory is exported
134 int start_function_index = -1; // start function, >= 0 if any
136 std::vector<WasmGlobal> globals;
[all …]
Dwasm-module.cc100 WasmModule::WasmModule(std::unique_ptr<Zone> owned) in WasmModule() function in v8::internal::wasm::WasmModule
Dwasm-objects.cc43 using WasmModule = wasm::WasmModule; typedef