2 * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
34 * All Rights Reserved.
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.
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.
46 * Carnegie Mellon requests users of this software to return to
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
59 #include <mach/boolean.h>
60 #include <mach/thread_switch.h>
61 #include <ipc/ipc_port.h>
62 #include <ipc/ipc_space.h>
63 #include <kern/counters.h>
64 #include <kern/ipc_kobject.h>
65 #include <kern/processor.h>
66 #include <kern/sched.h>
67 #include <kern/sched_prim.h>
69 #include <kern/task.h>
70 #include <kern/thread.h>
71 #include <mach/policy.h>
73 #include <kern/syscall_subr.h>
74 #include <mach/mach_host_server.h>
75 #include <mach/mach_syscalls.h>
78 * swtch and swtch_pri both attempt to context switch (logic in
79 * thread_block no-ops the context switch if nothing would happen).
80 * A boolean is returned that indicates whether there is anything
83 * This boolean can be used by a thread waiting on a
84 * lock or condition: If FALSE is returned, the thread is justified
85 * in becoming a resource hog by continuing to spin because there's
86 * nothing else useful that the processor could do. If TRUE is
87 * returned, the thread should make one more check on the
88 * lock and then be a good citizen and really suspend.
94 register processor_t myprocessor
;
98 myprocessor
= current_processor();
99 result
= myprocessor
->runq
.count
> 0 ||
100 myprocessor
->processor_set
->runq
.count
> 0;
103 thread_syscall_return(result
);
109 __unused
struct swtch_args
*args
)
111 register processor_t myprocessor
;
114 disable_preemption();
115 myprocessor
= current_processor();
116 if ( myprocessor
->runq
.count
== 0 &&
117 myprocessor
->processor_set
->runq
.count
== 0 ) {
118 mp_enable_preemption();
124 counter(c_swtch_block
++);
126 thread_block_reason((thread_continue_t
)swtch_continue
, NULL
, AST_YIELD
);
128 disable_preemption();
129 myprocessor
= current_processor();
130 result
= myprocessor
->runq
.count
> 0 ||
131 myprocessor
->processor_set
->runq
.count
> 0;
138 swtch_pri_continue(void)
140 register processor_t myprocessor
;
143 thread_depress_abort_internal(current_thread());
145 disable_preemption();
146 myprocessor
= current_processor();
147 result
= myprocessor
->runq
.count
> 0 ||
148 myprocessor
->processor_set
->runq
.count
> 0;
149 mp_enable_preemption();
151 thread_syscall_return(result
);
157 __unused
struct swtch_pri_args
*args
)
159 register processor_t myprocessor
;
162 disable_preemption();
163 myprocessor
= current_processor();
164 if ( myprocessor
->runq
.count
== 0 &&
165 myprocessor
->processor_set
->runq
.count
== 0 ) {
166 mp_enable_preemption();
172 counter(c_swtch_pri_block
++);
174 thread_depress_abstime(std_quantum
);
176 thread_block_reason((thread_continue_t
)swtch_pri_continue
, NULL
, AST_YIELD
);
178 thread_depress_abort_internal(current_thread());
180 disable_preemption();
181 myprocessor
= current_processor();
182 result
= myprocessor
->runq
.count
> 0 ||
183 myprocessor
->processor_set
->runq
.count
> 0;
190 thread_switch_continue(void)
192 register thread_t self
= current_thread();
193 int option
= self
->saved
.swtch
.option
;
195 if (option
== SWITCH_OPTION_DEPRESS
)
196 thread_depress_abort_internal(self
);
198 thread_syscall_return(KERN_SUCCESS
);
205 * Context switch. User may supply thread hint.
209 struct thread_switch_args
*args
)
211 register thread_t thread
, self
= current_thread();
212 mach_port_name_t thread_name
= args
->thread_name
;
213 int option
= args
->option
;
214 mach_msg_timeout_t option_time
= args
->option_time
;
221 case SWITCH_OPTION_NONE
:
222 case SWITCH_OPTION_DEPRESS
:
223 case SWITCH_OPTION_WAIT
:
227 return (KERN_INVALID_ARGUMENT
);
231 * Translate the port name if supplied.
233 if (thread_name
!= MACH_PORT_NULL
) {
236 if (ipc_port_translate_send(self
->task
->itk_space
,
237 thread_name
, &port
) == KERN_SUCCESS
) {
241 thread
= convert_port_to_thread(port
);
242 ipc_port_release(port
);
244 if (thread
== self
) {
245 thread_deallocate_internal(thread
);
246 thread
= THREAD_NULL
;
250 thread
= THREAD_NULL
;
253 thread
= THREAD_NULL
;
256 * Try to handoff if supplied.
258 if (thread
!= THREAD_NULL
) {
259 processor_t processor
;
266 * Check if the thread is in the right pset,
267 * is not bound to a different processor,
268 * and that realtime is not involved.
270 * Next, pull it off its run queue. If it
271 * doesn't come, it's not eligible.
273 processor
= current_processor();
274 if (processor
->current_pri
< BASEPRI_RTQUEUES
&&
275 thread
->sched_pri
< BASEPRI_RTQUEUES
&&
276 thread
->processor_set
== processor
->processor_set
&&
277 (thread
->bound_processor
== PROCESSOR_NULL
||
278 thread
->bound_processor
== processor
) &&
279 run_queue_remove(thread
) != RUN_QUEUE_NULL
) {
283 thread_unlock(thread
);
285 thread_deallocate_internal(thread
);
287 if (option
== SWITCH_OPTION_WAIT
)
288 assert_wait_timeout((event_t
)assert_wait_timeout
, THREAD_ABORTSAFE
,
289 option_time
, 1000*NSEC_PER_USEC
);
291 if (option
== SWITCH_OPTION_DEPRESS
)
292 thread_depress_ms(option_time
);
294 self
->saved
.swtch
.option
= option
;
296 thread_run(self
, (thread_continue_t
)thread_switch_continue
, NULL
, thread
);
300 thread_unlock(thread
);
303 thread_deallocate(thread
);
306 if (option
== SWITCH_OPTION_WAIT
)
307 assert_wait_timeout((event_t
)assert_wait_timeout
, THREAD_ABORTSAFE
, option_time
, 1000*NSEC_PER_USEC
);
309 if (option
== SWITCH_OPTION_DEPRESS
)
310 thread_depress_ms(option_time
);
312 self
->saved
.swtch
.option
= option
;
314 thread_block_reason((thread_continue_t
)thread_switch_continue
, NULL
, AST_YIELD
);
316 if (option
== SWITCH_OPTION_DEPRESS
)
317 thread_depress_abort_internal(self
);
319 return (KERN_SUCCESS
);
323 * Depress thread's priority to lowest possible for the specified interval,
324 * with a value of zero resulting in no timeout being scheduled.
327 thread_depress_abstime(
330 register thread_t self
= current_thread();
336 if (!(self
->sched_mode
& TH_MODE_ISDEPRESSED
)) {
337 processor_t myprocessor
= self
->last_processor
;
339 self
->sched_pri
= DEPRESSPRI
;
340 myprocessor
->current_pri
= self
->sched_pri
;
341 self
->sched_mode
&= ~TH_MODE_PREEMPT
;
342 self
->sched_mode
|= TH_MODE_DEPRESS
;
345 clock_absolutetime_interval_to_deadline(interval
, &deadline
);
346 if (!timer_call_enter(&self
->depress_timer
, deadline
))
347 self
->depress_timer_active
++;
356 mach_msg_timeout_t interval
)
360 clock_interval_to_absolutetime_interval(
361 interval
, 1000*NSEC_PER_USEC
, &abstime
);
362 thread_depress_abstime(abstime
);
366 * Priority depression expiration.
369 thread_depress_expire(
373 thread_t thread
= p0
;
378 if (--thread
->depress_timer_active
== 0) {
379 thread
->sched_mode
&= ~TH_MODE_ISDEPRESSED
;
380 compute_priority(thread
, FALSE
);
382 thread_unlock(thread
);
387 * Prematurely abort priority depression if there is one.
390 thread_depress_abort_internal(
393 kern_return_t result
= KERN_NOT_DEPRESSED
;
398 if (!(thread
->sched_mode
& TH_MODE_POLLDEPRESS
)) {
399 if (thread
->sched_mode
& TH_MODE_ISDEPRESSED
) {
400 thread
->sched_mode
&= ~TH_MODE_ISDEPRESSED
;
401 compute_priority(thread
, FALSE
);
402 result
= KERN_SUCCESS
;
405 if (timer_call_cancel(&thread
->depress_timer
))
406 thread
->depress_timer_active
--;
408 thread_unlock(thread
);
420 assert(self
== current_thread());
423 if (!(self
->sched_mode
& (TH_MODE_REALTIME
|TH_MODE_TIMESHARE
))) {
424 uint64_t total_computation
, abstime
;
426 abstime
= mach_absolute_time();
427 total_computation
= abstime
- self
->computation_epoch
;
428 total_computation
+= self
->computation_metered
;
429 if (total_computation
>= max_poll_computation
) {
430 processor_t myprocessor
= current_processor();
434 if (!(self
->sched_mode
& TH_MODE_ISDEPRESSED
)) {
435 self
->sched_pri
= DEPRESSPRI
;
436 myprocessor
->current_pri
= self
->sched_pri
;
437 self
->sched_mode
&= ~TH_MODE_PREEMPT
;
439 self
->computation_epoch
= abstime
;
440 self
->computation_metered
= 0;
441 self
->sched_mode
|= TH_MODE_POLLDEPRESS
;
443 abstime
+= (total_computation
>> sched_poll_yield_shift
);
444 if (!timer_call_enter(&self
->depress_timer
, abstime
))
445 self
->depress_timer_active
++;
448 if ((preempt
= csw_check(self
, myprocessor
)) != AST_NONE
)