Home
last modified time | relevance | path

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

/external/v8/src/
Dsimulator-base.cc26 base::CustomMatcherHashMap* SimulatorBase::i_cache_ = nullptr; member in v8::internal::SimulatorBase
36 DCHECK_NULL(i_cache_); in InitializeOncePerProcess()
37 i_cache_ = new base::CustomMatcherHashMap(&Simulator::ICacheMatch); in InitializeOncePerProcess()
51 if (i_cache_ != nullptr) { in GlobalTearDown()
52 for (base::HashMap::Entry* entry = i_cache_->Start(); entry != nullptr; in GlobalTearDown()
53 entry = i_cache_->Next(entry)) { in GlobalTearDown()
57 delete i_cache_; in GlobalTearDown()
58 i_cache_ = nullptr; in GlobalTearDown()
Dsimulator-base.h32 static base::CustomMatcherHashMap* i_cache() { return i_cache_; } in i_cache()
74 static base::CustomMatcherHashMap* i_cache_; variable