aboutsummaryrefslogtreecommitdiff
path: root/gdb/config/mips
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1997-10-06 22:55:34 +0000
committerStan Shebs <shebs@codesourcery.com>1997-10-06 22:55:34 +0000
commite5d6b49ad9b21a9edd35f5336b308e936ef45e32 (patch)
treeea736f50906fe2d563253c01e535c6a246299815 /gdb/config/mips
parenta9da34ae13489d15fdfb70fd9783149ea016a41d (diff)
downloadgdb-e5d6b49ad9b21a9edd35f5336b308e936ef45e32.zip
gdb-e5d6b49ad9b21a9edd35f5336b308e936ef45e32.tar.gz
gdb-e5d6b49ad9b21a9edd35f5336b308e936ef45e32.tar.bz2
Remove sanitized-out Magic Cap support, will never be released
Diffstat (limited to 'gdb/config/mips')
-rw-r--r--gdb/config/mips/.Sanitize27
-rw-r--r--gdb/config/mips/tm-embed.h21
-rw-r--r--gdb/config/mips/tm-irix5.h6
-rw-r--r--gdb/config/mips/tm-r3900.h36
4 files changed, 0 insertions, 90 deletions
diff --git a/gdb/config/mips/.Sanitize b/gdb/config/mips/.Sanitize
index be1b378..0e3dc69 100644
--- a/gdb/config/mips/.Sanitize
+++ b/gdb/config/mips/.Sanitize
@@ -114,31 +114,4 @@ tm-r3900l.h
Do-last:
-if ( echo $* | grep keep\-gm > /dev/null ) ; then
- for i in * ; do
- if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping gm stuff in $i
- fi
- fi
- done
-else
- for i in * ; do
- if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Removing traces of \"gm\" from $i...
- fi
- cp $i new
- sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
- if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
- if [ -n "${verbose}" ] ; then
- echo Caching $i in .Recover...
- fi
- mv $i .Recover
- fi
- mv new $i
- fi
- done
-fi
-
# End of file.
diff --git a/gdb/config/mips/tm-embed.h b/gdb/config/mips/tm-embed.h
index 4f82d3f..4a4aa75 100644
--- a/gdb/config/mips/tm-embed.h
+++ b/gdb/config/mips/tm-embed.h
@@ -44,27 +44,6 @@ int remote_mips_remove_watchpoint PARAMS ((CORE_ADDR addr, int len, int type));
#define STOPPED_BY_WATCHPOINT(w) remote_mips_stopped_by_watchpoint ()
-/* start-sanitize-gm */
-#ifdef GENERAL_MAGIC
-
-#include "tm-magic.h" /* Include generic stuff */
-
-/* For some reason GM can't hack this... */
-
-#undef GET_LONGJMP_TARGET
-
-#define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) \
- (1 == 1) /* We allow all types of hardware watchpoints */
-
-#define FLUSH_CACHED_MEMORY() flush_cached_memory()
-
-#else
-/* end-sanitize-gm */
-
#define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) \
remote_mips_can_use_hardware_watchpoint(cnt)
int remote_mips_can_use_hardware_watchpoint PARAMS ((int cnt));
-
-/* start-sanitize-gm */
-#endif /* GENERAL_MAGIC */
-/* end-sanitize-gm */
diff --git a/gdb/config/mips/tm-irix5.h b/gdb/config/mips/tm-irix5.h
index c8c6a49..d70afd5 100644
--- a/gdb/config/mips/tm-irix5.h
+++ b/gdb/config/mips/tm-irix5.h
@@ -42,9 +42,3 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#undef SIGFRAME_FPREGSAVE_OFF
#define SIGFRAME_FPREGSAVE_OFF (SIGFRAME_BASE + 2 * 4 + 8 + 32 * 8 + 4)
#define SIGFRAME_REG_SIZE 8
-
-/* start-sanitize-gm */
-#ifdef GENERAL_MAGIC
-#include "tm-magic.h"
-#endif /* GENERAL_MAGIC */
-/* end-sanitize-gm */
diff --git a/gdb/config/mips/tm-r3900.h b/gdb/config/mips/tm-r3900.h
index 17ba87b..47bcfb5 100644
--- a/gdb/config/mips/tm-r3900.h
+++ b/gdb/config/mips/tm-r3900.h
@@ -22,39 +22,3 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#undef DEFAULT_MIPS_TYPE
#define DEFAULT_MIPS_TYPE "r3051"
-
-/* start-sanitize-gm */
-#ifdef GENERAL_MAGIC
-
-#include "tm-magic.h" /* Include generic stuff */
-
-/* For some reason GM can't hack this... */
-
-#undef GET_LONGJMP_TARGET
-
-/* Watchpoint support */
-
-#define TARGET_HAS_HARDWARE_WATCHPOINTS
-
-#define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) \
- (1 == 1) /* We allow all types of hardware watchpoints */
-
-/* Use these macros for watchpoint insertion/deletion. */
-/* type can be 0: write watch, 1: read watch, 2: access watch (read/write) */
-
-#define target_insert_watchpoint(addr, len, type) \
- remote_mips_set_watchpoint (addr, len, type)
-
-#define target_remove_watchpoint(addr, len, type) \
- remote_mips_remove_watchpoint (addr, len, type)
-
-/* We need to remove watchpoints when stepping, else we hit them again! */
-
-#define HAVE_NONSTEPPABLE_WATCHPOINT
-
-#define STOPPED_BY_WATCHPOINT(w) remote_mips_stopped_by_watchpoint ()
-
-#define FLUSH_CACHED_MEMORY() flush_cached_memory()
-
-#endif /* GENERAL_MAGIC */
-/* end-sanitize-gm */