Home
last modified time | relevance | path

Searched refs:CacheEntries (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DInterferenceCache.h137 enum { CacheEntries = 32 }; enumerator
152 Entry Entries[CacheEntries];
173 unsigned getMaxCursors() const { return CacheEntries; } in getMaxCursors()
H A DInterferenceCache.cpp65 if (E < CacheEntries && Entries[E].getPhysReg() == PhysReg) { in get()
72 if (++RoundRobin == CacheEntries) in get()
74 for (unsigned i = 0; i != CacheEntries; ++i) { in get()
77 if (++E == CacheEntries) in get()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DCacheMetrics.cpp165 const uint64_t CacheEntries = opts::ITLBEntries; in expectedCacheHitRatio() local
198 double MissProb = pow(1.0 - PageSamples[Page] / TotalSamples, CacheEntries); in expectedCacheHitRatio()