Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/
Dnew-spaces.h387 return original_top_.load(std::memory_order_acquire); in NON_EXPORTED_BASE()
474 DCHECK_GE(top(), original_top_); in NON_EXPORTED_BASE()
476 original_top_.store(top(), std::memory_order_release); in NON_EXPORTED_BASE()
502 std::atomic<Address> original_top_; in NON_EXPORTED_BASE() local
Dpaged-spaces.h309 Address original_top() const { return original_top_; } in NON_EXPORTED_BASE()
315 DCHECK_GE(top(), original_top_); in NON_EXPORTED_BASE()
317 original_top_ = top(); in NON_EXPORTED_BASE()
426 Address original_top_; in NON_EXPORTED_BASE() local
Dnew-spaces.cc541 original_top_.store(top(), std::memory_order_release); in UpdateLinearAllocationArea()
674 original_top_.store(allocation_info_->top(), std::memory_order_release); in MaybeFreeUnusedLab()
707 DCHECK_GE(original_top_, allocation_info_->start()); in VerifyTop()
Dpaged-spaces.cc317 original_top_ = top; in SetTopAndLimit()