2003-09-15 00:35:33 +02:00
|
|
|
/* Caching code for GDB, the GNU debugger.
|
|
|
|
|
2008-01-01 23:53:26 +01:00
|
|
|
Copyright (C) 1992, 1993, 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2007,
|
2010-01-01 08:32:07 +01:00
|
|
|
2008, 2009, 2010 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 03:35:26 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "dcache.h"
|
|
|
|
#include "gdbcmd.h"
|
|
|
|
#include "gdb_string.h"
|
|
|
|
#include "gdbcore.h"
|
2000-11-03 23:00:56 +01:00
|
|
|
#include "target.h"
|
2009-08-31 22:18:46 +02:00
|
|
|
#include "inferior.h"
|
2009-08-21 00:30:12 +02:00
|
|
|
#include "splay-tree.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
/* The data cache could lead to incorrect results because it doesn't
|
|
|
|
know about volatile variables, thus making it impossible to debug
|
|
|
|
functions which use memory mapped I/O devices. Set the nocache
|
|
|
|
memory region attribute in those cases.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
In general the dcache speeds up performance. Some speed improvement
|
1999-04-16 03:35:26 +02:00
|
|
|
comes from the actual caching mechanism, but the major gain is in
|
|
|
|
the reduction of the remote protocol overhead; instead of reading
|
|
|
|
or writing a large area of memory in 4 byte requests, the cache
|
2009-08-21 00:30:12 +02:00
|
|
|
bundles up the requests into LINE_SIZE chunks, reducing overhead
|
|
|
|
significantly. This is most useful when accessing a large amount
|
|
|
|
of data, such as when performing a backtrace.
|
|
|
|
|
|
|
|
The cache is a splay tree along with a linked list for replacement.
|
2009-11-10 19:36:50 +01:00
|
|
|
Each block caches a LINE_SIZE area of memory. Within each line we
|
|
|
|
remember the address of the line (which must be a multiple of
|
|
|
|
LINE_SIZE) and the actual data block.
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
Lines are only allocated as needed, so DCACHE_SIZE really specifies the
|
|
|
|
*maximum* number of lines in the cache.
|
|
|
|
|
|
|
|
At present, the cache is write-through rather than writeback: as soon
|
|
|
|
as data is written to the cache, it is also immediately written to
|
|
|
|
the target. Therefore, cache lines are never "dirty". Whether a given
|
|
|
|
line is valid or not depends on where it is stored in the dcache_struct;
|
|
|
|
there is no per-block valid flag. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
/* NOTE: Interaction of dcache and memory region attributes
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
As there is no requirement that memory region attributes be aligned
|
|
|
|
to or be a multiple of the dcache page size, dcache_read_line() and
|
|
|
|
dcache_write_line() must break up the page by memory region. If a
|
|
|
|
chunk does not have the cache attribute set, an invalid memory type
|
|
|
|
is set, etc., then the chunk is skipped. Those chunks are handled
|
|
|
|
in target_xfer_memory() (or target_xfer_memory_partial()).
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
This doesn't occur very often. The most common occurance is when
|
|
|
|
the last bit of the .text segment and the first bit of the .data
|
|
|
|
segment fall within the same dcache page with a ro/cacheable memory
|
|
|
|
region defined for the .text segment and a rw/non-cacheable memory
|
2009-08-21 00:30:12 +02:00
|
|
|
region defined for the .data segment. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
/* The maximum number of lines stored. The total size of the cache is
|
|
|
|
equal to DCACHE_SIZE times LINE_SIZE. */
|
|
|
|
#define DCACHE_SIZE 4096
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
/* The size of a cache line. Smaller values reduce the time taken to
|
|
|
|
read a single byte and make the cache more granular, but increase
|
|
|
|
overhead and reduce the effectiveness of the cache as a prefetcher. */
|
|
|
|
#define LINE_SIZE_POWER 6
|
1999-04-16 03:35:26 +02:00
|
|
|
#define LINE_SIZE (1 << LINE_SIZE_POWER)
|
|
|
|
|
|
|
|
/* Each cache block holds LINE_SIZE bytes of data
|
|
|
|
starting at a multiple-of-LINE_SIZE address. */
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
#define LINE_SIZE_MASK ((LINE_SIZE - 1))
|
1999-04-16 03:35:26 +02:00
|
|
|
#define XFORM(x) ((x) & LINE_SIZE_MASK)
|
|
|
|
#define MASK(x) ((x) & ~LINE_SIZE_MASK)
|
|
|
|
|
|
|
|
struct dcache_block
|
2009-08-21 00:30:12 +02:00
|
|
|
{
|
2009-11-13 19:51:08 +01:00
|
|
|
/* for least-recently-allocated and free lists */
|
|
|
|
struct dcache_block *prev;
|
|
|
|
struct dcache_block *next;
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
CORE_ADDR addr; /* address of data */
|
|
|
|
gdb_byte data[LINE_SIZE]; /* bytes at given address */
|
|
|
|
int refs; /* # hits */
|
|
|
|
};
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
struct dcache_struct
|
2009-08-21 00:30:12 +02:00
|
|
|
{
|
|
|
|
splay_tree tree;
|
2009-11-13 19:51:08 +01:00
|
|
|
struct dcache_block *oldest; /* least-recently-allocated list */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
/* The free list is maintained identically to OLDEST to simplify
|
|
|
|
the code: we only need one set of accessors. */
|
2009-08-21 00:30:12 +02:00
|
|
|
struct dcache_block *freelist;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
/* The number of in-use lines in the cache. */
|
|
|
|
int size;
|
2009-08-31 22:18:46 +02:00
|
|
|
|
|
|
|
/* The ptid of last inferior to use cache or null_ptid. */
|
|
|
|
ptid_t ptid;
|
2009-08-21 00:30:12 +02:00
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
typedef void (block_func) (struct dcache_block *block, void *param);
|
|
|
|
|
2000-09-01 02:12:10 +02:00
|
|
|
static struct dcache_block *dcache_hit (DCACHE *dcache, CORE_ADDR addr);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-09-01 02:12:10 +02:00
|
|
|
static int dcache_read_line (DCACHE *dcache, struct dcache_block *db);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-09-01 02:12:10 +02:00
|
|
|
static struct dcache_block *dcache_alloc (DCACHE *dcache, CORE_ADDR addr);
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void dcache_info (char *exp, int tty);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
void _initialize_dcache (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
static int dcache_enabled_p = 0; /* OBSOLETE */
|
2008-09-23 20:35:32 +02:00
|
|
|
|
2005-02-24 Andrew Cagney <cagney@gnu.org>
Add show_VARIABLE functions, update add_setshow call.
* varobj.c (_initialize_varobj, show_varobjdebug): Add and update.
* valprint.c (_initialize_valprint, show_print_max)
(show_stop_print_at_null, show_repeat_count_threshold)
(show_prettyprint_structs, show_unionprint)
(show_prettyprint_arrays, show_addressprint, show_input_radix)
(show_output_radix): Ditto.
* valops.c (_initialize_valops, show_overload_resolution): Ditto.
* utils.c (initialize_utils, show_chars_per_line)
(show_lines_per_page, show_demangle, show_pagination_enabled)
(show_sevenbit_strings, show_asm_demangle): Ditto
* tui/tui-win.c (_initialize_tui_win, show_tui_border_kind)
(show_tui_border_mode, show_tui_active_border_mode): Ditto.
* top.c (init_main, show_new_async_prompt)
(show_async_command_editing_p, show_write_history_p)
(show_history_size, show_history_filename, show_caution)
(show_annotation_level, init_main): Ditto.
* target.c (initialize_targets, show_targetdebug)
(show_trust_readonly): Ditto.
* symfile.c (_initialize_symfile, show_symbol_reloading)
(show_ext_args, show_download_write_size)
(show_debug_file_directory): Ditto.
* source.c (_initialize_source, show_lines_to_list): Ditto.
* solib.c (_initialize_solib, show_auto_solib_add)
(show_solib_search_path): Ditto.
* p-valprint.c (_initialize_pascal_valprint)
(show_pascal_static_field_print): Ditto.
* printcmd.c (_initialize_printcmd, show_max_symbolic_offset)
(show_print_symbol_filename): Add and update.
* parse.c (_initialize_parse, show_expressiondebug): Dito.
* observer.c (_initialize_observer, show_observer_debug): Dito.
* maint.c (_initialize_maint_cmds, show_watchdog)
(show_maintenance_profile_p): Dito.
* linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito.
* infrun.c (_initialize_infrun, show_debug_infrun)
(show_stop_on_solib_events, show_follow_fork_mode_string)
(show_scheduler_mode, show_step_stop_if_no_debug): Ditto.
* infcall.c (_initialize_infcall, show_coerce_float_to_double_p)
(show_unwind_on_signal_p): Ditto.
* gdbtypes.c (build_gdbtypes, show_opaque_type_resolution)
(_initialize_gdbtypes, show_overload_debug): Ditto.
* gdb-events.c, gdb-events.sh (_initialize_gdb_events)
(show_gdb_events_debug): Ditto.
* gdbarch.c, gdbarch.sh (show_gdbarch_debug)
(_initialize_gdbarch): Ditto.
* frame.c (_initialize_frame, show_backtrace_past_main)
(show_backtrace_past_entry, show_backtrace_limit)
(show_frame_debug): Ditto.
* exec.c (_initialize_exec, show_write_files): Ditto.
* dwarf2read.c (_initialize_dwarf2_read)
(show_dwarf2_max_cache_age): Ditto.
* demangle.c (_initialize_demangler)
(show_demangling_style_names): Ditto.
* dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto.
* cp-valprint.c (show_static_field_print)
(_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto.
* corefile.c (_initialize_core, show_gnutarget_string): Ditto.
* cli/cli-logging.c (_initialize_cli_logging)
(show_logging_overwrite, show_logging_redirect)
(show_logging_filename): Ditto.
* cli/cli-cmds.c (show_info_verbose, show_history_expansion_p)
(init_cli_cmds, show_baud_rate, show_remote_debug)
(show_remote_timeout, show_max_user_call_depth): Ditto.
* charset.c (show_host_charset_name, show_target_charset_name)
(initialize_charset): Ditto.
* breakpoint.c (show_can_use_hw_watchpoints)
(show_pending_break_support, _initialize_breakpoint): Ditto.
2005-02-24 14:51:36 +01:00
|
|
|
static void
|
|
|
|
show_dcache_enabled_p (struct ui_file *file, int from_tty,
|
|
|
|
struct cmd_list_element *c, const char *value)
|
|
|
|
{
|
2009-08-31 22:18:46 +02:00
|
|
|
fprintf_filtered (file, _("Deprecated remotecache flag is %s.\n"), value);
|
2005-02-24 Andrew Cagney <cagney@gnu.org>
Add show_VARIABLE functions, update add_setshow call.
* varobj.c (_initialize_varobj, show_varobjdebug): Add and update.
* valprint.c (_initialize_valprint, show_print_max)
(show_stop_print_at_null, show_repeat_count_threshold)
(show_prettyprint_structs, show_unionprint)
(show_prettyprint_arrays, show_addressprint, show_input_radix)
(show_output_radix): Ditto.
* valops.c (_initialize_valops, show_overload_resolution): Ditto.
* utils.c (initialize_utils, show_chars_per_line)
(show_lines_per_page, show_demangle, show_pagination_enabled)
(show_sevenbit_strings, show_asm_demangle): Ditto
* tui/tui-win.c (_initialize_tui_win, show_tui_border_kind)
(show_tui_border_mode, show_tui_active_border_mode): Ditto.
* top.c (init_main, show_new_async_prompt)
(show_async_command_editing_p, show_write_history_p)
(show_history_size, show_history_filename, show_caution)
(show_annotation_level, init_main): Ditto.
* target.c (initialize_targets, show_targetdebug)
(show_trust_readonly): Ditto.
* symfile.c (_initialize_symfile, show_symbol_reloading)
(show_ext_args, show_download_write_size)
(show_debug_file_directory): Ditto.
* source.c (_initialize_source, show_lines_to_list): Ditto.
* solib.c (_initialize_solib, show_auto_solib_add)
(show_solib_search_path): Ditto.
* p-valprint.c (_initialize_pascal_valprint)
(show_pascal_static_field_print): Ditto.
* printcmd.c (_initialize_printcmd, show_max_symbolic_offset)
(show_print_symbol_filename): Add and update.
* parse.c (_initialize_parse, show_expressiondebug): Dito.
* observer.c (_initialize_observer, show_observer_debug): Dito.
* maint.c (_initialize_maint_cmds, show_watchdog)
(show_maintenance_profile_p): Dito.
* linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito.
* infrun.c (_initialize_infrun, show_debug_infrun)
(show_stop_on_solib_events, show_follow_fork_mode_string)
(show_scheduler_mode, show_step_stop_if_no_debug): Ditto.
* infcall.c (_initialize_infcall, show_coerce_float_to_double_p)
(show_unwind_on_signal_p): Ditto.
* gdbtypes.c (build_gdbtypes, show_opaque_type_resolution)
(_initialize_gdbtypes, show_overload_debug): Ditto.
* gdb-events.c, gdb-events.sh (_initialize_gdb_events)
(show_gdb_events_debug): Ditto.
* gdbarch.c, gdbarch.sh (show_gdbarch_debug)
(_initialize_gdbarch): Ditto.
* frame.c (_initialize_frame, show_backtrace_past_main)
(show_backtrace_past_entry, show_backtrace_limit)
(show_frame_debug): Ditto.
* exec.c (_initialize_exec, show_write_files): Ditto.
* dwarf2read.c (_initialize_dwarf2_read)
(show_dwarf2_max_cache_age): Ditto.
* demangle.c (_initialize_demangler)
(show_demangling_style_names): Ditto.
* dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto.
* cp-valprint.c (show_static_field_print)
(_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto.
* corefile.c (_initialize_core, show_gnutarget_string): Ditto.
* cli/cli-logging.c (_initialize_cli_logging)
(show_logging_overwrite, show_logging_redirect)
(show_logging_filename): Ditto.
* cli/cli-cmds.c (show_info_verbose, show_history_expansion_p)
(init_cli_cmds, show_baud_rate, show_remote_debug)
(show_remote_timeout, show_max_user_call_depth): Ditto.
* charset.c (show_host_charset_name, show_target_charset_name)
(initialize_charset): Ditto.
* breakpoint.c (show_can_use_hw_watchpoints)
(show_pending_break_support, _initialize_breakpoint): Ditto.
2005-02-24 14:51:36 +01:00
|
|
|
}
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
static DCACHE *last_cache; /* Used by info dcache */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
/* Add BLOCK to circular block list BLIST, behind the block at *BLIST.
|
|
|
|
*BLIST is not updated (unless it was previously NULL of course).
|
|
|
|
This is for the least-recently-allocated list's sake:
|
|
|
|
BLIST points to the oldest block.
|
|
|
|
??? This makes for poor cache usage of the free list,
|
|
|
|
but is it measurable? */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
static void
|
|
|
|
append_block (struct dcache_block **blist, struct dcache_block *block)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2009-11-13 19:51:08 +01:00
|
|
|
if (*blist)
|
|
|
|
{
|
|
|
|
block->next = *blist;
|
|
|
|
block->prev = (*blist)->prev;
|
|
|
|
block->prev->next = block;
|
|
|
|
(*blist)->prev = block;
|
|
|
|
/* We don't update *BLIST here to maintain the invariant that for the
|
|
|
|
least-recently-allocated list *BLIST points to the oldest block. */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
block->next = block;
|
|
|
|
block->prev = block;
|
|
|
|
*blist = block;
|
|
|
|
}
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
/* Remove BLOCK from circular block list BLIST. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
static void
|
|
|
|
remove_block (struct dcache_block **blist, struct dcache_block *block)
|
|
|
|
{
|
|
|
|
if (block->next == block)
|
|
|
|
{
|
|
|
|
*blist = NULL;
|
|
|
|
}
|
|
|
|
else
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2009-11-13 19:51:08 +01:00
|
|
|
block->next->prev = block->prev;
|
|
|
|
block->prev->next = block->next;
|
|
|
|
/* If we removed the block *BLIST points to, shift it to the next block
|
|
|
|
to maintain the invariant that for the least-recently-allocated list
|
|
|
|
*BLIST points to the oldest block. */
|
|
|
|
if (*blist == block)
|
|
|
|
*blist = block->next;
|
|
|
|
}
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
/* Iterate over all elements in BLIST, calling FUNC.
|
|
|
|
PARAM is passed to FUNC.
|
|
|
|
FUNC may remove the block it's passed, but only that block. */
|
2009-08-21 00:30:12 +02:00
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
static void
|
|
|
|
for_each_block (struct dcache_block **blist, block_func *func, void *param)
|
|
|
|
{
|
|
|
|
struct dcache_block *db;
|
|
|
|
|
|
|
|
if (*blist == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
db = *blist;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
struct dcache_block *next = db->next;
|
|
|
|
|
|
|
|
func (db, param);
|
|
|
|
db = next;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
2009-11-13 19:51:08 +01:00
|
|
|
while (*blist && db != *blist);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* BLOCK_FUNC function for dcache_invalidate.
|
|
|
|
This doesn't remove the block from the oldest list on purpose.
|
|
|
|
dcache_invalidate will do it later. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
invalidate_block (struct dcache_block *block, void *param)
|
|
|
|
{
|
|
|
|
DCACHE *dcache = (DCACHE *) param;
|
|
|
|
|
|
|
|
splay_tree_remove (dcache->tree, (splay_tree_key) block->addr);
|
|
|
|
append_block (&dcache->freelist, block);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free all the data cache blocks, thus discarding all cached data. */
|
|
|
|
|
|
|
|
void
|
|
|
|
dcache_invalidate (DCACHE *dcache)
|
|
|
|
{
|
|
|
|
for_each_block (&dcache->oldest, invalidate_block, dcache);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
dcache->oldest = NULL;
|
|
|
|
dcache->size = 0;
|
2009-08-31 22:18:46 +02:00
|
|
|
dcache->ptid = null_ptid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Invalidate the line associated with ADDR. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
dcache_invalidate_line (DCACHE *dcache, CORE_ADDR addr)
|
|
|
|
{
|
|
|
|
struct dcache_block *db = dcache_hit (dcache, addr);
|
|
|
|
|
|
|
|
if (db)
|
|
|
|
{
|
|
|
|
splay_tree_remove (dcache->tree, (splay_tree_key) db->addr);
|
2009-11-13 19:51:08 +01:00
|
|
|
remove_block (&dcache->oldest, db);
|
|
|
|
append_block (&dcache->freelist, db);
|
2009-08-31 22:18:46 +02:00
|
|
|
--dcache->size;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If addr is present in the dcache, return the address of the block
|
2009-11-14 00:26:19 +01:00
|
|
|
containing it. Otherwise return NULL. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static struct dcache_block *
|
2000-07-30 03:48:28 +02:00
|
|
|
dcache_hit (DCACHE *dcache, CORE_ADDR addr)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2003-09-14 Andrew Cagney <cagney@redhat.com>
* alpha-nat.c: Remove some occurances of "register".
* alpha-tdep.c, arm-tdep.c, blockframe.c, breakpoint.c: Ditto.
* buildsym.c, c-typeprint.c, c-valprint.c, coffread.c: Ditto.
* corefile.c, cp-support.c, cp-valprint.c, cris-tdep.c: Ditto.
* dbxread.c, dcache.c, dwarf2read.c, elfread.c: Ditto.
* environ.c, eval.c, event-top.c, f-typeprint.c: Ditto.
* f-valprint.c, findvar.c, frame.c, gdbtypes.c: Ditto.
* h8300-tdep.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c: Ditto.
* hppam3-nat.c, hpread.c, ia64-aix-nat.c, ia64-linux-nat.c: Ditto.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Ditto.
* infttrace.c, irix5-nat.c, jv-typeprint.c: Ditto.
* jv-valprint.c, m68k-tdep.c, m68klinux-nat.c, main.c: Ditto.
* mdebugread.c, minsyms.c, mips-linux-tdep.c: Ditto.
* mips-nat.c, mips-tdep.c, mipsread.c, mipsv4-nat.c: Ditto.
* ns32k-tdep.c, objfiles.c, p-typeprint.c: Ditto.
* p-valprint.c, ppc-linux-nat.c, printcmd.c: Ditto.
* remote-mips.c, remote-vx.c, rs6000-nat.c: Ditto.
* rs6000-tdep.c, scm-exp.c, sh-tdep.c, sh64-tdep.c: Ditto.
* solib.c, somread.c, source.c, sparc-tdep.c: Ditto.
* stabsread.c, stack.c, standalone.c, symfile.c: Ditto.
* symmisc.c, symtab.c, top.c, tracepoint.c: Ditto.
* typeprint.c, utils.c, valarith.c, valops.c: Ditto.
* values.c, vax-tdep.c, xcoffread.c: Ditto.
2003-09-14 18:32:14 +02:00
|
|
|
struct dcache_block *db;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
splay_tree_node node = splay_tree_lookup (dcache->tree,
|
|
|
|
(splay_tree_key) MASK (addr));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
if (!node)
|
|
|
|
return NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
db = (struct dcache_block *) node->value;
|
|
|
|
db->refs++;
|
|
|
|
return db;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2009-11-14 00:26:19 +01:00
|
|
|
/* Fill a cache line from target memory.
|
|
|
|
The result is 1 for success, 0 if the (entire) cache line
|
|
|
|
wasn't readable. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-09-01 02:12:10 +02:00
|
|
|
static int
|
|
|
|
dcache_read_line (DCACHE *dcache, struct dcache_block *db)
|
|
|
|
{
|
|
|
|
CORE_ADDR memaddr;
|
2005-05-23 21:32:28 +02:00
|
|
|
gdb_byte *myaddr;
|
2000-09-01 02:12:10 +02:00
|
|
|
int len;
|
|
|
|
int res;
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
int reg_len;
|
|
|
|
struct mem_region *region;
|
2000-09-01 02:12:10 +02:00
|
|
|
|
|
|
|
len = LINE_SIZE;
|
|
|
|
memaddr = db->addr;
|
|
|
|
myaddr = db->data;
|
|
|
|
|
|
|
|
while (len > 0)
|
|
|
|
{
|
2009-08-21 00:30:12 +02:00
|
|
|
/* Don't overrun if this block is right at the end of the region. */
|
|
|
|
region = lookup_mem_region (memaddr);
|
|
|
|
if (region->hi == 0 || memaddr + len < region->hi)
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
reg_len = len;
|
|
|
|
else
|
|
|
|
reg_len = region->hi - memaddr;
|
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
/* Skip non-readable regions. The cache attribute can be ignored,
|
|
|
|
since we may be loading this for a stack access. */
|
|
|
|
if (region->attrib.mode == MEM_WO)
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
{
|
|
|
|
memaddr += reg_len;
|
|
|
|
myaddr += reg_len;
|
|
|
|
len -= reg_len;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-08-15 20:46:25 +02:00
|
|
|
res = target_read (¤t_target, TARGET_OBJECT_RAW_MEMORY,
|
|
|
|
NULL, myaddr, memaddr, reg_len);
|
|
|
|
if (res < reg_len)
|
|
|
|
return 0;
|
2000-09-01 02:12:10 +02:00
|
|
|
|
2006-08-15 20:46:25 +02:00
|
|
|
memaddr += res;
|
|
|
|
myaddr += res;
|
|
|
|
len -= res;
|
2000-09-01 02:12:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
/* Get a free cache block, put or keep it on the valid list,
|
2000-08-10 20:54:27 +02:00
|
|
|
and return its address. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static struct dcache_block *
|
2000-08-10 20:54:27 +02:00
|
|
|
dcache_alloc (DCACHE *dcache, CORE_ADDR addr)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2003-09-14 Andrew Cagney <cagney@redhat.com>
* alpha-nat.c: Remove some occurances of "register".
* alpha-tdep.c, arm-tdep.c, blockframe.c, breakpoint.c: Ditto.
* buildsym.c, c-typeprint.c, c-valprint.c, coffread.c: Ditto.
* corefile.c, cp-support.c, cp-valprint.c, cris-tdep.c: Ditto.
* dbxread.c, dcache.c, dwarf2read.c, elfread.c: Ditto.
* environ.c, eval.c, event-top.c, f-typeprint.c: Ditto.
* f-valprint.c, findvar.c, frame.c, gdbtypes.c: Ditto.
* h8300-tdep.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c: Ditto.
* hppam3-nat.c, hpread.c, ia64-aix-nat.c, ia64-linux-nat.c: Ditto.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Ditto.
* infttrace.c, irix5-nat.c, jv-typeprint.c: Ditto.
* jv-valprint.c, m68k-tdep.c, m68klinux-nat.c, main.c: Ditto.
* mdebugread.c, minsyms.c, mips-linux-tdep.c: Ditto.
* mips-nat.c, mips-tdep.c, mipsread.c, mipsv4-nat.c: Ditto.
* ns32k-tdep.c, objfiles.c, p-typeprint.c: Ditto.
* p-valprint.c, ppc-linux-nat.c, printcmd.c: Ditto.
* remote-mips.c, remote-vx.c, rs6000-nat.c: Ditto.
* rs6000-tdep.c, scm-exp.c, sh-tdep.c, sh64-tdep.c: Ditto.
* solib.c, somread.c, source.c, sparc-tdep.c: Ditto.
* stabsread.c, stack.c, standalone.c, symfile.c: Ditto.
* symmisc.c, symtab.c, top.c, tracepoint.c: Ditto.
* typeprint.c, utils.c, valarith.c, valops.c: Ditto.
* values.c, vax-tdep.c, xcoffread.c: Ditto.
2003-09-14 18:32:14 +02:00
|
|
|
struct dcache_block *db;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
if (dcache->size >= DCACHE_SIZE)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2009-11-13 19:51:08 +01:00
|
|
|
/* Evict the least recently allocated line. */
|
2009-08-21 00:30:12 +02:00
|
|
|
db = dcache->oldest;
|
2009-11-13 19:51:08 +01:00
|
|
|
remove_block (&dcache->oldest, db);
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
splay_tree_remove (dcache->tree, (splay_tree_key) db->addr);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-08-21 00:30:12 +02:00
|
|
|
db = dcache->freelist;
|
|
|
|
if (db)
|
2009-11-13 19:51:08 +01:00
|
|
|
remove_block (&dcache->freelist, db);
|
2009-08-21 00:30:12 +02:00
|
|
|
else
|
|
|
|
db = xmalloc (sizeof (struct dcache_block));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
dcache->size++;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
db->addr = MASK (addr);
|
2000-08-10 20:54:27 +02:00
|
|
|
db->refs = 0;
|
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
/* Put DB at the end of the list, it's the newest. */
|
|
|
|
append_block (&dcache->oldest, db);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
splay_tree_insert (dcache->tree, (splay_tree_key) db->addr,
|
|
|
|
(splay_tree_value) db);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
return db;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2009-11-14 00:26:19 +01:00
|
|
|
/* Using the data cache DCACHE, store in *PTR the contents of the byte at
|
2000-09-01 02:12:10 +02:00
|
|
|
address ADDR in the remote machine.
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
Returns 1 for success, 0 for error. */
|
2000-09-01 02:12:10 +02:00
|
|
|
|
|
|
|
static int
|
2005-05-23 21:32:28 +02:00
|
|
|
dcache_peek_byte (DCACHE *dcache, CORE_ADDR addr, gdb_byte *ptr)
|
2000-09-01 02:12:10 +02:00
|
|
|
{
|
2003-09-14 Andrew Cagney <cagney@redhat.com>
* alpha-nat.c: Remove some occurances of "register".
* alpha-tdep.c, arm-tdep.c, blockframe.c, breakpoint.c: Ditto.
* buildsym.c, c-typeprint.c, c-valprint.c, coffread.c: Ditto.
* corefile.c, cp-support.c, cp-valprint.c, cris-tdep.c: Ditto.
* dbxread.c, dcache.c, dwarf2read.c, elfread.c: Ditto.
* environ.c, eval.c, event-top.c, f-typeprint.c: Ditto.
* f-valprint.c, findvar.c, frame.c, gdbtypes.c: Ditto.
* h8300-tdep.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c: Ditto.
* hppam3-nat.c, hpread.c, ia64-aix-nat.c, ia64-linux-nat.c: Ditto.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Ditto.
* infttrace.c, irix5-nat.c, jv-typeprint.c: Ditto.
* jv-valprint.c, m68k-tdep.c, m68klinux-nat.c, main.c: Ditto.
* mdebugread.c, minsyms.c, mips-linux-tdep.c: Ditto.
* mips-nat.c, mips-tdep.c, mipsread.c, mipsv4-nat.c: Ditto.
* ns32k-tdep.c, objfiles.c, p-typeprint.c: Ditto.
* p-valprint.c, ppc-linux-nat.c, printcmd.c: Ditto.
* remote-mips.c, remote-vx.c, rs6000-nat.c: Ditto.
* rs6000-tdep.c, scm-exp.c, sh-tdep.c, sh64-tdep.c: Ditto.
* solib.c, somread.c, source.c, sparc-tdep.c: Ditto.
* stabsread.c, stack.c, standalone.c, symfile.c: Ditto.
* symmisc.c, symtab.c, top.c, tracepoint.c: Ditto.
* typeprint.c, utils.c, valarith.c, valops.c: Ditto.
* values.c, vax-tdep.c, xcoffread.c: Ditto.
2003-09-14 18:32:14 +02:00
|
|
|
struct dcache_block *db = dcache_hit (dcache, addr);
|
2000-09-01 02:12:10 +02:00
|
|
|
|
|
|
|
if (!db)
|
|
|
|
{
|
|
|
|
db = dcache_alloc (dcache, addr);
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
if (!dcache_read_line (dcache, db))
|
2000-09-01 02:12:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = db->data[XFORM (addr)];
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
/* Write the byte at PTR into ADDR in the data cache.
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
The caller is responsible for also promptly writing the data
|
|
|
|
through to target memory.
|
|
|
|
|
|
|
|
If addr is not in cache, this function does nothing; writing to
|
|
|
|
an area of memory which wasn't present in the cache doesn't cause
|
|
|
|
it to be loaded in.
|
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
Always return 1 (meaning success) to simplify dcache_xfer_memory. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static int
|
2005-05-23 21:32:28 +02:00
|
|
|
dcache_poke_byte (DCACHE *dcache, CORE_ADDR addr, gdb_byte *ptr)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2003-09-14 Andrew Cagney <cagney@redhat.com>
* alpha-nat.c: Remove some occurances of "register".
* alpha-tdep.c, arm-tdep.c, blockframe.c, breakpoint.c: Ditto.
* buildsym.c, c-typeprint.c, c-valprint.c, coffread.c: Ditto.
* corefile.c, cp-support.c, cp-valprint.c, cris-tdep.c: Ditto.
* dbxread.c, dcache.c, dwarf2read.c, elfread.c: Ditto.
* environ.c, eval.c, event-top.c, f-typeprint.c: Ditto.
* f-valprint.c, findvar.c, frame.c, gdbtypes.c: Ditto.
* h8300-tdep.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c: Ditto.
* hppam3-nat.c, hpread.c, ia64-aix-nat.c, ia64-linux-nat.c: Ditto.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Ditto.
* infttrace.c, irix5-nat.c, jv-typeprint.c: Ditto.
* jv-valprint.c, m68k-tdep.c, m68klinux-nat.c, main.c: Ditto.
* mdebugread.c, minsyms.c, mips-linux-tdep.c: Ditto.
* mips-nat.c, mips-tdep.c, mipsread.c, mipsv4-nat.c: Ditto.
* ns32k-tdep.c, objfiles.c, p-typeprint.c: Ditto.
* p-valprint.c, ppc-linux-nat.c, printcmd.c: Ditto.
* remote-mips.c, remote-vx.c, rs6000-nat.c: Ditto.
* rs6000-tdep.c, scm-exp.c, sh-tdep.c, sh64-tdep.c: Ditto.
* solib.c, somread.c, source.c, sparc-tdep.c: Ditto.
* stabsread.c, stack.c, standalone.c, symfile.c: Ditto.
* symmisc.c, symtab.c, top.c, tracepoint.c: Ditto.
* typeprint.c, utils.c, valarith.c, valops.c: Ditto.
* values.c, vax-tdep.c, xcoffread.c: Ditto.
2003-09-14 18:32:14 +02:00
|
|
|
struct dcache_block *db = dcache_hit (dcache, addr);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
if (db)
|
|
|
|
db->data[XFORM (addr)] = *ptr;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
static int
|
|
|
|
dcache_splay_tree_compare (splay_tree_key a, splay_tree_key b)
|
|
|
|
{
|
|
|
|
if (a > b)
|
|
|
|
return 1;
|
|
|
|
else if (a == b)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-11-14 00:26:19 +01:00
|
|
|
/* Allocate and initialize a data cache. */
|
2009-08-21 00:30:12 +02:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
DCACHE *
|
2000-11-03 23:00:56 +01:00
|
|
|
dcache_init (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
DCACHE *dcache;
|
|
|
|
|
|
|
|
dcache = (DCACHE *) xmalloc (sizeof (*dcache));
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
dcache->tree = splay_tree_new (dcache_splay_tree_compare,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
dcache->oldest = NULL;
|
|
|
|
dcache->freelist = NULL;
|
|
|
|
dcache->size = 0;
|
2009-08-31 22:18:46 +02:00
|
|
|
dcache->ptid = null_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
last_cache = dcache;
|
2009-08-21 00:30:12 +02:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
return dcache;
|
|
|
|
}
|
|
|
|
|
2009-11-13 19:51:08 +01:00
|
|
|
/* BLOCK_FUNC routine for dcache_free. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_block (struct dcache_block *block, void *param)
|
|
|
|
{
|
|
|
|
free (block);
|
|
|
|
}
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
/* Free a data cache. */
|
|
|
|
|
* MAINTAINERS: Add myself as dcache.c maintainer.
* remote-nindy.c (nindy_load): Invalidate dcache.
* dcache.c (dcache_invd): Renamed from dcache_flush. The term
flush with respect to caches usually implies that data will be
written to memory.
(dcache_init, dcache_xfer_memory): Updated.
* monitor.c (flush_monitor_dcache, monitor_resume, monitor_load):
Updated.
* ocd.c (ocd_open, ocd_resume, bdm_reset_command): Updated.
* remote-bug.c (bug_load, bug_resume): Updated.
* remote-nindy.c (nindy_open, nindy_resume): Updated.
* remote-sds.c (sds_open, sds_resume): Updated.
* remote-utils.c (gr_open): Updated.
* remote.c (remote_open_1, remote_resume, remote_async_resume,
remote_cisco_open): Updated.
* wince.c (child_create_inferior, child_resume): Updated.
* monitor.c (monitor_open): Free dcache before creating a new one.
* dcache.c (dcache_free): New function.
* dcache.h (dcache_free): New prototype.
-------------------------------------------------------------------
2000-08-19 00:52:23 +02:00
|
|
|
void
|
|
|
|
dcache_free (DCACHE *dcache)
|
|
|
|
{
|
|
|
|
if (last_cache == dcache)
|
|
|
|
last_cache = NULL;
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
splay_tree_delete (dcache->tree);
|
2009-11-13 19:51:08 +01:00
|
|
|
for_each_block (&dcache->oldest, free_block, NULL);
|
|
|
|
for_each_block (&dcache->freelist, free_block, NULL);
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (dcache);
|
* MAINTAINERS: Add myself as dcache.c maintainer.
* remote-nindy.c (nindy_load): Invalidate dcache.
* dcache.c (dcache_invd): Renamed from dcache_flush. The term
flush with respect to caches usually implies that data will be
written to memory.
(dcache_init, dcache_xfer_memory): Updated.
* monitor.c (flush_monitor_dcache, monitor_resume, monitor_load):
Updated.
* ocd.c (ocd_open, ocd_resume, bdm_reset_command): Updated.
* remote-bug.c (bug_load, bug_resume): Updated.
* remote-nindy.c (nindy_open, nindy_resume): Updated.
* remote-sds.c (sds_open, sds_resume): Updated.
* remote-utils.c (gr_open): Updated.
* remote.c (remote_open_1, remote_resume, remote_async_resume,
remote_cisco_open): Updated.
* wince.c (child_create_inferior, child_resume): Updated.
* monitor.c (monitor_open): Free dcache before creating a new one.
* dcache.c (dcache_free): New function.
* dcache.h (dcache_free): New prototype.
-------------------------------------------------------------------
2000-08-19 00:52:23 +02:00
|
|
|
}
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
/* Read or write LEN bytes from inferior memory at MEMADDR, transferring
|
|
|
|
to or from debugger address MYADDR. Write to inferior if SHOULD_WRITE is
|
|
|
|
nonzero.
|
|
|
|
|
2009-11-14 00:26:19 +01:00
|
|
|
Return the number of bytes actually transfered, or -1 if the
|
|
|
|
transfer is not supported or otherwise fails. Return of a non-negative
|
|
|
|
value less than LEN indicates that no further transfer is possible.
|
|
|
|
NOTE: This is different than the to_xfer_partial interface, in which
|
|
|
|
positive values less than LEN mean further transfers may be possible. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
int
|
2009-08-21 00:30:12 +02:00
|
|
|
dcache_xfer_memory (struct target_ops *ops, DCACHE *dcache,
|
|
|
|
CORE_ADDR memaddr, gdb_byte *myaddr,
|
2005-05-16 Andrew Cagney <cagney@gnu.org>
* target.h (target_read_partial, target_write_partial)
(do_xfer_memory, xfer_memory, target_read, target_write)
(get_target_memory): For buffers, change "void*" to gdb_byte.
(struct target_ops): Ditto for to_xfer_partial and
deprecated_xfer_memory.
* dcache.h (dcache_xfer_memory): Ditto.
* target.c (default_xfer_partial, target_read_partial)
(target_write_partial, target_read, target_write)
(do_xfer_memory, update_current_target, get_target_memory): Update.
(target_read_string): Change buf to a gdb_byte.
* dcache.c (dcache_xfer_memory): Update.
* exec.c (xfer_memory): Make buffer type to gdb_byte.
* mem-break.c (default_memory_insert_breakpoint): Remove cast.
* disasm.c (dis_asm_read_memory): Remove cast, use gdb_byte.
2005-05-16 06:45:43 +02:00
|
|
|
int len, int should_write)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
int i;
|
2009-08-21 00:30:12 +02:00
|
|
|
int res;
|
2005-05-23 21:32:28 +02:00
|
|
|
int (*xfunc) (DCACHE *dcache, CORE_ADDR addr, gdb_byte *ptr);
|
2010-05-14 19:53:16 +02:00
|
|
|
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
xfunc = should_write ? dcache_poke_byte : dcache_peek_byte;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
/* If this is a different inferior from what we've recorded,
|
|
|
|
flush the cache. */
|
|
|
|
|
|
|
|
if (! ptid_equal (inferior_ptid, dcache->ptid))
|
|
|
|
{
|
|
|
|
dcache_invalidate (dcache);
|
|
|
|
dcache->ptid = inferior_ptid;
|
|
|
|
}
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
/* Do write-through first, so that if it fails, we don't write to
|
|
|
|
the cache at all. */
|
|
|
|
|
|
|
|
if (should_write)
|
|
|
|
{
|
|
|
|
res = target_write (ops, TARGET_OBJECT_RAW_MEMORY,
|
|
|
|
NULL, myaddr, memaddr, len);
|
2009-08-31 22:18:46 +02:00
|
|
|
if (res <= 0)
|
|
|
|
return res;
|
|
|
|
/* Update LEN to what was actually written. */
|
|
|
|
len = res;
|
2009-08-21 00:30:12 +02:00
|
|
|
}
|
|
|
|
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
for (i = 0; i < len; i++)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
if (!xfunc (dcache, memaddr + i, myaddr + i))
|
2009-08-31 22:18:46 +02:00
|
|
|
{
|
|
|
|
/* That failed. Discard its cache line so we don't have a
|
|
|
|
partially read line. */
|
|
|
|
dcache_invalidate_line (dcache, memaddr + i);
|
|
|
|
/* If we're writing, we still wrote LEN bytes. */
|
|
|
|
if (should_write)
|
|
|
|
return len;
|
|
|
|
else
|
|
|
|
return i;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
/* FIXME: There would be some benefit to making the cache write-back and
|
|
|
|
moving the writeback operation to a higher layer, as it could occur
|
|
|
|
after a sequence of smaller writes have been completed (as when a stack
|
|
|
|
frame is constructed for an inferior function call). Note that only
|
|
|
|
moving it up one level to target_xfer_memory[_partial]() is not
|
|
|
|
sufficient since we want to coalesce memory transfers that are
|
|
|
|
"logically" connected but not actually a single call to one of the
|
|
|
|
memory transfer functions. */
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
/* Just update any cache lines which are already present. This is called
|
|
|
|
by memory_xfer_partial in cases where the access would otherwise not go
|
|
|
|
through the cache. */
|
|
|
|
|
|
|
|
void
|
|
|
|
dcache_update (DCACHE *dcache, CORE_ADDR memaddr, gdb_byte *myaddr, int len)
|
|
|
|
{
|
|
|
|
int i;
|
2010-05-14 19:53:16 +02:00
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
dcache_poke_byte (dcache, memaddr + i, myaddr + i);
|
|
|
|
}
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
static void
|
|
|
|
dcache_print_line (int index)
|
|
|
|
{
|
|
|
|
splay_tree_node n;
|
|
|
|
struct dcache_block *db;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
if (!last_cache)
|
|
|
|
{
|
|
|
|
printf_filtered (_("No data cache available.\n"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = splay_tree_min (last_cache->tree);
|
|
|
|
|
|
|
|
for (i = index; i > 0; --i)
|
|
|
|
{
|
|
|
|
if (!n)
|
|
|
|
break;
|
|
|
|
n = splay_tree_successor (last_cache->tree, n->key);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!n)
|
|
|
|
{
|
|
|
|
printf_filtered (_("No such cache line exists.\n"));
|
|
|
|
return;
|
|
|
|
}
|
* exec.c (xfer_memory): Add attrib argument.
* infptrace.c (child_xfer_memory): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
* remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
* remote-array.c (array_xfer_memory): Likewise.
* remote-bug.c (bug_xfer_memory): Likewise.
* remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
* remote-eb.c (eb_xfer_inferior_memory): Likewise.
* remote-es.c (es1800_xfer_inferior_memory): Likewise.
* remote-mips.c (mips_xfer_memory): Likewise.
* remote-mm.c (mm_xfer_inferior_memory): Likewise.
* remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
* remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
* remote-rdi.c (arm_rdi_xfer_memory): Likewise.
* remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
* remote-sds.c (sds_xfer_memory): Likewise.
* remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
* remote-st.c (st2000_xfer_inferior_memory): Likewise.
* remote-udi.c (udi_xfer_inferior_memory): Likewise.
* remote-vx.c (vx_xfer_memory): Likewise.
* remote.c (remote_xfer_memory): Likewise.
* target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
* target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
* target.h (#include "memattr.h"): Added.
(target_ops.to_xfer_memory): Add attrib argument.
* wince.c (_initialize_inftarg): Removed call to set_dcache_state.
* dcache.h (set_dcache_state): Removed declaration.
* dcache.c (set_dcache_state): Removed definition
* dcache.c: Update module comment, as dcache is now enabled and
disabled with memory region attributes instead of by the global
variable "remotecache". Add comment describing the interaction
between dcache and memory region attributes.
(dcache_xfer_memory): Add comment describing benefits of moving
cache writeback to a higher level.
(dcache_struct): Removed cache_has_stuff field. This was used to
record whether the cache had been accessed in order to invalidate
it when it was disabled. However, this is not needed because the
cache is write through and the code that enables, disables, and
deletes memory regions invalidate the cache. Add comment which
suggests that we could be more selective and only invalidate those
cache lines containing data from those memory regions.
(dcache_invalidate): Updated.
(dcache_xfer_memory): Updated.
(dcache_alloc): Don't abort() if dcache_enabled_p is clear.
(dcache_xfer_memory): Removed code that called do_xfer_memory() to
perform a uncached transfer if dcache_enabled_p was clear. This
function is now only called if caching is enabled for the memory
region.
(dcache_info): Always print cache info.
* target.c (do_xfer_memory): Add attrib argument.
(target_xfer_memory, target_xfer_memory_partial): Break transfer
into chunks defined by memory regions, pass region attributes to
do_xfer_memory().
* dcache.c (dcache_read_line, dcache_write_line): Likewise.
* Makefile.in (SFILES): Add memattr.c.
(COMMON_OBS): Add memattr.o.
(dcache.o): Add target.h to dependencies.
* memattr.c: New file.
* memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
db = (struct dcache_block *) n->value;
|
|
|
|
|
2009-08-21 01:30:15 +02:00
|
|
|
printf_filtered (_("Line %d: address %s [%d hits]\n"),
|
|
|
|
index, paddress (target_gdbarch, db->addr), db->refs);
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
for (j = 0; j < LINE_SIZE; j++)
|
|
|
|
{
|
|
|
|
printf_filtered ("%02x ", db->data[j]);
|
|
|
|
|
|
|
|
/* Print a newline every 16 bytes (48 characters) */
|
|
|
|
if ((j % 16 == 15) && (j != LINE_SIZE - 1))
|
|
|
|
printf_filtered ("\n");
|
|
|
|
}
|
|
|
|
printf_filtered ("\n");
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
dcache_info (char *exp, int tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2009-08-21 00:30:12 +02:00
|
|
|
splay_tree_node n;
|
2010-05-05 22:50:24 +02:00
|
|
|
int i, refcount;
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
if (exp)
|
|
|
|
{
|
|
|
|
char *linestart;
|
2010-05-14 19:53:16 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
i = strtol (exp, &linestart, 10);
|
|
|
|
if (linestart == exp || i < 0)
|
|
|
|
{
|
|
|
|
printf_filtered (_("Usage: info dcache [linenumber]\n"));
|
|
|
|
return;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
dcache_print_line (i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf_filtered (_("Dcache line width %d, maximum size %d\n"),
|
1999-04-16 03:35:26 +02:00
|
|
|
LINE_SIZE, DCACHE_SIZE);
|
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
if (!last_cache || ptid_equal (last_cache->ptid, null_ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2009-08-21 00:30:12 +02:00
|
|
|
printf_filtered (_("No data cache available.\n"));
|
|
|
|
return;
|
|
|
|
}
|
2000-08-11 16:47:38 +02:00
|
|
|
|
2009-08-31 22:18:46 +02:00
|
|
|
printf_filtered (_("Contains data for %s\n"),
|
|
|
|
target_pid_to_str (last_cache->ptid));
|
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
refcount = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
n = splay_tree_min (last_cache->tree);
|
|
|
|
i = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2009-08-21 00:30:12 +02:00
|
|
|
while (n)
|
|
|
|
{
|
|
|
|
struct dcache_block *db = (struct dcache_block *) n->value;
|
|
|
|
|
2009-08-21 01:30:15 +02:00
|
|
|
printf_filtered (_("Line %d: address %s [%d hits]\n"),
|
|
|
|
i, paddress (target_gdbarch, db->addr), db->refs);
|
2009-08-21 00:30:12 +02:00
|
|
|
i++;
|
|
|
|
refcount += db->refs;
|
|
|
|
|
|
|
|
n = splay_tree_successor (last_cache->tree, n->key);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
2009-08-21 00:30:12 +02:00
|
|
|
|
|
|
|
printf_filtered (_("Cache state: %d active lines, %d hits\n"), i, refcount);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
_initialize_dcache (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2005-02-18 Andrew Cagney <cagney@gnu.org>
Use add_setshow_boolean_command through out. Delete #ifdef 0'ed
code adding set/show boolean commands.
* cp-valprint.c, dcache.c, exec.c, gdbtypes.c, infrun.c: Update.
* monitor.c, p-valprint.c, pa64solib.c, printcmd.c: Update.
* proc-api.c, remote-mips.c, remote.c, solib.c: Update.
* somsolib.c, symfile.c, top.c, utils.c, valops.c: Update.
* valprint.c, win32-nat.c, wince.c, xcoffsolib.c: Update.
* cli/cli-cmds.c: Update.
2005-02-18 16:25:32 +01:00
|
|
|
add_setshow_boolean_cmd ("remotecache", class_support,
|
|
|
|
&dcache_enabled_p, _("\
|
|
|
|
Set cache use for remote targets."), _("\
|
|
|
|
Show cache use for remote targets."), _("\
|
2009-08-31 22:18:46 +02:00
|
|
|
This used to enable the data cache for remote targets. The cache\n\
|
|
|
|
functionality is now controlled by the memory region system and the\n\
|
|
|
|
\"stack-cache\" flag; \"remotecache\" now does nothing and\n\
|
|
|
|
exists only for compatibility reasons."),
|
2005-02-18 Andrew Cagney <cagney@gnu.org>
Use add_setshow_boolean_command through out. Delete #ifdef 0'ed
code adding set/show boolean commands.
* cp-valprint.c, dcache.c, exec.c, gdbtypes.c, infrun.c: Update.
* monitor.c, p-valprint.c, pa64solib.c, printcmd.c: Update.
* proc-api.c, remote-mips.c, remote.c, solib.c: Update.
* somsolib.c, symfile.c, top.c, utils.c, valops.c: Update.
* valprint.c, win32-nat.c, wince.c, xcoffsolib.c: Update.
* cli/cli-cmds.c: Update.
2005-02-18 16:25:32 +01:00
|
|
|
NULL,
|
2005-02-24 Andrew Cagney <cagney@gnu.org>
Add show_VARIABLE functions, update add_setshow call.
* varobj.c (_initialize_varobj, show_varobjdebug): Add and update.
* valprint.c (_initialize_valprint, show_print_max)
(show_stop_print_at_null, show_repeat_count_threshold)
(show_prettyprint_structs, show_unionprint)
(show_prettyprint_arrays, show_addressprint, show_input_radix)
(show_output_radix): Ditto.
* valops.c (_initialize_valops, show_overload_resolution): Ditto.
* utils.c (initialize_utils, show_chars_per_line)
(show_lines_per_page, show_demangle, show_pagination_enabled)
(show_sevenbit_strings, show_asm_demangle): Ditto
* tui/tui-win.c (_initialize_tui_win, show_tui_border_kind)
(show_tui_border_mode, show_tui_active_border_mode): Ditto.
* top.c (init_main, show_new_async_prompt)
(show_async_command_editing_p, show_write_history_p)
(show_history_size, show_history_filename, show_caution)
(show_annotation_level, init_main): Ditto.
* target.c (initialize_targets, show_targetdebug)
(show_trust_readonly): Ditto.
* symfile.c (_initialize_symfile, show_symbol_reloading)
(show_ext_args, show_download_write_size)
(show_debug_file_directory): Ditto.
* source.c (_initialize_source, show_lines_to_list): Ditto.
* solib.c (_initialize_solib, show_auto_solib_add)
(show_solib_search_path): Ditto.
* p-valprint.c (_initialize_pascal_valprint)
(show_pascal_static_field_print): Ditto.
* printcmd.c (_initialize_printcmd, show_max_symbolic_offset)
(show_print_symbol_filename): Add and update.
* parse.c (_initialize_parse, show_expressiondebug): Dito.
* observer.c (_initialize_observer, show_observer_debug): Dito.
* maint.c (_initialize_maint_cmds, show_watchdog)
(show_maintenance_profile_p): Dito.
* linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito.
* infrun.c (_initialize_infrun, show_debug_infrun)
(show_stop_on_solib_events, show_follow_fork_mode_string)
(show_scheduler_mode, show_step_stop_if_no_debug): Ditto.
* infcall.c (_initialize_infcall, show_coerce_float_to_double_p)
(show_unwind_on_signal_p): Ditto.
* gdbtypes.c (build_gdbtypes, show_opaque_type_resolution)
(_initialize_gdbtypes, show_overload_debug): Ditto.
* gdb-events.c, gdb-events.sh (_initialize_gdb_events)
(show_gdb_events_debug): Ditto.
* gdbarch.c, gdbarch.sh (show_gdbarch_debug)
(_initialize_gdbarch): Ditto.
* frame.c (_initialize_frame, show_backtrace_past_main)
(show_backtrace_past_entry, show_backtrace_limit)
(show_frame_debug): Ditto.
* exec.c (_initialize_exec, show_write_files): Ditto.
* dwarf2read.c (_initialize_dwarf2_read)
(show_dwarf2_max_cache_age): Ditto.
* demangle.c (_initialize_demangler)
(show_demangling_style_names): Ditto.
* dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto.
* cp-valprint.c (show_static_field_print)
(_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto.
* corefile.c (_initialize_core, show_gnutarget_string): Ditto.
* cli/cli-logging.c (_initialize_cli_logging)
(show_logging_overwrite, show_logging_redirect)
(show_logging_filename): Ditto.
* cli/cli-cmds.c (show_info_verbose, show_history_expansion_p)
(init_cli_cmds, show_baud_rate, show_remote_debug)
(show_remote_timeout, show_max_user_call_depth): Ditto.
* charset.c (show_host_charset_name, show_target_charset_name)
(initialize_charset): Ditto.
* breakpoint.c (show_can_use_hw_watchpoints)
(show_pending_break_support, _initialize_breakpoint): Ditto.
2005-02-24 14:51:36 +01:00
|
|
|
show_dcache_enabled_p,
|
2005-02-18 Andrew Cagney <cagney@gnu.org>
Use add_setshow_boolean_command through out. Delete #ifdef 0'ed
code adding set/show boolean commands.
* cp-valprint.c, dcache.c, exec.c, gdbtypes.c, infrun.c: Update.
* monitor.c, p-valprint.c, pa64solib.c, printcmd.c: Update.
* proc-api.c, remote-mips.c, remote.c, solib.c: Update.
* somsolib.c, symfile.c, top.c, utils.c, valops.c: Update.
* valprint.c, win32-nat.c, wince.c, xcoffsolib.c: Update.
* cli/cli-cmds.c: Update.
2005-02-18 16:25:32 +01:00
|
|
|
&setlist, &showlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
add_info ("dcache", dcache_info,
|
2008-09-23 20:35:32 +02:00
|
|
|
_("\
|
|
|
|
Print information on the dcache performance.\n\
|
2009-08-21 00:30:12 +02:00
|
|
|
With no arguments, this command prints the cache configuration and a\n\
|
|
|
|
summary of each line in the cache. Use \"info dcache <lineno> to dump\"\n\
|
|
|
|
the contents of a given line."));
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|