]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
5ba3f43e | 2 | * Copyright (c) 2007 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
5ba3f43e | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
5ba3f43e | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
5ba3f43e | 17 | * |
2d21ac55 A |
18 | * The Original Code and all software distributed under the License are |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
5ba3f43e | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b | 27 | */ |
91447636 | 28 | /* |
5ba3f43e | 29 | * @OSF_COPYRIGHT@ |
91447636 | 30 | */ |
91447636 | 31 | |
0a7de745 | 32 | /* |
5ba3f43e A |
33 | * Mach Operating System |
34 | * Copyright (c) 1991,1990,1989 Carnegie Mellon University | |
35 | * All Rights Reserved. | |
0a7de745 | 36 | * |
5ba3f43e A |
37 | * Permission to use, copy, modify and distribute this software and its |
38 | * documentation is hereby granted, provided that both the copyright | |
39 | * notice and this permission notice appear in all copies of the | |
40 | * software, derivative works or modified versions, and any portions | |
41 | * thereof, and that both notices appear in supporting documentation. | |
0a7de745 | 42 | * |
5ba3f43e A |
43 | * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" |
44 | * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR | |
45 | * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. | |
0a7de745 | 46 | * |
5ba3f43e | 47 | * Carnegie Mellon requests users of this software to return to |
0a7de745 | 48 | * |
5ba3f43e A |
49 | * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU |
50 | * School of Computer Science | |
51 | * Carnegie Mellon University | |
52 | * Pittsburgh PA 15213-3890 | |
0a7de745 | 53 | * |
5ba3f43e A |
54 | * any improvements or extensions that they make and grant Carnegie Mellon |
55 | * the rights to redistribute these changes. | |
56 | */ | |
b0d623f7 | 57 | |
5ba3f43e | 58 | /* |
f427ee49 | 59 | * Machine dependent task fields |
5ba3f43e | 60 | */ |
1c79356b | 61 | |
f427ee49 A |
62 | #ifdef MACH_KERNEL_PRIVATE |
63 | /* Provide access to target-specific defintions which may be used by | |
64 | * consuming code, e.g. HYPERVISOR. */ | |
65 | #include <arm/proc_reg.h> | |
66 | #endif | |
67 | ||
68 | ||
cb323159 | 69 | #if defined(HAS_APPLE_PAC) |
f427ee49 | 70 | #define TASK_ADDITIONS_PAC \ |
cb323159 | 71 | uint64_t rop_pid; \ |
f427ee49 A |
72 | uint64_t jop_pid; \ |
73 | uint8_t disable_user_jop; | |
cb323159 | 74 | #else |
f427ee49 | 75 | #define TASK_ADDITIONS_PAC |
cb323159 | 76 | #endif |
f427ee49 A |
77 | |
78 | ||
79 | ||
c3c9b80d | 80 | #define TASK_ADDITIONS_UEXC uint64_t uexc[4]; |
f427ee49 A |
81 | |
82 | #define MACHINE_TASK \ | |
83 | void* task_debug; \ | |
84 | TASK_ADDITIONS_PAC \ | |
c3c9b80d A |
85 | \ |
86 | TASK_ADDITIONS_UEXC |