diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-01-29 17:51:58 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-01-29 17:51:58 +0000 |
commit | ba6ef5e5fd0a27c5a88a9820845d8c7b0919d776 (patch) | |
tree | f386d957919b71384d8767d72d3abac2fda79198 /gdb | |
parent | e4091a46a50f35e83cd3b148b607de4d6ec60e2f (diff) | |
download | gdb-ba6ef5e5fd0a27c5a88a9820845d8c7b0919d776.zip gdb-ba6ef5e5fd0a27c5a88a9820845d8c7b0919d776.tar.gz gdb-ba6ef5e5fd0a27c5a88a9820845d8c7b0919d776.tar.bz2 |
* remote.c, remote-pa.c: Remove #if 0'd icache code. It has had
no hope of working as is for a long time (in particular, shebs' 27
Jan 95 change confuses the issue further--target_read_memory and
xfer_core_file do *not* do the same thing in this context).
Revise comment.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/remote-pa.c | 28 |
1 files changed, 5 insertions, 23 deletions
diff --git a/gdb/remote-pa.c b/gdb/remote-pa.c index cb87054..ed4286b 100644 --- a/gdb/remote-pa.c +++ b/gdb/remote-pa.c @@ -237,10 +237,6 @@ extern struct target_ops remote_ops; /* Forward decl */ be plenty. */ static int remote_timeout = 2; -#if 0 -int icache; -#endif - /* Descriptor for I/O to remote machine. Initialize it to NULL so that remote_open knows that we don't have a file open when the program starts. */ @@ -845,12 +841,11 @@ remote_store_registers (regno) /* Use of the data cache is disabled because it loses for looking at and changing hardware I/O ports and the like. Accepting `volatile' - would perhaps be one way to fix it, but a better way which would - win for more cases would be to use the executable file for the text - segment, like the `icache' code below but done cleanly (in some - target-independent place, perhaps in target_xfer_memory, perhaps - based on assigning each target a speed or perhaps by some simpler - mechanism). */ + would perhaps be one way to fix it. Another idea would be to use the + executable file for the text segment (for all SEC_CODE sections? + For all SEC_READONLY sections?). This has problems if you want to + actually see what the memory contains (e.g. self-modifying code, + clobbered memory, user downloaded the wrong thing). */ /* Read a word from remote address ADDR and return it. This goes through the data cache. */ @@ -859,19 +854,6 @@ static int remote_fetch_word (addr) CORE_ADDR addr; { -#if 0 - if (icache) - { - extern CORE_ADDR text_start, text_end; - - if (addr >= text_start && addr < text_end) - { - int buffer; - target_read_memory (addr, &buffer, sizeof (int)); - return buffer; - } - } -#endif return dcache_fetch (remote_dcache, addr); } |