Home
last modified time | relevance | path

Searched refs:m_L2_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()
37 m_L2_cache.clear(); in Clear()
76 if (!m_L2_cache.empty()) { in Flush()
96 BlockMap::iterator pos = m_L2_cache.find(curr_addr); in Flush()
97 if (pos != m_L2_cache.end()) in Flush()
98 m_L2_cache.erase(pos); in Flush()
184 BlockMap::const_iterator pos = m_L2_cache.find(curr_addr); in Read()
185 BlockMap::const_iterator end = m_L2_cache.end(); in Read()
240 m_L2_cache[curr_addr] = DataBufferSP(data_buffer_heap_ap.release()); in Read()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h64 BlockMap m_L2_cache; // A memory cache of fixed size chinks variable