]> git.saurik.com Git - apple/xnu.git/blob - osfmk/kern/ast.c
xnu-1699.22.73.tar.gz
[apple/xnu.git] / osfmk / kern / ast.c
1 /*
2 * Copyright (c) 2000-2009 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /*
29 * @OSF_COPYRIGHT@
30 */
31 /*
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
34 * All Rights Reserved.
35 *
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
41 *
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 *
46 * Carnegie Mellon requests users of this software to return to
47 *
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
52 *
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56 /*
57 */
58
59 /*
60 *
61 * This file contains routines to check whether an ast is needed.
62 *
63 * ast_check() - check whether ast is needed for interrupt or context
64 * switch. Usually called by clock interrupt handler.
65 *
66 */
67
68 #include <cputypes.h>
69 #include <platforms.h>
70
71 #include <kern/ast.h>
72 #include <kern/counters.h>
73 #include <kern/cpu_number.h>
74 #include <kern/misc_protos.h>
75 #include <kern/queue.h>
76 #include <kern/sched_prim.h>
77 #include <kern/thread.h>
78 #include <kern/processor.h>
79 #include <kern/spl.h>
80 #include <kern/wait_queue.h>
81 #include <mach/policy.h>
82 #include <machine/trap.h> // for CHUD AST hook
83 #include <machine/pal_routines.h>
84
85
86 volatile perfASTCallback perfASTHook;
87
88
89 void
90 ast_init(void)
91 {
92 }
93
94 /*
95 * Called at splsched.
96 */
97 void
98 ast_taken(
99 ast_t reasons,
100 boolean_t enable
101 )
102 {
103 boolean_t preempt_trap = (reasons == AST_PREEMPTION);
104 ast_t *myast = ast_pending();
105 thread_t thread = current_thread();
106 perfASTCallback perf_hook = perfASTHook;
107
108 /*
109 * CHUD hook - all threads including idle processor threads
110 */
111 if (perf_hook) {
112 if (*myast & AST_CHUD_ALL) {
113 (*perf_hook)(reasons, myast);
114
115 if (*myast == AST_NONE)
116 return;
117 }
118 }
119 else
120 *myast &= ~AST_CHUD_ALL;
121
122 reasons &= *myast;
123 *myast &= ~reasons;
124
125 /*
126 * Handle ASTs for all threads
127 * except idle processor threads.
128 */
129 if (!(thread->state & TH_IDLE)) {
130 /*
131 * Check for urgent preemption.
132 */
133 if ( (reasons & AST_URGENT) &&
134 wait_queue_assert_possible(thread) ) {
135 if (reasons & AST_PREEMPT) {
136 counter(c_ast_taken_block++);
137 thread_block_reason(THREAD_CONTINUE_NULL, NULL,
138 AST_PREEMPT | AST_URGENT);
139 }
140
141 reasons &= ~AST_PREEMPTION;
142 }
143
144 /*
145 * The kernel preempt traps
146 * skip all other ASTs.
147 */
148 if (!preempt_trap) {
149 ml_set_interrupts_enabled(enable);
150
151 #ifdef MACH_BSD
152 /*
153 * Handle BSD hook.
154 */
155 if (reasons & AST_BSD) {
156 thread_ast_clear(thread, AST_BSD);
157 bsd_ast(thread);
158 }
159 #endif
160
161 /*
162 * Thread APC hook.
163 */
164 if (reasons & AST_APC)
165 act_execute_returnhandlers();
166
167 ml_set_interrupts_enabled(FALSE);
168
169 /*
170 * Check for preemption.
171 */
172 if (reasons & AST_PREEMPT)
173 reasons = csw_check(current_processor());
174
175 if ( (reasons & AST_PREEMPT) &&
176 wait_queue_assert_possible(thread) ) {
177 counter(c_ast_taken_block++);
178 thread_block_reason((thread_continue_t)thread_exception_return, NULL, AST_PREEMPT);
179 }
180 }
181 }
182
183 ml_set_interrupts_enabled(enable);
184 }
185
186 /*
187 * Called at splsched.
188 */
189 void
190 ast_check(
191 processor_t processor)
192 {
193 thread_t thread = processor->active_thread;
194
195 processor->current_pri = thread->sched_pri;
196 processor->current_thmode = thread->sched_mode;
197 if ( processor->state == PROCESSOR_RUNNING ||
198 processor->state == PROCESSOR_SHUTDOWN ) {
199 ast_t preempt;
200
201 /*
202 * Propagate thread ast to processor.
203 */
204 pal_ast_check(thread);
205
206 ast_propagate(thread->ast);
207
208 /*
209 * Context switch check.
210 */
211 if ((preempt = csw_check(processor)) != AST_NONE)
212 ast_on(preempt);
213 }
214 }