Lines Matching refs:StubCache
2249 kPrimary = static_cast<int>(StubCache::kPrimary),
2250 kSecondary = static_cast<int>(StubCache::kSecondary)
2255 STATIC_ASSERT(StubCache::kCacheIndexShift == Name::kHashShift); in StubCachePrimaryOffset()
2269 uint32_t mask = (StubCache::kPrimaryTableSize - 1) in StubCachePrimaryOffset()
2270 << StubCache::kCacheIndexShift; in StubCachePrimaryOffset()
2280 hash = Int32Add(hash, Int32Constant(StubCache::kSecondaryMagic)); in StubCacheSecondaryOffset()
2281 int32_t mask = (StubCache::kSecondaryTableSize - 1) in StubCacheSecondaryOffset()
2282 << StubCache::kCacheIndexShift; in StubCacheSecondaryOffset()
2287 StubCache* stub_cache, StubCacheTable table_id, Node* entry_offset, in TryProbeStubCacheTable()
2290 StubCache::Table table = static_cast<StubCache::Table>(table_id); in TryProbeStubCacheTable()
2292 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { in TryProbeStubCacheTable()
2295 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { in TryProbeStubCacheTable()
2302 const int kMultiplier = sizeof(StubCache::Entry) >> Name::kHashShift; in TryProbeStubCacheTable()
2330 void AccessorAssembler::TryProbeStubCache(StubCache* stub_cache, Node* receiver, in TryProbeStubCache()