2 * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_OSREFERENCE_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
10 * License may not be used to create, or enable the creation or
11 * redistribution of, unlawful or unlicensed copies of an Apple operating
12 * system, or to circumvent, violate, or enable the circumvention or
13 * violation of, any terms of an Apple operating system software license
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this
20 * The Original Code and all software distributed under the License are
21 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
22 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
23 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
25 * Please see the License for the specific language governing rights and
26 * limitations under the License.
28 * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
34 * Mach Operating System
35 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
36 * All Rights Reserved.
38 * Permission to use, copy, modify and distribute this software and its
39 * documentation is hereby granted, provided that both the copyright
40 * notice and this permission notice appear in all copies of the
41 * software, derivative works or modified versions, and any portions
42 * thereof, and that both notices appear in supporting documentation.
44 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
45 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
46 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
48 * Carnegie Mellon requests users of this software to return to
50 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
51 * School of Computer Science
52 * Carnegie Mellon University
53 * Pittsburgh PA 15213-3890
55 * any improvements or extensions that they make and grant Carnegie Mellon
56 * the rights to redistribute these changes.
61 * File: mach/vm_param.h
62 * Author: Avadis Tevanian, Jr., Michael Wayne Young
65 * Machine independent virtual memory parameters.
69 #ifndef _MACH_VM_PARAM_H_
70 #define _MACH_VM_PARAM_H_
72 #include <mach/machine/vm_param.h>
77 #include <mach/vm_types.h>
78 #endif /* ASSEMBLER */
81 * The machine independent pages are refered to as PAGES. A page
82 * is some number of hardware pages, depending on the target machine.
87 #define PAGE_SIZE_64 (unsigned long long)PAGE_SIZE /* pagesize in addr units */
88 #define PAGE_MASK_64 (unsigned long long)PAGE_MASK /* mask for off in page */
91 * Convert addresses to pages and vice versa. No rounding is used.
92 * The atop_32 and ptoa_32 macros should not be use on 64 bit types.
93 * The round_page_64 and trunc_page_64 macros should be used instead.
96 #define atop_32(x) ((uint32_t)(x) >> PAGE_SHIFT)
97 #define ptoa_32(x) ((uint32_t)(x) << PAGE_SHIFT)
98 #define atop_64(x) ((uint64_t)(x) >> PAGE_SHIFT)
99 #define ptoa_64(x) ((uint64_t)(x) << PAGE_SHIFT)
102 * While the following block is enabled, the legacy atop and ptoa
103 * macros will behave correctly. If not, they will generate
104 * invalid lvalue errors.
108 #define atop(x) ((uint32_t)(x) >> PAGE_SHIFT)
109 #define ptoa(x) ((uint32_t)(x) << PAGE_SHIFT)
111 #define atop(x) (0UL = 0)
112 #define ptoa(x) (0UL = 0)
116 * Page-size rounding macros for the Public fixed-width VM types.
118 #define mach_vm_round_page(x) (((mach_vm_offset_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
119 #define mach_vm_trunc_page(x) ((mach_vm_offset_t)(x) & ~((signed)PAGE_MASK))
121 #define memory_object_round_page(x) (((memory_object_offset_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
122 #define memory_object_trunc_page(x) ((memory_object_offset_t)(x) & ~((signed)PAGE_MASK))
125 * Rounding macros for the legacy (scalable with the current task's
126 * address space size) VM types.
129 #define round_page(x) (((vm_offset_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
130 #define trunc_page(x) ((vm_offset_t)(x) & ~((signed)PAGE_MASK))
133 * Round off or truncate to the nearest page. These will work
134 * for either addresses or counts. (i.e. 1 byte rounds to 1 page
135 * bytes. The round_page_32 and trunc_page_32 macros should not be
136 * use on 64 bit types. The round_page_64 and trunc_page_64 macros
137 * should be used instead.
139 * These should only be used in the rare case the size of the address
140 * or length is hard-coded as 32 or 64 bit. Otherwise, the macros
141 * associated with the specific VM type should be used.
144 #define round_page_32(x) (((uint32_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
145 #define trunc_page_32(x) ((uint32_t)(x) & ~((signed)PAGE_MASK))
146 #define round_page_64(x) (((uint64_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
147 #define trunc_page_64(x) ((uint64_t)(x) & ~((signed)PAGE_MASK))
151 * Enable the following block to find uses of xxx_32 macros that should
152 * be xxx_64. These macros only work in C code, not C++. The resulting
153 * binaries are not functional. Look for invalid lvalue errors in
154 * the compiler output.
156 * Enabling the following block will also find use of the xxx_64 macros
157 * that have been passed pointers. The parameters should be case to an
158 * unsigned long type first. Look for invalid operands to binary + error
159 * in the compiler output.
175 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
180 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
184 #define round_page_32(x) \
185 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
189 #define trunc_page_32(x) \
190 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
195 #define atop_32(x) (0)
196 #define ptoa_32(x) (0)
197 #define round_page_32(x) (0)
198 #define trunc_page_32(x) (0)
200 #endif /* ! __cplusplus */
202 #define atop_64(x) ((uint64_t)((x) + (uint8_t *)0))
203 #define ptoa_64(x) ((uint64_t)((x) + (uint8_t *)0))
204 #define round_page_64(x) ((uint64_t)((x) + (uint8_t *)0))
205 #define trunc_page_64(x) ((uint64_t)((x) + (uint8_t *)0))
210 * Determine whether an address is page-aligned, or a count is
211 * an exact page multiple.
214 #define page_aligned(x) ((((vm_object_offset_t) (x)) & PAGE_MASK) == 0)
216 extern vm_size_t mem_size
; /* 32-bit size of memory - limited by maxmem - deprecated */
217 extern uint64_t max_mem
; /* 64-bit size of memory - limited by maxmem */
219 #ifdef XNU_KERNEL_PRIVATE
221 extern uint64_t mem_actual
; /* 64-bit size of memory - not limited by maxmem */
222 extern uint64_t sane_size
; /* Memory size to use for defaults calculations */
223 extern addr64_t vm_last_addr
; /* Highest kernel virtual address known to the VM system */
225 extern const vm_offset_t vm_min_kernel_address
;
226 extern const vm_offset_t vm_max_kernel_address
;
228 #endif /* XNU_KERNEL_PRIVATE */
230 extern vm_size_t page_size
;
231 extern vm_size_t page_mask
;
232 extern int page_shift
;
234 /* We need a way to get rid of compiler warnings when we cast from */
235 /* a 64 bit value to an address that is 32 bits. */
236 /* We know at this point the cast is harmless but sometime in */
237 /* the future it may not be. */
238 /* When size of an int is no longer equal to size of uintptr_t then */
239 /* the compile will fail and we know we need to fix our cast. */
241 #ifndef __CAST_DOWN_CHECK
242 #define __CAST_DOWN_CHECK
243 typedef char __NEED_TO_CHANGE_CAST_DOWN
[ sizeof(uintptr_t) == sizeof(int) ? 0 : -1 ];
244 #define CAST_DOWN( type, addr ) ( ((type)((uintptr_t) (addr))) )
245 #endif /* __CAST_DOWN_CHECK */
247 #endif /* ASSEMBLER */
251 #endif /* _MACH_VM_PARAM_H_ */