c218815337
Boundary Trace to assembly to reduce the overhead of these checks. Submitted by: Howard Su <howard0su@gmail.com> Relnotes: Yes Differential Revision: https://reviews.freebsd.org/D4266
12 lines
338 B
C
12 lines
338 B
C
/* $NetBSD: trap.h,v 1.1 2001/02/23 03:48:19 ichiro Exp $ */
|
|
/* $FreeBSD$ */
|
|
|
|
#ifndef _MACHINE_TRAP_H_
|
|
#define _MACHINE_TRAP_H_
|
|
#define GDB_BREAKPOINT 0xe6000011
|
|
#define GDB5_BREAKPOINT 0xe7ffdefe
|
|
#define PTRACE_BREAKPOINT 0xe7fffff0
|
|
#define KERNEL_BREAKPOINT 0xe7ffffff
|
|
#define FBT_BREAKPOINT 0xe7f000f0
|
|
#endif /* _MACHINE_TRAP_H_ */
|