Home
last modified time | relevance | path

Searched refs:m_L1_cache (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DMemory.cpp25 : m_mutex(), m_L1_cache(), m_L2_cache(), m_invalid_ranges(), in MemoryCache()
36 m_L1_cache.clear(); in Clear()
52 m_L1_cache[addr] = data_buffer_sp; in AddL1CacheData()
62 if (!m_L1_cache.empty()) { in Flush()
64 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Flush()
65 if (pos != m_L1_cache.begin()) { in Flush()
68 while (pos != m_L1_cache.end()) { in Flush()
72 pos = m_L1_cache.erase(pos); in Flush()
140 if (!m_L1_cache.empty()) { in Read()
142 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Read()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h61 BlockMap m_L1_cache; // A first level memory cache whose chunk sizes vary that variable