Home
last modified time | relevance | path

Searched refs:src_slot (Results 1 - 8 of 8) sorted by relevance

/third_party/node/deps/v8/src/objects/
H A Dfixed-array-inl.h224 ObjectSlot src_slot(RawFieldOfElementAt(src_index)); in MoveElements()
225 isolate->heap()->MoveRange(*this, dst_slot, src_slot, len, mode); in MoveElements()
236 ObjectSlot src_slot(src.RawFieldOfElementAt(src_index)); in CopyElements()
237 isolate->heap()->CopyRange(*this, dst_slot, src_slot, len, mode); in CopyElements()
475 MaybeObjectSlot src_slot(src.data_start() + src_index); in CopyElements()
476 isolate->heap()->CopyRange(*this, dst_slot, src_slot, len, mode); in CopyElements()
510 MaybeObjectSlot src_slot(src.data_start() + src_index); in CopyElements()
511 isolate->heap()->CopyRange(*this, dst_slot, src_slot, len, mode); in CopyElements()
H A Dproperty-array-inl.h133 ObjectSlot src_slot(src.data_start() + src_index); in CopyElements()
134 isolate->heap()->CopyRange(*this, dst_slot, src_slot, len, mode); in CopyElements()
H A Dscope-info.cc607 ObjectSlot src_slot(src.RawFieldOfElementAt(src_index)); in CopyElements()
608 isolate->heap()->CopyRange(*this, dst_slot, src_slot, len, mode); in CopyElements()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-external-refs.cc567 ObjectSlot src_slot = src_array.ElementSlot(src_index); in array_copy_wrapper() local
569 isolate->heap()->MoveRange(dst_array, dst_slot, src_slot, length, in array_copy_wrapper()
572 isolate->heap()->CopyRange(dst_array, dst_slot, src_slot, length, in array_copy_wrapper()
/third_party/node/deps/v8/src/runtime/
H A Druntime-wasm.cc667 ObjectSlot src_slot = src_array->ElementSlot(src_index); in RUNTIME_FUNCTION() local
669 isolate->heap()->MoveRange(*dst_array, dst_slot, src_slot, length, in RUNTIME_FUNCTION()
672 isolate->heap()->CopyRange(*dst_array, dst_slot, src_slot, length, in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/heap/
H A Dheap.cc2087 const ObjectSlot src_slot, int len, in MoveRange()
2094 DCHECK(src_slot < src_slot + len); in MoveRange()
2097 if (dst_slot < src_slot) { in MoveRange()
2102 AtomicSlot src(src_slot); in MoveRange()
2113 AtomicSlot src(src_slot + len - 1); in MoveRange()
2121 MemMove(dst_slot.ToVoidPtr(), src_slot.ToVoidPtr(), len * kTaggedSize); in MoveRange()
2130 ObjectSlot src_slot, int len,
2134 MaybeObjectSlot src_slot,
2139 const TSlot src_slot, in
2086 MoveRange(HeapObject dst_object, const ObjectSlot dst_slot, const ObjectSlot src_slot, int len, WriteBarrierMode mode) MoveRange() argument
[all...]
H A Dheap.h510 // Move len non-weak tagged elements from src_slot to dst_slot of dst_object.
513 ObjectSlot src_slot, int len,
516 // Copy len non-weak tagged elements from src_slot to dst_slot of dst_object.
519 void CopyRange(HeapObject dst_object, TSlot dst_slot, TSlot src_slot, int len,
/third_party/node/deps/v8/src/wasm/baseline/
H A Dliftoff-compiler.cc2295 auto& src_slot = state.stack_state.back();
2300 __ Fill(dst_slot->reg(), src_slot.offset(), kind);
2309 __ Fill(dst_reg, src_slot.offset(), kind);

Completed in 25 milliseconds