Searched refs:curr_addr (Results 1 – 5 of 5) sorted by relevance
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/ |
| D | Memory.cpp | 74 for (addr_t curr_addr = first_cache_line_addr; in Flush() local 76 curr_addr += cache_line_byte_size, ++cache_idx) in Flush() 78 BlockMap::iterator pos = m_cache.find (curr_addr); in Flush() 126 addr_t curr_addr = addr - (addr % cache_line_byte_size); in Read() local 127 addr_t cache_offset = addr - curr_addr; in Read() 132 if (m_invalid_ranges.FindEntryThatContains(curr_addr)) in Read() 134 error.SetErrorStringWithFormat("memory read failed for 0x%" PRIx64, curr_addr); in Read() 138 BlockMap::const_iterator pos = m_cache.find (curr_addr); in Read() 150 curr_addr += curr_read_size + cache_offset; in Read() 158 assert ((curr_addr % cache_line_byte_size) == 0); in Read() [all …]
|
| D | ThreadPlanStepInRange.cpp | 210 lldb::addr_t curr_addr = m_thread.GetRegisterContext()->GetPC(); in ShouldStop() local 218 … if (curr_addr == func_start_address.GetLoadAddress(m_thread.CalculateTarget().get())) in ShouldStop() 224 … if (curr_addr == func_start_address.GetLoadAddress(m_thread.CalculateTarget().get())) in ShouldStop()
|
| D | Process.cpp | 2509 addr_t curr_addr = addr; in ReadCStringFromMemory() local 2512 size_t length = ReadCStringFromMemory (curr_addr, buf, sizeof(buf), error); in ReadCStringFromMemory() 2519 curr_addr += length; in ReadCStringFromMemory() 2542 addr_t curr_addr = addr; in ReadStringFromMemory() local 2549 addr_t cache_line_bytes_left = cache_line_size - (curr_addr % cache_line_size); in ReadStringFromMemory() 2551 size_t bytes_read = ReadMemory (curr_addr, curr_dst, bytes_to_read, error); in ReadStringFromMemory() 2567 curr_addr += bytes_read; in ReadStringFromMemory() 2591 addr_t curr_addr = addr; in ReadCStringFromMemory() local 2598 addr_t cache_line_bytes_left = cache_line_size - (curr_addr % cache_line_size); in ReadCStringFromMemory() 2600 size_t bytes_read = ReadMemory (curr_addr, curr_dst, bytes_to_read, error); in ReadCStringFromMemory() [all …]
|
| D | Target.cpp | 1401 addr_t curr_addr = addr.GetLoadAddress(this); in ReadCStringFromMemory() local 1412 curr_addr += length; in ReadCStringFromMemory() 1415 address = Address(curr_addr); in ReadCStringFromMemory() 1431 addr_t curr_addr = addr.GetLoadAddress(this); in ReadCStringFromMemory() local 1439 addr_t cache_line_bytes_left = cache_line_size - (curr_addr % cache_line_size); in ReadCStringFromMemory() 1457 curr_addr += bytes_read; in ReadCStringFromMemory() 1459 address = Address(curr_addr); in ReadCStringFromMemory()
|
| /freebsd-10-stable/gnu/usr.bin/gdb/kgdb/ |
| D | kld.c | 227 CORE_ADDR curr_addr; in load_kld() local 248 curr_addr = base_addr; in load_kld() 250 adjust_section_address(s, &curr_addr); in load_kld() 307 static CORE_ADDR curr_addr; in kld_relocate_section_addresses() local 310 curr_addr = so->lm_info->base_address; in kld_relocate_section_addresses() 312 adjust_section_address(sec, &curr_addr); in kld_relocate_section_addresses()
|