]> git.saurik.com Git - apple/xnu.git/blame - osfmk/mach/vm_statistics.h
xnu-3248.60.10.tar.gz
[apple/xnu.git] / osfmk / mach / vm_statistics.h
CommitLineData
1c79356b 1/*
b0d623f7 2 * Copyright (c) 2000-2009 Apple Inc. All rights reserved.
1c79356b 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
8f6c56a5 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.
8f6c56a5 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.
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
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.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
29 * @OSF_COPYRIGHT@
30 */
1c79356b
A
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 * File: mach/vm_statistics.h
60 * Author: Avadis Tevanian, Jr., Michael Wayne Young, David Golub
61 *
62 * Virtual memory statistics structure.
63 *
64 */
65
91447636
A
66#ifndef _MACH_VM_STATISTICS_H_
67#define _MACH_VM_STATISTICS_H_
1c79356b
A
68
69#include <mach/machine/vm_types.h>
70
b0d623f7
A
71
72/*
73 * vm_statistics
74 *
75 * History:
76 * rev0 - original structure.
77 * rev1 - added purgable info (purgable_count and purges).
78 * rev2 - added speculative_count.
79 *
80 * Note: you cannot add any new fields to this structure. Add them below in
81 * vm_statistics64.
82 */
83
1c79356b 84struct vm_statistics {
91447636
A
85 natural_t free_count; /* # of pages free */
86 natural_t active_count; /* # of pages active */
87 natural_t inactive_count; /* # of pages inactive */
88 natural_t wire_count; /* # of pages wired down */
89 natural_t zero_fill_count; /* # of zero fill pages */
90 natural_t reactivations; /* # of pages reactivated */
91 natural_t pageins; /* # of pageins */
92 natural_t pageouts; /* # of pageouts */
93 natural_t faults; /* # of faults */
94 natural_t cow_faults; /* # of copy-on-writes */
95 natural_t lookups; /* object cache lookups */
96 natural_t hits; /* object cache hits */
97
2d21ac55 98 /* added for rev1 */
91447636
A
99 natural_t purgeable_count; /* # of pages purgeable */
100 natural_t purges; /* # of pages purged */
2d21ac55
A
101
102 /* added for rev2 */
103 /*
104 * NB: speculative pages are already accounted for in "free_count",
105 * so "speculative_count" is the number of "free" pages that are
106 * used to hold data that was read speculatively from disk but
107 * haven't actually been used by anyone so far.
108 */
109 natural_t speculative_count; /* # of pages speculative */
1c79356b
A
110};
111
b0d623f7 112/* Used by all architectures */
1c79356b
A
113typedef struct vm_statistics *vm_statistics_t;
114typedef struct vm_statistics vm_statistics_data_t;
115
b0d623f7
A
116/*
117 * vm_statistics64
118 *
119 * History:
120 * rev0 - original structure.
121 * rev1 - added purgable info (purgable_count and purges).
122 * rev2 - added speculative_count.
123 * ----
124 * rev3 - changed name to vm_statistics64.
125 * changed some fields in structure to 64-bit on
126 * arm, i386 and x86_64 architectures.
6d2010ae
A
127 * rev4 - require 64-bit alignment for efficient access
128 * in the kernel. No change to reported data.
b0d623f7
A
129 *
130 */
131
132struct vm_statistics64 {
133 natural_t free_count; /* # of pages free */
134 natural_t active_count; /* # of pages active */
135 natural_t inactive_count; /* # of pages inactive */
136 natural_t wire_count; /* # of pages wired down */
137 uint64_t zero_fill_count; /* # of zero fill pages */
138 uint64_t reactivations; /* # of pages reactivated */
139 uint64_t pageins; /* # of pageins */
140 uint64_t pageouts; /* # of pageouts */
141 uint64_t faults; /* # of faults */
142 uint64_t cow_faults; /* # of copy-on-writes */
143 uint64_t lookups; /* object cache lookups */
144 uint64_t hits; /* object cache hits */
b0d623f7
A
145 uint64_t purges; /* # of pages purged */
146 natural_t purgeable_count; /* # of pages purgeable */
b0d623f7
A
147 /*
148 * NB: speculative pages are already accounted for in "free_count",
149 * so "speculative_count" is the number of "free" pages that are
150 * used to hold data that was read speculatively from disk but
151 * haven't actually been used by anyone so far.
152 */
153 natural_t speculative_count; /* # of pages speculative */
154
39236c6e
A
155 /* added for rev1 */
156 uint64_t decompressions; /* # of pages decompressed */
157 uint64_t compressions; /* # of pages compressed */
158 uint64_t swapins; /* # of pages swapped in (via compression segments) */
159 uint64_t swapouts; /* # of pages swapped out (via compression segments) */
160 natural_t compressor_page_count; /* # of pages used by the compressed pager to hold all the compressed data */
161 natural_t throttled_count; /* # of pages throttled */
162 natural_t external_page_count; /* # of pages that are file-backed (non-swap) */
163 natural_t internal_page_count; /* # of pages that are anonymous */
164 uint64_t total_uncompressed_pages_in_compressor; /* # of pages (uncompressed) held within the compressor. */
6d2010ae 165} __attribute__((aligned(8)));
b0d623f7
A
166
167typedef struct vm_statistics64 *vm_statistics64_t;
168typedef struct vm_statistics64 vm_statistics64_data_t;
169
170/*
171 * VM_STATISTICS_TRUNCATE_TO_32_BIT
172 *
173 * This is used by host_statistics() to truncate and peg the 64-bit in-kernel values from
174 * vm_statistics64 to the 32-bit values of the older structure above (vm_statistics).
175 */
176#define VM_STATISTICS_TRUNCATE_TO_32_BIT(value) ((uint32_t)(((value) > UINT32_MAX ) ? UINT32_MAX : (value)))
177
6d2010ae
A
178/*
179 * vm_extmod_statistics
180 *
181 * Structure to record modifications to a task by an
182 * external agent.
183 *
184 * History:
185 * rev0 - original structure.
186 */
187
188struct vm_extmod_statistics {
189 int64_t task_for_pid_count; /* # of times task port was looked up */
190 int64_t task_for_pid_caller_count; /* # of times this task called task_for_pid */
191 int64_t thread_creation_count; /* # of threads created in task */
192 int64_t thread_creation_caller_count; /* # of threads created by task */
193 int64_t thread_set_state_count; /* # of register state sets in task */
194 int64_t thread_set_state_caller_count; /* # of register state sets by task */
195} __attribute__((aligned(8)));
196
197typedef struct vm_extmod_statistics *vm_extmod_statistics_t;
198typedef struct vm_extmod_statistics vm_extmod_statistics_data_t;
b0d623f7 199
39236c6e
A
200typedef struct vm_purgeable_stat {
201 uint64_t count;
202 uint64_t size;
203}vm_purgeable_stat_t;
204
205struct vm_purgeable_info {
206 vm_purgeable_stat_t fifo_data[8];
207 vm_purgeable_stat_t obsolete_data;
208 vm_purgeable_stat_t lifo_data[8];
209};
210
211typedef struct vm_purgeable_info *vm_purgeable_info_t;
1c79356b
A
212
213/* included for the vm_map_page_query call */
214
215#define VM_PAGE_QUERY_PAGE_PRESENT 0x1
216#define VM_PAGE_QUERY_PAGE_FICTITIOUS 0x2
217#define VM_PAGE_QUERY_PAGE_REF 0x4
218#define VM_PAGE_QUERY_PAGE_DIRTY 0x8
2d21ac55
A
219#define VM_PAGE_QUERY_PAGE_PAGED_OUT 0x10
220#define VM_PAGE_QUERY_PAGE_COPIED 0x20
221#define VM_PAGE_QUERY_PAGE_SPECULATIVE 0x40
b0d623f7 222#define VM_PAGE_QUERY_PAGE_EXTERNAL 0x80
593a1d5f
A
223#define VM_PAGE_QUERY_PAGE_CS_VALIDATED 0x100
224#define VM_PAGE_QUERY_PAGE_CS_TAINTED 0x200
c18c124e 225#define VM_PAGE_QUERY_PAGE_CS_NX 0x400
1c79356b 226
91447636 227#ifdef MACH_KERNEL_PRIVATE
1c79356b
A
228
229/*
230 * Each machine dependent implementation is expected to
231 * keep certain statistics. They may do this anyway they
232 * so choose, but are expected to return the statistics
233 * in the following structure.
234 */
235
236struct pmap_statistics {
237 integer_t resident_count; /* # of pages mapped (total)*/
2d21ac55 238 integer_t resident_max; /* # of pages mapped (peak) */
1c79356b 239 integer_t wired_count; /* # of pages wired */
39236c6e
A
240
241 integer_t device;
242 integer_t device_peak;
243 integer_t internal;
244 integer_t internal_peak;
245 integer_t external;
246 integer_t external_peak;
247 integer_t reusable;
248 integer_t reusable_peak;
fe8ab488
A
249 uint64_t compressed __attribute__((aligned(8)));
250 uint64_t compressed_peak __attribute__((aligned(8)));
251 uint64_t compressed_lifetime __attribute__((aligned(8)));
1c79356b
A
252};
253
254typedef struct pmap_statistics *pmap_statistics_t;
255
39236c6e
A
256#define PMAP_STATS_PEAK(field) \
257 MACRO_BEGIN \
258 if (field > field##_peak) { \
259 field##_peak = field; \
260 } \
261 MACRO_END
262
91447636
A
263#endif /* MACH_KERNEL_PRIVATE */
264
265/*
266 * VM allocation flags:
267 *
268 * VM_FLAGS_FIXED
269 * (really the absence of VM_FLAGS_ANYWHERE)
270 * Allocate new VM region at the specified virtual address, if possible.
271 *
272 * VM_FLAGS_ANYWHERE
273 * Allocate new VM region anywhere it would fit in the address space.
274 *
275 * VM_FLAGS_PURGABLE
276 * Create a purgable VM object for that new VM region.
277 *
278 * VM_FLAGS_NO_PMAP_CHECK
279 * (for DEBUG kernel config only, ignored for other configs)
280 * Do not check that there is no stale pmap mapping for the new VM region.
281 * This is useful for kernel memory allocations at bootstrap when building
282 * the initial kernel address space while some memory is already in use.
283 *
284 * VM_FLAGS_OVERWRITE
285 * The new VM region can replace existing VM regions if necessary
286 * (to be used in combination with VM_FLAGS_FIXED).
2d21ac55
A
287 *
288 * VM_FLAGS_NO_CACHE
289 * Pages brought in to this VM region are placed on the speculative
290 * queue instead of the active queue. In other words, they are not
291 * cached so that they will be stolen first if memory runs low.
91447636
A
292 */
293#define VM_FLAGS_FIXED 0x0000
294#define VM_FLAGS_ANYWHERE 0x0001
295#define VM_FLAGS_PURGABLE 0x0002
3e170ce0
A
296#ifdef KERNEL_PRIVATE
297#endif /* KERNEL_PRIVATE */
2d21ac55 298#define VM_FLAGS_NO_CACHE 0x0010
3e170ce0
A
299#define VM_FLAGS_RESILIENT_CODESIGN 0x0020
300#define VM_FLAGS_RESILIENT_MEDIA 0x0040
91447636 301#ifdef KERNEL_PRIVATE
b0d623f7
A
302#define VM_FLAGS_PERMANENT 0x0100 /* mapping can NEVER be unmapped */
303#define VM_FLAGS_GUARD_AFTER 0x0200 /* guard page after the mapping */
304#define VM_FLAGS_GUARD_BEFORE 0x0400 /* guard page before the mapping */
2d21ac55 305#define VM_FLAGS_SUBMAP 0x0800 /* mapping a VM submap */
b0d623f7
A
306#define VM_FLAGS_ALREADY 0x1000 /* OK if same mapping already exists */
307#define VM_FLAGS_BEYOND_MAX 0x2000 /* map beyond the map's max offset */
060df5ea 308#endif /* KERNEL_PRIVATE */
b0d623f7 309#define VM_FLAGS_OVERWRITE 0x4000 /* delete any existing mappings first */
060df5ea 310#ifdef KERNEL_PRIVATE
b0d623f7 311#define VM_FLAGS_NO_PMAP_CHECK 0x8000 /* do not check that pmap is empty */
91447636 312#endif /* KERNEL_PRIVATE */
b0d623f7
A
313/*
314 * VM_FLAGS_SUPERPAGE_MASK
315 * 3 bits that specify whether large pages should be used instead of
316 * base pages (!=0), as well as the requested page size.
317 */
318#define VM_FLAGS_SUPERPAGE_MASK 0x70000 /* bits 0x10000, 0x20000, 0x40000 */
fe8ab488
A
319#ifdef KERNEL_PRIVATE
320#define VM_FLAGS_MAP_JIT 0x80000 /* Used to mark an entry as describing a JIT region */
321#endif /* KERNEL_PRIVATE */
322#define VM_FLAGS_RETURN_DATA_ADDR 0x100000 /* Return address of target data, rather than base of page */
323#ifdef KERNEL_PRIVATE
324#define VM_FLAGS_IOKIT_ACCT 0x200000 /* IOKit accounting */
325#define VM_FLAGS_KEEP_MAP_LOCKED 0x400000 /* Keep the map locked when returning from vm_map_enter() */
326#endif /* KERNEL_PRIVATE */
3e170ce0 327#define VM_FLAGS_RETURN_4K_DATA_ADDR 0x800000 /* Return 4K aligned address of target data */
1c79356b
A
328#define VM_FLAGS_ALIAS_MASK 0xFF000000
329#define VM_GET_FLAGS_ALIAS(flags, alias) \
330 (alias) = ((flags) & VM_FLAGS_ALIAS_MASK) >> 24
331#define VM_SET_FLAGS_ALIAS(flags, alias) \
332 (flags) = (((flags) & ~VM_FLAGS_ALIAS_MASK) | \
333 (((alias) & ~VM_FLAGS_ALIAS_MASK) << 24))
334
2d21ac55
A
335/* These are the flags that we accept from user-space */
336#define VM_FLAGS_USER_ALLOCATE (VM_FLAGS_FIXED | \
337 VM_FLAGS_ANYWHERE | \
338 VM_FLAGS_PURGABLE | \
339 VM_FLAGS_NO_CACHE | \
060df5ea 340 VM_FLAGS_OVERWRITE | \
b0d623f7 341 VM_FLAGS_SUPERPAGE_MASK | \
2d21ac55 342 VM_FLAGS_ALIAS_MASK)
fe8ab488 343#define VM_FLAGS_USER_MAP (VM_FLAGS_USER_ALLOCATE | \
3e170ce0 344 VM_FLAGS_RETURN_4K_DATA_ADDR | \
fe8ab488 345 VM_FLAGS_RETURN_DATA_ADDR)
060df5ea
A
346#define VM_FLAGS_USER_REMAP (VM_FLAGS_FIXED | \
347 VM_FLAGS_ANYWHERE | \
39236c6e 348 VM_FLAGS_OVERWRITE| \
3e170ce0
A
349 VM_FLAGS_RETURN_DATA_ADDR |\
350 VM_FLAGS_RESILIENT_CODESIGN)
2d21ac55 351
fe8ab488
A
352#define VM_FLAGS_SUPERPAGE_SHIFT 16
353#define SUPERPAGE_NONE 0 /* no superpages, if all bits are 0 */
354#define SUPERPAGE_SIZE_ANY 1
355#define VM_FLAGS_SUPERPAGE_NONE (SUPERPAGE_NONE << VM_FLAGS_SUPERPAGE_SHIFT)
356#define VM_FLAGS_SUPERPAGE_SIZE_ANY (SUPERPAGE_SIZE_ANY << VM_FLAGS_SUPERPAGE_SHIFT)
357#if defined(__x86_64__) || !defined(KERNEL)
358#define SUPERPAGE_SIZE_2MB 2
359#define VM_FLAGS_SUPERPAGE_SIZE_2MB (SUPERPAGE_SIZE_2MB<<VM_FLAGS_SUPERPAGE_SHIFT)
360#endif
361
1c79356b
A
362#define VM_MEMORY_MALLOC 1
363#define VM_MEMORY_MALLOC_SMALL 2
364#define VM_MEMORY_MALLOC_LARGE 3
365#define VM_MEMORY_MALLOC_HUGE 4
366#define VM_MEMORY_SBRK 5// uninteresting -- no one should call
55e303ae
A
367#define VM_MEMORY_REALLOC 6
368#define VM_MEMORY_MALLOC_TINY 7
b0d623f7
A
369#define VM_MEMORY_MALLOC_LARGE_REUSABLE 8
370#define VM_MEMORY_MALLOC_LARGE_REUSED 9
1c79356b
A
371
372#define VM_MEMORY_ANALYSIS_TOOL 10
373
39236c6e
A
374#define VM_MEMORY_MALLOC_NANO 11
375
1c79356b
A
376#define VM_MEMORY_MACH_MSG 20
377#define VM_MEMORY_IOKIT 21
378#define VM_MEMORY_STACK 30
379#define VM_MEMORY_GUARD 31
380#define VM_MEMORY_SHARED_PMAP 32
381/* memory containing a dylib */
382#define VM_MEMORY_DYLIB 33
b0d623f7 383#define VM_MEMORY_OBJC_DISPATCHERS 34
1c79356b 384
316670eb
A
385/* Was a nested pmap (VM_MEMORY_SHARED_PMAP) which has now been unnested */
386#define VM_MEMORY_UNSHARED_PMAP 35
387
388
1c79356b
A
389// Placeholders for now -- as we analyze the libraries and find how they
390// use memory, we can make these labels more specific.
391#define VM_MEMORY_APPKIT 40
392#define VM_MEMORY_FOUNDATION 41
393#define VM_MEMORY_COREGRAPHICS 42
316670eb
A
394#define VM_MEMORY_CORESERVICES 43
395#define VM_MEMORY_CARBON VM_MEMORY_CORESERVICES
9bccf70c 396#define VM_MEMORY_JAVA 44
39236c6e
A
397#define VM_MEMORY_COREDATA 45
398#define VM_MEMORY_COREDATA_OBJECTIDS 46
1c79356b 399#define VM_MEMORY_ATS 50
2d21ac55
A
400#define VM_MEMORY_LAYERKIT 51
401#define VM_MEMORY_CGIMAGE 52
402#define VM_MEMORY_TCMALLOC 53
403
404/* private raster data (i.e. layers, some images, QGL allocator) */
405#define VM_MEMORY_COREGRAPHICS_DATA 54
406
407/* shared image and font caches */
408#define VM_MEMORY_COREGRAPHICS_SHARED 55
409
410/* Memory used for virtual framebuffers, shadowing buffers, etc... */
411#define VM_MEMORY_COREGRAPHICS_FRAMEBUFFERS 56
412
413/* Window backing stores, custom shadow data, and compressed backing stores */
414#define VM_MEMORY_COREGRAPHICS_BACKINGSTORES 57
415
416/* catch-all for other uses, such as the read-only shared data page */
417#define VM_MEMORY_COREGRAPHICS_MISC VM_MEMORY_COREGRAPHICS
1c79356b 418
1c79356b
A
419/* memory allocated by the dynamic loader for itself */
420#define VM_MEMORY_DYLD 60
421/* malloc'd memory created by dyld */
422#define VM_MEMORY_DYLD_MALLOC 61
423
b0d623f7
A
424/* Used for sqlite page cache */
425#define VM_MEMORY_SQLITE 62
426
427/* JavaScriptCore heaps */
428#define VM_MEMORY_JAVASCRIPT_CORE 63
429/* memory allocated for the JIT */
430#define VM_MEMORY_JAVASCRIPT_JIT_EXECUTABLE_ALLOCATOR 64
431#define VM_MEMORY_JAVASCRIPT_JIT_REGISTER_FILE 65
432
433/* memory allocated for GLSL */
434#define VM_MEMORY_GLSL 66
435
6d2010ae
A
436/* memory allocated for OpenCL.framework */
437#define VM_MEMORY_OPENCL 67
438
439/* memory allocated for QuartzCore.framework */
440#define VM_MEMORY_COREIMAGE 68
441
442/* memory allocated for WebCore Purgeable Buffers */
443#define VM_MEMORY_WEBCORE_PURGEABLE_BUFFERS 69
444
445/* ImageIO memory */
446#define VM_MEMORY_IMAGEIO 70
447
448/* CoreProfile memory */
449#define VM_MEMORY_COREPROFILE 71
450
451/* assetsd / MobileSlideShow memory */
316670eb 452#define VM_MEMORY_ASSETSD 72
6d2010ae 453
39236c6e
A
454/* libsystem_kernel os_once_alloc */
455#define VM_MEMORY_OS_ALLOC_ONCE 73
456
457/* libdispatch internal allocator */
458#define VM_MEMORY_LIBDISPATCH 74
459
460/* Accelerate.framework image backing stores */
461#define VM_MEMORY_ACCELERATE 75
462
463/* CoreUI image block data */
464#define VM_MEMORY_COREUI 76
465
fe8ab488
A
466/* CoreUI image file */
467#define VM_MEMORY_COREUIFILE 77
468
469/* Genealogy buffers */
470#define VM_MEMORY_GENEALOGY 78
471
3e170ce0
A
472/* RawCamera VM allocated memory */
473#define VM_MEMORY_RAWCAMERA 79
474
475/* corpse info for dead process */
476#define VM_MEMORY_CORPSEINFO 80
477
478/* Apple System Logger (ASL) messages */
479#define VM_MEMORY_ASL 81
480
1c79356b
A
481/* Reserve 240-255 for application */
482#define VM_MEMORY_APPLICATION_SPECIFIC_1 240
483#define VM_MEMORY_APPLICATION_SPECIFIC_16 255
484
2d21ac55 485#define VM_MAKE_TAG(tag) ((tag) << 24)
91447636 486
3e170ce0
A
487
488
489#if KERNEL_PRIVATE
490
491/* kernel map tags */
492
493#define VM_KERN_MEMORY_NONE 0
494
495#define VM_KERN_MEMORY_OSFMK 1
496#define VM_KERN_MEMORY_BSD 2
497#define VM_KERN_MEMORY_IOKIT 3
498#define VM_KERN_MEMORY_LIBKERN 4
499#define VM_KERN_MEMORY_OSKEXT 5
500#define VM_KERN_MEMORY_KEXT 6
501#define VM_KERN_MEMORY_IPC 7
502#define VM_KERN_MEMORY_STACK 8
503#define VM_KERN_MEMORY_CPU 9
504#define VM_KERN_MEMORY_PMAP 10
505#define VM_KERN_MEMORY_PTE 11
506#define VM_KERN_MEMORY_ZONE 12
507#define VM_KERN_MEMORY_KALLOC 13
508#define VM_KERN_MEMORY_COMPRESSOR 14
509#define VM_KERN_MEMORY_COMPRESSED_DATA 15
510#define VM_KERN_MEMORY_PHANTOM_CACHE 16
511#define VM_KERN_MEMORY_WAITQ 17
512#define VM_KERN_MEMORY_DIAG 18
513#define VM_KERN_MEMORY_LOG 19
514#define VM_KERN_MEMORY_FILE 20
515#define VM_KERN_MEMORY_MBUF 21
516#define VM_KERN_MEMORY_UBC 22
517#define VM_KERN_MEMORY_SECURITY 23
518#define VM_KERN_MEMORY_MLOCK 24
519//
520#define VM_KERN_MEMORY_FIRST_DYNAMIC 25
521/* out of tags: */
522#define VM_KERN_MEMORY_ANY 255
523#define VM_KERN_MEMORY_COUNT 256
524
525/* end kernel map tags */
526
527// mach_memory_info.flags
528#define VM_KERN_SITE_TYPE 0x000000FF
529#define VM_KERN_SITE_TAG 0x00000000
530#define VM_KERN_SITE_KMOD 0x00000001
531#define VM_KERN_SITE_KERNEL 0x00000002
532#define VM_KERN_SITE_COUNTER 0x00000003
533#define VM_KERN_SITE_WIRED 0x00000100 /* add to wired count */
534#define VM_KERN_SITE_HIDE 0x00000200 /* no zprint */
535
536#define VM_KERN_COUNT_MANAGED 0
537#define VM_KERN_COUNT_RESERVED 1
538#define VM_KERN_COUNT_WIRED 2
539#define VM_KERN_COUNT_WIRED_MANAGED 3
540#define VM_KERN_COUNT_STOLEN 4
541#define VM_KERN_COUNT_LOPAGE 5
542#define VM_KERN_COUNT_MAP_KERNEL 6
543#define VM_KERN_COUNT_MAP_ZONE 7
544#define VM_KERN_COUNT_MAP_KALLOC 8
545
546#define VM_KERN_COUNTER_COUNT 9
547
548#endif /* KERNEL_PRIVATE */
549
91447636 550#endif /* _MACH_VM_STATISTICS_H_ */