Home
last modified time | relevance | path

Searched refs:wrapper_cache_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/heap/
Dembedder-tracing.cc119 wrapper_cache_.reserve(kWrapperCacheSize); in ProcessingScope()
124 if (!wrapper_cache_.empty()) { in ~ProcessingScope()
125 tracer_->remote_tracer_->RegisterV8References(std::move(wrapper_cache_)); in ~ProcessingScope()
145 wrapper_cache_.push_back(std::move(info)); in TracePossibleWrapper()
152 if (wrapper_cache_.size() == wrapper_cache_.capacity()) { in FlushWrapperCacheIfFull()
153 tracer_->remote_tracer_->RegisterV8References(std::move(wrapper_cache_)); in FlushWrapperCacheIfFull()
154 wrapper_cache_.clear(); in FlushWrapperCacheIfFull()
155 wrapper_cache_.reserve(kWrapperCacheSize); in FlushWrapperCacheIfFull()
161 wrapper_cache_.push_back(info); in AddWrapperInfoForTesting()
Dembedder-tracing.h77 WrapperCache wrapper_cache_; variable