2 * Copyright (c) 2003-2009 Apple 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@
29 * Machine independent per processor data.
32 #ifndef _KERN_PROCESSOR_DATA_H_
33 #define _KERN_PROCESSOR_DATA_H_
36 * #include kern/processor.h instead of this file.
39 #ifdef MACH_KERNEL_PRIVATE
41 #include <ipc/ipc_kmsg.h>
42 #include <kern/timer.h>
44 struct processor_sched_statistics
{
46 uint32_t preempt_count
;
47 uint32_t preempted_rt_count
;
48 uint32_t preempted_by_rt_count
;
49 uint32_t rt_sched_count
;
50 uint32_t interrupt_count
;
52 uint32_t timer_pop_count
;
53 uint32_t idle_transitions
;
54 uint32_t quantum_timer_expirations
;
57 struct processor_data
{
58 /* Processor state statistics */
59 timer_data_t idle_state
;
60 timer_data_t system_state
;
61 timer_data_t user_state
;
63 timer_t current_state
; /* points to processor's idle, system, or user state timer */
65 /* Thread execution timers */
66 timer_t thread_timer
; /* points to current thread's user or system timer */
67 timer_t kernel_timer
; /* points to current thread's system_timer */
69 /* Kernel stack cache */
75 /* VM event counters */
76 vm_statistics64_data_t vm_stat
;
78 /* IPC free message cache */
81 ipc_kmsg_t entries
[IKM_STASH
];
85 /* waitq prepost cache */
86 #define WQP_CACHE_MAX 50
93 unsigned long page_grab_count
;
95 struct processor_sched_statistics sched_stats
;
96 uint64_t timer_call_ttd
; /* current timer call time-to-deadline */
97 uint64_t wakeups_issued_total
; /* Count of thread wakeups issued
102 typedef struct processor_data processor_data_t
;
104 #define PROCESSOR_DATA(processor, member) \
105 (processor)->processor_data.member
107 extern void processor_data_init(
108 processor_t processor
);
110 #define SCHED_STATS_INTERRUPT(p) \
112 if (__builtin_expect(sched_stats_active, 0)) { \
113 (p)->processor_data.sched_stats.interrupt_count++; \
117 #define SCHED_STATS_TIMER_POP(p) \
119 if (__builtin_expect(sched_stats_active, 0)) { \
120 (p)->processor_data.sched_stats.timer_pop_count++; \
124 #define SCHED_STATS_IPI(p) \
126 if (__builtin_expect(sched_stats_active, 0)) { \
127 (p)->processor_data.sched_stats.ipi_count++; \
131 #define SCHED_STATS_CPU_IDLE_START(p) \
133 if (__builtin_expect(sched_stats_active, 0)) { \
134 (p)->processor_data.sched_stats.idle_transitions++; \
138 #define SCHED_STATS_QUANTUM_TIMER_EXPIRATION(p) \
140 if (__builtin_expect(sched_stats_active, 0)) { \
141 (p)->processor_data.sched_stats.quantum_timer_expirations++; \
145 #endif /* MACH_KERNEL_PRIVATE */
147 #endif /* _KERN_PROCESSOR_DATA_H_ */