HomeSort by relevance Sort by last modified time
    Searched refs:CacheEntries (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
InterferenceCache.h 135 enum { CacheEntries = 32 };
146 Entry Entries[CacheEntries];
168 unsigned getMaxCursors() const { return CacheEntries; }
204 // actually have CacheEntries live cursors.
InterferenceCache.cpp 32 // only valid when there is a corresponding CacheEntries assignment. There is
52 for (unsigned i = 0; i != CacheEntries; ++i)
58 if (E < CacheEntries && Entries[E].getPhysReg() == PhysReg) {
65 if (++RoundRobin == CacheEntries)
67 for (unsigned i = 0; i != CacheEntries; ++i) {
70 if (++E == CacheEntries)

Completed in 643 milliseconds