Home
last modified time | relevance | path

Searched refs:is_wasm_memory (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dbacking-store.cc175 bool is_wasm_memory, bool free_on_destruct, in BackingStore() argument
185 is_wasm_memory_(is_wasm_memory), in BackingStore()
196 DCHECK_IMPLIES(!is_wasm_memory && !is_resizable_, in BackingStore()
385 bool is_wasm_memory, SharedFlag shared) { in TryAllocateAndPartiallyCommitMemory() argument
397 bool guards = is_wasm_memory && trap_handler::IsTrapHandlerEnabled(); in TryAllocateAndPartiallyCommitMemory()
399 CHECK(!is_wasm_memory); in TryAllocateAndPartiallyCommitMemory()
490 is_wasm_memory ? ResizableFlag::kNotResizable : ResizableFlag::kResizable; in TryAllocateAndPartiallyCommitMemory()
498 is_wasm_memory, // is_wasm_memory in TryAllocateAndPartiallyCommitMemory()
860 CHECK(backing_store->is_wasm_memory()); in Register()
876 CHECK(backing_store->is_wasm_memory()); in Unregister()
[all …]
Dbacking-store.h66 bool is_wasm_memory, SharedFlag shared);
97 bool is_wasm_memory() const { return is_wasm_memory_; } in is_wasm_memory() function
173 bool is_wasm_memory, bool free_on_destruct,
Djs-array-buffer.cc76 !backing_store->is_wasm_memory() && !backing_store->is_resizable(), in Attach()
97 if (backing_store->is_wasm_memory()) set_is_detachable(false); in Attach()
123 CHECK_IMPLIES(force_for_wasm_memory, backing_store->is_wasm_memory()); in Detach()