]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/mach/vm_param.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Mach Operating System
27 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
53 * File: mach/vm_param.h
54 * Author: Avadis Tevanian, Jr., Michael Wayne Young
57 * Machine independent virtual memory parameters.
61 #ifndef _MACH_VM_PARAM_H_
62 #define _MACH_VM_PARAM_H_
64 #ifndef KERNEL_PRIVATE
66 #error YOU HAVE MADE A MISTAKE BY INCLUDING THIS FILE;
68 #error THIS FILE SHOULD NOT BE VISIBLE TO USER PROGRAMS.
70 #error USE <mach/machine/vm_param.h> TO GET MACHINE-DEPENDENT ADDRESS
71 #error SPACE AND PAGE SIZE ITEMS.
73 #error USE <mach/machine/vm_types.h> TO GET TYPE DECLARATIONS USED IN
74 #error THE MACH KERNEL INTERFACE.
76 #error IN ALL PROBABILITY, YOU SHOULD GET ALL OF THE TYPES USED IN THE
77 #error INTERFACE FROM <mach/mach_types.h>
79 #endif /* KERNEL_PRIVATE */
81 #include <mach/machine/vm_param.h>
83 #include <mach/vm_types.h>
86 * The machine independent pages are refered to as PAGES. A page
87 * is some number of hardware pages, depending on the target machine.
91 * All references to the size of a page should be done with PAGE_SIZE
92 * or PAGE_SHIFT. The fact they are variables is hidden here so that
93 * we can easily make them constant if we so desire.
97 * Regardless whether it is implemented with a constant or a variable,
98 * the PAGE_SIZE is assumed to be a power of two throughout the
99 * virtual memory system implementation.
102 #ifndef PAGE_SIZE_FIXED
103 extern vm_size_t page_size
;
104 extern vm_size_t page_mask
;
105 extern int page_shift
;
107 #define PAGE_SIZE page_size /* pagesize in addr units */
108 #define PAGE_SHIFT page_shift /* number of bits to shift for pages */
109 #define PAGE_MASK page_mask /* mask for off in page */
111 #define PAGE_SIZE_64 (unsigned long long)page_size /* pagesize in addr units */
112 #define PAGE_MASK_64 (unsigned long long)page_mask /* mask for off in page */
113 #else /* PAGE_SIZE_FIXED */
114 #define PAGE_SIZE 4096
115 #define PAGE_SHIFT 12
116 #define PAGE_MASK (PAGE_SIZE-1)
117 #define PAGE_SIZE_64 (unsigned long long)4096
118 #define PAGE_MASK_64 (PAGE_SIZE_64-1)
119 #endif /* PAGE_SIZE_FIXED */
124 * Convert addresses to pages and vice versa. No rounding is used.
125 * The atop_32 and ptoa_32 macros should not be use on 64 bit types.
126 * The round_page_64 and trunc_page_64 macros should be used instead.
129 #define atop_32(x) ((uint32_t)(x) >> PAGE_SHIFT)
130 #define ptoa_32(x) ((uint32_t)(x) << PAGE_SHIFT)
131 #define atop_64(x) ((uint64_t)(x) >> PAGE_SHIFT)
132 #define ptoa_64(x) ((uint64_t)(x) << PAGE_SHIFT)
135 * While the following block is enabled, the legacy atop and ptoa
136 * macros will behave correctly. If not, they will generate
137 * invalid lvalue errors.
141 #define atop(x) ((uint32_t)(x) >> PAGE_SHIFT)
142 #define ptoa(x) ((uint32_t)(x) << PAGE_SHIFT)
144 #define atop(x) (0UL = 0)
145 #define ptoa(x) (0UL = 0)
150 * Round off or truncate to the nearest page. These will work
151 * for either addresses or counts. (i.e. 1 byte rounds to 1 page
152 * bytes. The round_page_32 and trunc_page_32 macros should not be
153 * use on 64 bit types. The round_page_64 and trunc_page_64 macros
154 * should be used instead.
157 #define round_page_32(x) (((uint32_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
158 #define trunc_page_32(x) ((uint32_t)(x) & ~((signed)PAGE_MASK))
159 #define round_page_64(x) (((uint64_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
160 #define trunc_page_64(x) ((uint64_t)(x) & ~((signed)PAGE_MASK))
164 * While the following block is enabled, the legacy round_page
165 * and trunc_page macros will behave correctly. If not, they will
166 * generate invalid lvalue errors.
170 #define round_page(x) (((uint32_t)(x) + PAGE_MASK) & ~((signed)PAGE_MASK))
171 #define trunc_page(x) ((uint32_t)(x) & ~((signed)PAGE_MASK))
173 #define round_page(x) (0UL = 0)
174 #define trunc_page(x) (0UL = 0)
178 * Enable the following block to find uses of xxx_32 macros that should
179 * be xxx_64. These macros only work in C code, not C++. The resulting
180 * binaries are not functional. Look for invalid lvalue errors in
181 * the compiler output.
183 * Enabling the following block will also find use of the xxx_64 macros
184 * that have been passed pointers. The parameters should be case to an
185 * unsigned long type first. Look for invalid operands to binary + error
186 * in the compiler output.
202 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
207 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
211 #define round_page_32(x) \
212 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
216 #define trunc_page_32(x) \
217 (__builtin_choose_expr (sizeof(x) != sizeof(uint64_t), \
222 #define atop_32(x) (0)
223 #define ptoa_32(x) (0)
224 #define round_page_32(x) (0)
225 #define trunc_page_32(x) (0)
227 #endif /* ! __cplusplus */
229 #define atop_64(x) ((uint64_t)((x) + (uint8_t *)0))
230 #define ptoa_64(x) ((uint64_t)((x) + (uint8_t *)0))
231 #define round_page_64(x) ((uint64_t)((x) + (uint8_t *)0))
232 #define trunc_page_64(x) ((uint64_t)((x) + (uint8_t *)0))
237 * Determine whether an address is page-aligned, or a count is
238 * an exact page multiple.
241 #define page_aligned(x) ((((vm_object_offset_t) (x)) & PAGE_MASK) == 0)
243 extern vm_size_t mem_size
; /* size of physical memory (bytes) */
245 #endif /* ASSEMBLER */
246 #endif /* _MACH_VM_PARAM_H_ */