Lines Matching refs:StubCache
2550 kPrimary = static_cast<int>(StubCache::kPrimary),
2551 kSecondary = static_cast<int>(StubCache::kSecondary)
2569 WordXor(map_word, WordShr(map_word, StubCache::kMapKeyShift)))); in StubCachePrimaryOffset()
2572 uint32_t mask = (StubCache::kPrimaryTableSize - 1) in StubCachePrimaryOffset()
2573 << StubCache::kCacheIndexShift; in StubCachePrimaryOffset()
2586 hash = Int32Add(hash, Int32Constant(StubCache::kSecondaryMagic)); in StubCacheSecondaryOffset()
2587 int32_t mask = (StubCache::kSecondaryTableSize - 1) in StubCacheSecondaryOffset()
2588 << StubCache::kCacheIndexShift; in StubCacheSecondaryOffset()
2595 StubCache* stub_cache, StubCacheTable table_id, TNode<IntPtrT> entry_offset, in TryProbeStubCacheTable()
2598 StubCache::Table table = static_cast<StubCache::Table>(table_id); in TryProbeStubCacheTable()
2602 sizeof(StubCache::Entry) >> StubCache::kCacheIndexShift; in TryProbeStubCacheTable()
2609 DCHECK_EQ(0, offsetof(StubCache::Entry, key)); in TryProbeStubCacheTable()
2617 IntPtrAdd(entry_offset, IntPtrConstant(offsetof(StubCache::Entry, map)))); in TryProbeStubCacheTable()
2623 IntPtrConstant(offsetof(StubCache::Entry, value))))); in TryProbeStubCacheTable()
2630 void AccessorAssembler::TryProbeStubCache(StubCache* stub_cache, in TryProbeStubCache()