Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DMemory.cpp74 const uint32_t cache_line_byte_size = m_L2_cache_line_byte_size; in Flush() local
76 const addr_t first_cache_line_addr = addr - (addr % cache_line_byte_size); in Flush()
78 end_addr - (end_addr % cache_line_byte_size); in Flush()
84 cache_line_byte_size) + in Flush()
88 (UINT64_MAX - first_cache_line_addr + 1) / cache_line_byte_size; in Flush()
92 curr_addr += cache_line_byte_size, ++cache_idx) { in Flush()
169 const uint32_t cache_line_byte_size = m_L2_cache_line_byte_size; in Read() local
171 addr_t curr_addr = addr - (addr % cache_line_byte_size); in Read()
185 size_t curr_read_size = cache_line_byte_size - cache_offset; in Read()
199 assert((curr_addr % cache_line_byte_size) == 0); in Read()
[all …]