Home
last modified time | relevance | path

Searched refs:has_shared_memory (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/wasm/
Dmodule-decoder.cc500 uint8_t flags = validate_memory_flags(&module_->has_shared_memory); in DecodeImportSection()
581 uint8_t flags = validate_memory_flags(&module_->has_shared_memory); in DecodeMemorySection()
1134 uint8_t validate_memory_flags(bool* has_shared_memory) { in validate_memory_flags() argument
1137 *has_shared_memory = false; in validate_memory_flags()
1142 DCHECK_NOT_NULL(has_shared_memory); in validate_memory_flags()
1143 *has_shared_memory = true; in validate_memory_flags()
Dwasm-module.h130 bool has_shared_memory = false; // true if memory is a SharedArrayBuffer member
Dmodule-compiler.cc879 if (wasm_module->has_shared_memory) { in CompileToModuleObject()
1646 if (module_->has_shared_memory != buffer->is_shared()) { in ProcessImports()
1650 module_->has_shared_memory, buffer->is_shared()); in ProcessImports()
1813 const bool is_shared_memory = module_->has_shared_memory && enabled_.threads; in AllocateMemory()
2435 if (module_->has_shared_memory) { in RunInForeground()
Dfunction-body-decoder-impl.h1374 if (!VALIDATE(this->module_->has_shared_memory)) { in CheckHasSharedMemory()