aboutsummaryrefslogtreecommitdiff
path: root/sys/sparc64/include/db_machdep.h
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2020-02-03 17:35:11 +0000
committerWarner Losh <imp@FreeBSD.org>2020-02-03 17:35:11 +0000
commit58aa35d42975c298ca0adba705c042596303c9f5 (patch)
tree2558d2b720cda9c2799970cabc266e2ce4e3a8d3 /sys/sparc64/include/db_machdep.h
parenteb24e1491f9900e922c78e53af588f22a3e9535f (diff)
Remove sparc64 kernel support
Remove all sparc64 specific files Remove all sparc64 ifdefs Removee indireeect sparc64 ifdefs
Notes
Notes: svn path=/head/; revision=357455
Diffstat (limited to 'sys/sparc64/include/db_machdep.h')
-rw-r--r--sys/sparc64/include/db_machdep.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/sys/sparc64/include/db_machdep.h b/sys/sparc64/include/db_machdep.h
deleted file mode 100644
index 73d737c739c4..000000000000
--- a/sys/sparc64/include/db_machdep.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*-
- * Mach Operating System
- * Copyright (c) 1991,1990 Carnegie Mellon University
- * All Rights Reserved.
- *
- * Permission to use, copy, modify and distribute this software and its
- * documentation is hereby granted, provided that both the copyright
- * notice and this permission notice appear in all copies of the
- * software, derivative works or modified versions, and any portions
- * thereof, and that both notices appear in supporting documentation.
- *
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
- * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
- * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
- * Carnegie Mellon requests users of this software to return to
- *
- * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
- * School of Computer Science
- * Carnegie Mellon University
- * Pittsburgh PA 15213-3890
- *
- * any improvements or extensions that they make and grant Carnegie Mellon
- * the rights to redistribute these changes.
- *
- * from: FreeBSD: src/sys/i386/include/db_machdep.h,v 1.16 1999/10/04
- * $FreeBSD$
- */
-
-#ifndef _MACHINE_DB_MACHDEP_H_
-#define _MACHINE_DB_MACHDEP_H_
-
-#include <machine/frame.h>
-#include <machine/trap.h>
-
-typedef vm_offset_t db_addr_t;
-typedef long db_expr_t;
-
-#define PC_REGS() ((db_addr_t)kdb_thrctx->pcb_pc)
-
-#define BKPT_INST (0x91d03001)
-#define BKPT_SIZE (4)
-#define BKPT_SET(inst) (BKPT_INST)
-
-#define BKPT_SKIP do { \
- kdb_frame->tf_tpc = kdb_frame->tf_tnpc + 4; \
- kdb_frame->tf_tnpc += 8; \
-} while (0)
-
-#define db_clear_single_step kdb_cpu_clear_singlestep
-#define db_set_single_step kdb_cpu_set_singlestep
-
-#define IS_BREAKPOINT_TRAP(type, code) (type == T_BREAKPOINT)
-#define IS_WATCHPOINT_TRAP(type, code) (0)
-
-#define inst_trap_return(ins) (0)
-#define inst_return(ins) (0)
-#define inst_call(ins) (0)
-#define inst_load(ins) (0)
-#define inst_store(ins) (0)
-
-#define DB_ELFSIZE 64
-
-#endif /* !_MACHINE_DB_MACHDEP_H_ */