2 * Copyright (c) 2000-2005 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 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 * File: mach_debug/vm_info.h
63 * Definitions for the VM debugging interface.
66 #ifndef _MACH_DEBUG_VM_INFO_H_
67 #define _MACH_DEBUG_VM_INFO_H_
69 #include <mach/boolean.h>
70 #include <mach/machine/vm_types.h>
71 #include <mach/vm_inherit.h>
72 #include <mach/vm_prot.h>
73 #include <mach/memory_object_types.h>
78 * Remember to update the mig type definitions
79 * in mach_debug_types.defs when adding/removing fields.
81 typedef struct mach_vm_info_region
{
82 mach_vm_offset_t vir_start
; /* start of region */
83 mach_vm_offset_t vir_end
; /* end of region */
84 mach_vm_offset_t vir_object
; /* the mapped object(kernal addr) */
85 memory_object_offset_t vir_offset
; /* offset into object */
86 boolean_t vir_needs_copy
; /* does object need to be copied? */
87 vm_prot_t vir_protection
; /* protection code */
88 vm_prot_t vir_max_protection
; /* maximum protection */
89 vm_inherit_t vir_inheritance
; /* inheritance */
90 natural_t vir_wired_count
; /* number of times wired */
91 natural_t vir_user_wired_count
; /* number of times user has wired */
92 } mach_vm_info_region_t
;
94 typedef struct vm_info_region_64
{
95 natural_t vir_start
; /* start of region */
96 natural_t vir_end
; /* end of region */
97 natural_t vir_object
; /* the mapped object */
98 memory_object_offset_t vir_offset
; /* offset into object */
99 boolean_t vir_needs_copy
; /* does object need to be copied? */
100 vm_prot_t vir_protection
; /* protection code */
101 vm_prot_t vir_max_protection
; /* maximum protection */
102 vm_inherit_t vir_inheritance
; /* inheritance */
103 natural_t vir_wired_count
; /* number of times wired */
104 natural_t vir_user_wired_count
; /* number of times user has wired */
105 } vm_info_region_64_t
;
107 typedef struct vm_info_region
{
108 natural_t vir_start
; /* start of region */
109 natural_t vir_end
; /* end of region */
110 natural_t vir_object
; /* the mapped object */
111 natural_t vir_offset
; /* offset into object */
112 boolean_t vir_needs_copy
; /* does object need to be copied? */
113 vm_prot_t vir_protection
; /* protection code */
114 vm_prot_t vir_max_protection
; /* maximum protection */
115 vm_inherit_t vir_inheritance
; /* inheritance */
116 natural_t vir_wired_count
; /* number of times wired */
117 natural_t vir_user_wired_count
; /* number of times user has wired */
121 typedef struct vm_info_object
{
122 natural_t vio_object
; /* this object */
123 natural_t vio_size
; /* object size (valid if internal - but too small) */
124 unsigned int vio_ref_count
; /* number of references */
125 unsigned int vio_resident_page_count
; /* number of resident pages */
126 unsigned int vio_absent_count
; /* number requested but not filled */
127 natural_t vio_copy
; /* copy object */
128 natural_t vio_shadow
; /* shadow object */
129 natural_t vio_shadow_offset
; /* offset into shadow object */
130 natural_t vio_paging_offset
; /* offset into memory object */
131 memory_object_copy_strategy_t vio_copy_strategy
;
132 /* how to handle data copy */
133 vm_offset_t vio_last_alloc
; /* offset of last allocation */
134 /* many random attributes */
135 unsigned int vio_paging_in_progress
;
136 boolean_t vio_pager_created
;
137 boolean_t vio_pager_initialized
;
138 boolean_t vio_pager_ready
;
139 boolean_t vio_can_persist
;
140 boolean_t vio_internal
;
141 boolean_t vio_temporary
;
143 boolean_t vio_purgable
;
144 boolean_t vio_purgable_volatile
;
147 typedef vm_info_object_t
*vm_info_object_array_t
;
151 #endif /* _MACH_DEBUG_VM_INFO_H_ */