Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dembedder-tracing.cc15 CHECK(cached_wrappers_to_trace_.empty()); in TracePrologue()
23 CHECK(cached_wrappers_to_trace_.empty()); in TraceEpilogue()
30 cached_wrappers_to_trace_.clear(); in AbortTracing()
50 ? cached_wrappers_to_trace_.size() + in NumberOfWrappersToTrace()
58 if (cached_wrappers_to_trace_.empty()) { in RegisterWrappersWithRemoteTracer()
62 remote_tracer_->RegisterV8References(cached_wrappers_to_trace_); in RegisterWrappersWithRemoteTracer()
63 cached_wrappers_to_trace_.clear(); in RegisterWrappersWithRemoteTracer()
68 return cached_wrappers_to_trace_.size() > kTooManyWrappers; in RequiresImmediateWrapperProcessing()
Dembedder-tracing.h36 return cached_wrappers_to_trace_.size(); in NumberOfCachedWrappersToTrace()
39 cached_wrappers_to_trace_.push_back(entry); in AddWrapperToTrace()
41 void ClearCachedWrappersToTrace() { cached_wrappers_to_trace_.clear(); } in ClearCachedWrappersToTrace()
60 WrapperCache cached_wrappers_to_trace_; variable