]> git.saurik.com Git - apple/xnu.git/blob - osfmk/kern/processor_data.h
eda5bcce590b5876ca453d784fd25bbd640d6b86
[apple/xnu.git] / osfmk / kern / processor_data.h
1 /*
2 * Copyright (c) 2003-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 * Machine independent per processor data.
30 */
31
32 #ifndef _KERN_PROCESSOR_DATA_H_
33 #define _KERN_PROCESSOR_DATA_H_
34
35 /*
36 * #include kern/processor.h instead of this file.
37 */
38
39 #ifdef MACH_KERNEL_PRIVATE
40
41 #include <ipc/ipc_kmsg.h>
42 #include <kern/timer.h>
43
44 struct processor_sched_statistics {
45 uint32_t csw_count;
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;
51 uint32_t ipi_count;
52 uint32_t timer_pop_count;
53 uint32_t idle_transitions;
54 };
55
56 struct processor_data {
57 /* Processor state statistics */
58 timer_data_t idle_state;
59 timer_data_t system_state;
60 timer_data_t user_state;
61
62 timer_t current_state;
63
64 /* Thread execution timers */
65 timer_t thread_timer;
66 timer_t kernel_timer;
67
68 /* Kernel stack cache */
69 struct stack_cache {
70 vm_offset_t free;
71 unsigned int count;
72 } stack_cache;
73
74 /* VM event counters */
75 vm_statistics64_data_t vm_stat;
76
77 /* IPC free message cache */
78 struct ikm_cache {
79 #define IKM_STASH 16
80 ipc_kmsg_t entries[IKM_STASH];
81 unsigned int avail;
82 } ikm_cache;
83
84 unsigned long page_grab_count;
85 int start_color;
86 void *free_pages;
87
88 struct processor_sched_statistics sched_stats;
89 };
90
91 typedef struct processor_data processor_data_t;
92
93 #define PROCESSOR_DATA(processor, member) \
94 (processor)->processor_data.member
95
96 extern void processor_data_init(
97 processor_t processor);
98
99 #define SCHED_STATS_INTERRUPT(p) \
100 MACRO_BEGIN \
101 if (__builtin_expect(sched_stats_active, 0)) { \
102 (p)->processor_data.sched_stats.interrupt_count++; \
103 } \
104 MACRO_END
105
106 #define SCHED_STATS_TIMER_POP(p) \
107 MACRO_BEGIN \
108 if (__builtin_expect(sched_stats_active, 0)) { \
109 (p)->processor_data.sched_stats.timer_pop_count++; \
110 } \
111 MACRO_END
112
113 #define SCHED_STATS_IPI(p) \
114 MACRO_BEGIN \
115 if (__builtin_expect(sched_stats_active, 0)) { \
116 (p)->processor_data.sched_stats.ipi_count++; \
117 } \
118 MACRO_END
119
120 #define SCHED_STATS_CPU_IDLE_START(p) \
121 MACRO_BEGIN \
122 if (__builtin_expect(sched_stats_active, 0)) { \
123 (p)->processor_data.sched_stats.idle_transitions++; \
124 } \
125 MACRO_END
126
127 #endif /* MACH_KERNEL_PRIVATE */
128
129 #endif /* _KERN_PROCESSOR_DATA_H_ */