Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-module.h143 struct V8_EXPORT_PRIVATE WasmModule { struct
144 static const uint32_t kPageSize = 0x10000; // Page size, 64kb.
145 static const uint32_t kMinMemPages = 1; // Minimum memory size = 64kb
147 Zone* owned_zone;
148 uint32_t min_mem_pages = 0; // minimum size of the memory in 64k pages
149 uint32_t max_mem_pages = 0; // maximum size of the memory in 64k pages
150 bool has_max_mem = false; // try if a maximum memory size exists
151 bool has_memory = false; // true if the memory was defined or imported
152 bool mem_export = false; // true if the memory is exported
156 int start_function_index = -1; // start function, if any
[all …]
Dwasm-module.cc844 WasmModule::WasmModule(Zone* owned) in WasmModule() function in WasmModule