Home
last modified time | relevance | path

Searched refs:RefsMap (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Drefs-map.cc15 RefsMap::RefsMap(uint32_t capacity, AddressMatcher match, Zone* zone) in RefsMap() function in v8::internal::compiler::RefsMap
18 RefsMap::RefsMap(const RefsMap* other, Zone* zone) in RefsMap() function in v8::internal::compiler::RefsMap
21 RefsMap::Entry* RefsMap::Lookup(const Address& key) const { in Lookup()
25 RefsMap::Entry* RefsMap::LookupOrInsert(const Address& key) { in LookupOrInsert()
26 return UnderlyingMap::LookupOrInsert(key, RefsMap::Hash(key), in LookupOrInsert()
30 ObjectData* RefsMap::Remove(const Address& key) { in Remove()
31 return UnderlyingMap::Remove(key, RefsMap::Hash(key)); in Remove()
34 uint32_t RefsMap::Hash(Address addr) { return static_cast<uint32_t>(addr); } in Hash()
Drefs-map.h32 class RefsMap
37 RefsMap(uint32_t capacity, AddressMatcher match, Zone* zone);
38 RefsMap(const RefsMap* other, Zone* zone);
Dper-isolate-compiler-cache.h33 RefsMap* GetSnapshot() { in GetSnapshot()
37 void SetSnapshot(RefsMap* refs) { in SetSnapshot()
40 refs_snapshot_ = zone_->New<RefsMap>(refs, zone_); in SetSnapshot()
57 RefsMap* refs_snapshot_;
Djs-heap-broker.h437 RefsMap* refs_; in DEFINE_OPERATORS_FOR_FLAGS()
Dheap-refs.cc953 zone()->New<RefsMap>(kInitialRefsBucketCount, AddressMatcher(), zone()); in InitializeAndStartSerializing()
975 RefsMap::Entry* entry = refs_->Lookup(object.address()); in TryGetOrCreateData()
Djs-heap-broker.cc57 refs_(zone()->New<RefsMap>(kMinimalRefsBucketCount, AddressMatcher(), in JSHeapBroker()