]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/mach/ppc/exception.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1990, 1991, 1992, The University of Utah and
27 * the Center for Software Science at the University of Utah (CSS).
28 * All rights reserved.
30 * Permission to use, copy, modify and distribute this software is hereby
31 * granted provided that (1) source code retains these copyright, permission,
32 * and disclaimer notices, and (2) redistributions including binaries
33 * reproduce the notices in supporting documentation, and (3) all advertising
34 * materials mentioning features or use of this software display the following
35 * acknowledgement: ``This product includes software developed by the Center
36 * for Software Science at the University of Utah.''
38 * THE UNIVERSITY OF UTAH AND CSS ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS
39 * IS" CONDITION. THE UNIVERSITY OF UTAH AND CSS DISCLAIM ANY LIABILITY OF
40 * ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
42 * CSS requests users of this software to return to css-dist@cs.utah.edu any
43 * improvements that they make and grant CSS redistribution rights.
48 #ifndef _MACH_PPC_EXCEPTION_H_
49 #define _MACH_PPC_EXCEPTION_H_
51 #define EXC_TYPES_COUNT 10 /* incl. illegal exception 0 */
53 #define EXCEPTION_CODE_MAX 2 /* elements in vector (code+subcode) */
58 #define EXC_PPC_INVALID_SYSCALL 1 /* invalid syscall number */
59 #define EXC_PPC_UNIPL_INST 2 /* unimplemented instruction */
60 #define EXC_PPC_PRIVINST 3 /* priviledged instruction */
61 #define EXC_PPC_PRIVREG 4 /* priviledged register */
62 #define EXC_PPC_TRACE 5 /* trace/single-step */
63 #define EXC_PPC_PERFMON 6 /* performance monitor */
67 * Note: do not conflict with kern_return_t values returned by vm_fault
70 #define EXC_PPC_VM_PROT_READ 0x101 /* error reading syscall args */
71 #define EXC_PPC_BADSPACE 0x102 /* bad space referenced */
72 #define EXC_PPC_UNALIGNED 0x103 /* unaligned data reference */
78 #define EXC_PPC_OVERFLOW 1 /* integer overflow */
79 #define EXC_PPC_ZERO_DIVIDE 2 /* integer divide by zero */
80 #define EXC_PPC_FLT_INEXACT 3 /* IEEE inexact exception */
81 #define EXC_PPC_FLT_ZERO_DIVIDE 4 /* IEEE zero divide */
82 #define EXC_PPC_FLT_UNDERFLOW 5 /* IEEE floating underflow */
83 #define EXC_PPC_FLT_OVERFLOW 6 /* IEEE floating overflow */
84 #define EXC_PPC_FLT_NOT_A_NUMBER 7 /* IEEE not a number */
87 * EXC_PPC_NOEMULATION should go away when we add software emulation
88 * for floating point. Right now we don't support this.
91 #define EXC_PPC_NOEMULATION 8 /* no floating point emulation */
92 #define EXC_PPC_ALTIVECASSIST 9 /* Altivec Denorm Assist */
96 * Note: 0x10000-0x10003 in use for unix signal
98 #define EXC_PPC_TRAP 1 /* Program trap */
99 #define EXC_PPC_MIGRATE 0x10100 /* Time to bolt */
106 #define EXC_PPC_BREAKPOINT EXC_PPC_TRAP /* breakpoint trap */
109 * machine dependent exception masks
111 #define EXC_MASK_MACHINE 0
113 #endif /* _MACH_PPC_EXCEPTION_H_ */