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

/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DMemory.cpp25 : m_mutex(), m_L1_cache(), m_L2_cache(), m_invalid_ranges(),
34 m_L1_cache.clear();
50 m_L1_cache[addr] = data_buffer_sp;
60 if (!m_L1_cache.empty()) {
62 BlockMap::iterator pos = m_L1_cache.upper_bound(addr);
63 if (pos != m_L1_cache.begin()) {
66 while (pos != m_L1_cache.end()) {
70 pos = m_L1_cache.erase(pos);
175 if (!m_L1_cache.empty()) {
177 BlockMap::iterator pos = m_L1_cache
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DMemory.h52 BlockMap m_L1_cache; // A first level memory cache whose chunk sizes vary that member in class:lldb_private::MemoryCache

Completed in 124 milliseconds