Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.h137 enum { CacheEntries = 32 }; enumerator
152 Entry Entries[CacheEntries];
174 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()
/src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCodeLayout.h64 unsigned CacheEntries = 16; member
/src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeLayout.cpp119 static cl::opt<unsigned> CacheEntries("cdsort-cache-entries", cl::ReallyHidden, variable
1277 return pow(1.0 - P, static_cast<double>(Config.CacheEntries)); in freqBasedLocalityGain()
1480 if (CacheEntries.getNumOccurrences() > 0) in computeCacheDirectedLayout()
1481 Config.CacheEntries = CacheEntries; in computeCacheDirectedLayout()