]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
6601e61a | 4 | * @APPLE_LICENSE_HEADER_START@ |
1c79356b | 5 | * |
6601e61a A |
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. | |
8f6c56a5 | 11 | * |
6601e61a A |
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 | |
8f6c56a5 A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
6601e61a A |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
8f6c56a5 | 19 | * |
6601e61a | 20 | * @APPLE_LICENSE_HEADER_END@ |
1c79356b A |
21 | */ |
22 | /* | |
23 | * @OSF_COPYRIGHT@ | |
24 | */ | |
25 | /* | |
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. | |
29 | * | |
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.'' | |
37 | * | |
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. | |
41 | * | |
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. | |
44 | * | |
45 | * Utah $Hdr: $ | |
46 | */ | |
47 | ||
48 | #ifndef _MACH_PPC_EXCEPTION_H_ | |
49 | #define _MACH_PPC_EXCEPTION_H_ | |
50 | ||
1c79356b A |
51 | #define EXC_TYPES_COUNT 10 /* incl. illegal exception 0 */ |
52 | ||
53 | #define EXCEPTION_CODE_MAX 2 /* elements in vector (code+subcode) */ | |
54 | /* | |
55 | * EXC_BAD_INSTRUCTION | |
56 | */ | |
57 | ||
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 */ | |
55e303ae | 63 | #define EXC_PPC_PERFMON 6 /* performance monitor */ |
1c79356b A |
64 | |
65 | /* | |
66 | * EXC_BAD_ACCESS | |
67 | * Note: do not conflict with kern_return_t values returned by vm_fault | |
68 | */ | |
69 | ||
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 */ | |
73 | ||
74 | /* | |
75 | * EXC_ARITHMETIC | |
76 | */ | |
77 | ||
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 */ | |
85 | ||
86 | /* | |
87 | * EXC_PPC_NOEMULATION should go away when we add software emulation | |
88 | * for floating point. Right now we don't support this. | |
89 | */ | |
90 | ||
91 | #define EXC_PPC_NOEMULATION 8 /* no floating point emulation */ | |
92 | #define EXC_PPC_ALTIVECASSIST 9 /* Altivec Denorm Assist */ | |
93 | ||
94 | /* | |
95 | * EXC_SOFTWARE | |
9bccf70c | 96 | * Note: 0x10000-0x10003 in use for unix signal |
1c79356b A |
97 | */ |
98 | #define EXC_PPC_TRAP 1 /* Program trap */ | |
99 | #define EXC_PPC_MIGRATE 0x10100 /* Time to bolt */ | |
100 | ||
101 | ||
102 | /* | |
103 | * EXC_BREAKPOINT | |
104 | */ | |
105 | ||
106 | #define EXC_PPC_BREAKPOINT EXC_PPC_TRAP /* breakpoint trap */ | |
107 | ||
108 | /* | |
109 | * machine dependent exception masks | |
110 | */ | |
111 | #define EXC_MASK_MACHINE 0 | |
112 | ||
113 | #endif /* _MACH_PPC_EXCEPTION_H_ */ |