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.
54 * Author: Avadis Tevanian, Jr., Michael Wayne Young
57 * Virtual memory object module definitions.
60 #ifndef _VM_VM_OBJECT_H_
61 #define _VM_VM_OBJECT_H_
63 #include <mach_pagemap.h>
64 #include <task_swapper.h>
66 #include <mach/kern_return.h>
67 #include <mach/boolean.h>
68 #include <mach/memory_object_types.h>
69 #include <mach/port.h>
70 #include <mach/vm_prot.h>
71 #include <mach/machine/vm_types.h>
72 #include <kern/queue.h>
73 #include <kern/lock.h>
74 #include <kern/assert.h>
75 #include <kern/ipc_mig.h>
76 #include <kern/misc_protos.h>
77 #include <kern/macro_help.h>
78 #include <ipc/ipc_types.h>
82 #include <vm/vm_external.h>
83 #endif /* MACH_PAGEMAP */
85 typedef memory_object_control_t pager_request_t
;
86 #define PAGER_REQUEST_NULL ((pager_request_t) 0)
91 * vm_object_t Virtual memory object.
94 typedef unsigned long long vm_object_size_t
;
98 queue_head_t memq
; /* Resident memory */
99 decl_mutex_data(, Lock
) /* Synchronization */
101 vm_object_size_t size
; /* Object size (only valid
104 vm_object_size_t frozen_size
; /* How much has been marked
105 * copy-on-write (only
106 * valid if copy_symmetric)
108 int ref_count
; /* Number of references */
110 int res_count
; /* Residency references (swap)*/
111 #endif /* TASK_SWAPPER */
112 unsigned int resident_page_count
;
113 /* number of resident pages */
115 struct vm_object
*copy
; /* Object that should receive
116 * a copy of my changed pages,
117 * for copy_delay, or just the
118 * temporary object that
119 * shadows this object, for
122 struct vm_object
*shadow
; /* My shadow */
123 vm_object_offset_t shadow_offset
; /* Offset into shadow */
125 memory_object_t pager
; /* Where to get data */
126 vm_object_offset_t paging_offset
; /* Offset into memory object */
127 pager_request_t pager_request
; /* Where data comes back */
129 memory_object_copy_strategy_t
130 copy_strategy
; /* How to handle data copy */
132 unsigned int absent_count
; /* The number of pages that
133 * have been requested but
134 * not filled. That is, the
135 * number of pages for which
136 * the "absent" attribute is
140 unsigned int paging_in_progress
;
141 /* The memory object ports are
142 * being used (e.g., for pagein
143 * or pageout) -- don't change
144 * any of these fields (i.e.,
145 * don't collapse, destroy or
149 /* boolean_t array */ all_wanted
:11, /* Bit array of "want to be
150 * awakened" notations. See
151 * VM_OBJECT_EVENT_* items
153 /* boolean_t */ pager_created
:1, /* Has pager been created? */
154 /* boolean_t */ pager_initialized
:1, /* Are fields ready to use? */
155 /* boolean_t */ pager_ready
:1, /* Will pager take requests? */
157 /* boolean_t */ pager_trusted
:1,/* The pager for this object
158 * is trusted. This is true for
159 * all internal objects (backed
160 * by the default pager)
162 /* boolean_t */ can_persist
:1, /* The kernel may keep the data
163 * for this object (and rights
164 * to the memory object) after
165 * all address map references
168 /* boolean_t */ internal
:1, /* Created by the kernel (and
169 * therefore, managed by the
170 * default memory manger)
172 /* boolean_t */ temporary
:1, /* Permanent objects may be
173 * changed externally by the
174 * memory manager, and changes
175 * made in memory must be
176 * reflected back to the memory
177 * manager. Temporary objects
181 /* boolean_t */ private:1, /* magic device_pager object,
182 * holds private pages only */
183 /* boolean_t */ pageout
:1, /* pageout object. contains
184 * private pages that refer to
185 * a real memory object. */
186 /* boolean_t */ alive
:1, /* Not yet terminated */
188 /* boolean_t */ lock_in_progress
:1,
189 /* Is a multi-page lock
190 * request in progress?
192 /* boolean_t */ lock_restart
:1,
193 /* Should lock request in
194 * progress restart search?
196 /* boolean_t */ shadowed
:1, /* Shadow may exist */
197 /* boolean_t */ silent_overwrite
:1,
198 /* Allow full page overwrite
199 * without data_request if
201 /* boolean_t */ advisory_pageout
:1,
202 /* Instead of sending page
203 * via OOL, just notify
204 * pager that the kernel
205 * wants to discard it, page
206 * remains in object */
207 /* boolean_t */ true_share
:1,
208 /* This object is mapped
209 * in more than one place
210 * and hence cannot be
212 /* boolean_t */ terminating
:1,
213 /* Allows vm_object_lookup
214 * and vm_object_deallocate
215 * to special case their
216 * behavior when they are
217 * called as a result of
218 * page cleaning during
221 /* boolean_t */ named
:1, /* An enforces an internal
222 * naming convention, by
223 * calling the right routines
225 * destruction, UBC references
226 * against the vm_object are
229 /* boolean_t */ shadow_severed
:1,
230 /* When a permanent object
231 * backing a COW goes away
232 * unexpectedly. This bit
233 * allows vm_fault to return
234 * an error rather than a
237 /* boolean_t */ phys_contiguous
:1,
238 /* Memory is wired and
239 * guaranteed physically
240 * contiguous. However
241 * it is not device memory
242 * and obeys normal virtual
243 * memory rules w.r.t pmap
246 /* boolean_t */ nophyscache
:1;
247 /* When mapped at the
248 * pmap level, don't allow
249 * primary caching. (for
255 queue_chain_t cached_list
; /* Attachment point for the
256 * list of objects cached as a
257 * result of their can_persist
261 queue_head_t msr_q
; /* memory object synchronise
264 vm_object_offset_t last_alloc
; /* last allocation offset */
265 vm_object_offset_t sequential
; /* sequential access size */
266 vm_size_t cluster_size
; /* size of paging cluster */
268 vm_external_map_t existence_map
; /* bitmap of pages written to
270 #endif /* MACH_PAGEMAP */
271 vm_offset_t cow_hint
; /* last page present in */
272 /* shadow but not in object */
274 struct vm_object
*paging_object
; /* object which pages to be
275 * swapped out are temporary
276 * put in current object
279 /* hold object lock when altering */
280 unsigned int /* cache WIMG bits */
281 wimg_bits
:8, /* wimg plus some expansion*/
284 queue_head_t uplq
; /* List of outstanding upls */
285 #endif /* UBC_DEBUG */
289 vm_object_t kernel_object
; /* the single kernel object */
292 int vm_object_absent_max
; /* maximum number of absent pages
293 at a time for each object */
295 # define VM_MSYNC_INITIALIZED 0
296 # define VM_MSYNC_SYNCHRONIZING 1
297 # define VM_MSYNC_DONE 2
300 queue_chain_t msr_q
; /* object request queue */
301 queue_chain_t req_q
; /* vm_msync request queue */
303 vm_object_offset_t offset
;
304 vm_object_size_t length
;
305 vm_object_t object
; /* back pointer */
306 decl_mutex_data(, msync_req_lock
) /* Lock for this structure */
309 typedef struct msync_req
*msync_req_t
;
310 #define MSYNC_REQ_NULL ((msync_req_t) 0)
313 * Macros to allocate and free msync_reqs
315 #define msync_req_alloc(msr) \
317 (msr) = (msync_req_t)kalloc(sizeof(struct msync_req)); \
318 mutex_init(&(msr)->msync_req_lock, ETAP_VM_MSYNC); \
319 msr->flag = VM_MSYNC_INITIALIZED; \
322 #define msync_req_free(msr) \
323 (kfree((vm_offset_t)(msr), sizeof(struct msync_req)))
325 #define msr_lock(msr) mutex_lock(&(msr)->msync_req_lock)
326 #define msr_unlock(msr) mutex_unlock(&(msr)->msync_req_lock)
329 * Declare procedures that operate on VM objects.
332 __private_extern__
void vm_object_bootstrap(void);
334 __private_extern__
void vm_object_init(void);
336 __private_extern__ vm_object_t
vm_object_allocate(
337 vm_object_size_t size
);
341 __private_extern__
void vm_object_res_reference(
343 __private_extern__
void vm_object_res_deallocate(
345 #define VM_OBJ_RES_INCR(object) (object)->res_count++
346 #define VM_OBJ_RES_DECR(object) (object)->res_count--
348 #else /* TASK_SWAPPER */
350 #define VM_OBJ_RES_INCR(object)
351 #define VM_OBJ_RES_DECR(object)
352 #define vm_object_res_reference(object)
353 #define vm_object_res_deallocate(object)
355 #endif /* TASK_SWAPPER */
357 #define vm_object_reference_locked(object) \
359 vm_object_t RLObject = (object); \
360 assert((RLObject)->ref_count > 0); \
361 (RLObject)->ref_count++; \
362 vm_object_res_reference(RLObject); \
368 __private_extern__
void vm_object_reference(
371 #else /* MACH_ASSERT */
373 #define vm_object_reference(object) \
375 vm_object_t RObject = (object); \
377 vm_object_lock(RObject); \
378 vm_object_reference_locked(RObject); \
379 vm_object_unlock(RObject); \
383 #endif /* MACH_ASSERT */
385 __private_extern__
void vm_object_deallocate(
388 __private_extern__ kern_return_t
vm_object_release_name(
392 __private_extern__
void vm_object_pmap_protect(
394 vm_object_offset_t offset
,
397 vm_offset_t pmap_start
,
400 __private_extern__
void vm_object_page_remove(
402 vm_object_offset_t start
,
403 vm_object_offset_t end
);
405 __private_extern__
void vm_object_deactivate_pages(
407 vm_object_offset_t offset
,
408 vm_object_size_t size
,
409 boolean_t kill_page
);
411 __private_extern__ boolean_t
vm_object_coalesce(
412 vm_object_t prev_object
,
413 vm_object_t next_object
,
414 vm_object_offset_t prev_offset
,
415 vm_object_offset_t next_offset
,
416 vm_object_size_t prev_size
,
417 vm_object_size_t next_size
);
419 __private_extern__ boolean_t
vm_object_shadow(
421 vm_object_offset_t
*offset
,
422 vm_object_size_t length
);
424 __private_extern__
void vm_object_collapse(
426 vm_object_offset_t offset
);
428 __private_extern__ boolean_t
vm_object_copy_quickly(
429 vm_object_t
*_object
,
430 vm_object_offset_t src_offset
,
431 vm_object_size_t size
,
432 boolean_t
*_src_needs_copy
,
433 boolean_t
*_dst_needs_copy
);
435 __private_extern__ kern_return_t
vm_object_copy_strategically(
436 vm_object_t src_object
,
437 vm_object_offset_t src_offset
,
438 vm_object_size_t size
,
439 vm_object_t
*dst_object
,
440 vm_object_offset_t
*dst_offset
,
441 boolean_t
*dst_needs_copy
);
443 __private_extern__ kern_return_t
vm_object_copy_slowly(
444 vm_object_t src_object
,
445 vm_object_offset_t src_offset
,
446 vm_object_size_t size
,
448 vm_object_t
*_result_object
);
450 __private_extern__ vm_object_t
vm_object_copy_delayed(
451 vm_object_t src_object
,
452 vm_object_offset_t src_offset
,
453 vm_object_size_t size
);
457 __private_extern__ kern_return_t
vm_object_destroy(
459 kern_return_t reason
);
461 __private_extern__
void vm_object_pager_create(
464 __private_extern__
void vm_object_page_map(
466 vm_object_offset_t offset
,
467 vm_object_size_t size
,
468 vm_object_offset_t (*map_fn
)
469 (void *, vm_object_offset_t
),
472 __private_extern__ kern_return_t
vm_object_upl_request(
474 vm_object_offset_t offset
,
477 upl_page_info_t
*page_info
,
481 __private_extern__ boolean_t
vm_object_sync(
483 vm_object_offset_t offset
,
485 boolean_t should_flush
,
486 boolean_t should_return
);
488 __private_extern__ kern_return_t
vm_object_update(
490 vm_object_offset_t offset
,
491 vm_size_t size
, /* should be 64 */
492 memory_object_return_t should_return
,
496 __private_extern__ kern_return_t
vm_object_lock_request(
498 vm_object_offset_t offset
,
499 vm_object_size_t size
,
500 memory_object_return_t should_return
,
506 __private_extern__ vm_object_t
vm_object_enter(
507 memory_object_t pager
,
508 vm_object_size_t size
,
511 boolean_t check_named
);
515 * Event waiting handling
518 #define VM_OBJECT_EVENT_INITIALIZED 0
519 #define VM_OBJECT_EVENT_PAGER_READY 1
520 #define VM_OBJECT_EVENT_PAGING_IN_PROGRESS 2
521 #define VM_OBJECT_EVENT_ABSENT_COUNT 3
522 #define VM_OBJECT_EVENT_LOCK_IN_PROGRESS 4
523 #define VM_OBJECT_EVENT_UNCACHING 5
524 #define VM_OBJECT_EVENT_COPY_CALL 6
525 #define VM_OBJECT_EVENT_CACHING 7
527 #define vm_object_assert_wait(object, event, interruptible) \
528 (((object)->all_wanted |= 1 << (event)), \
529 assert_wait((event_t)((vm_offset_t)(object)+(event)),(interruptible)))
531 #define vm_object_wait(object, event, interruptible) \
532 (vm_object_assert_wait((object),(event),(interruptible)), \
533 vm_object_unlock(object), \
534 thread_block(THREAD_CONTINUE_NULL)) \
536 #define thread_sleep_vm_object(object, event, interruptible) \
537 thread_sleep_mutex((event_t)(event), &(object)->Lock, (interruptible))
539 #define vm_object_sleep(object, event, interruptible) \
540 (((object)->all_wanted |= 1 << (event)), \
541 thread_sleep_vm_object((object), \
542 ((vm_offset_t)(object)+(event)), (interruptible)))
544 #define vm_object_wakeup(object, event) \
546 if ((object)->all_wanted & (1 << (event))) \
547 thread_wakeup((event_t)((vm_offset_t)(object) + (event))); \
548 (object)->all_wanted &= ~(1 << (event)); \
551 #define vm_object_set_wanted(object, event) \
553 ((object)->all_wanted |= (1 << (event))); \
556 #define vm_object_wanted(object, event) \
557 ((object)->all_wanted & (1 << (event)))
560 * Routines implemented as macros
563 #define vm_object_paging_begin(object) \
565 (object)->paging_in_progress++; \
568 #define vm_object_paging_end(object) \
570 assert((object)->paging_in_progress != 0); \
571 if (--(object)->paging_in_progress == 0) { \
572 vm_object_wakeup(object, \
573 VM_OBJECT_EVENT_PAGING_IN_PROGRESS); \
577 #define vm_object_paging_wait(object, interruptible) \
579 while ((object)->paging_in_progress != 0) { \
582 _wr = vm_object_sleep((object), \
583 VM_OBJECT_EVENT_PAGING_IN_PROGRESS, \
586 /*XXX if ((interruptible) && (_wr != THREAD_AWAKENED))*/\
591 #define vm_object_absent_assert_wait(object, interruptible) \
593 vm_object_assert_wait( (object), \
594 VM_OBJECT_EVENT_ABSENT_COUNT, \
599 #define vm_object_absent_release(object) \
601 (object)->absent_count--; \
602 vm_object_wakeup((object), \
603 VM_OBJECT_EVENT_ABSENT_COUNT); \
607 * Object locking macros
610 #define vm_object_lock_init(object) mutex_init(&(object)->Lock, ETAP_VM_OBJ)
611 #define vm_object_lock(object) mutex_lock(&(object)->Lock)
612 #define vm_object_unlock(object) mutex_unlock(&(object)->Lock)
613 #define vm_object_lock_try(object) mutex_try(&(object)->Lock)
615 #endif /* _VM_VM_OBJECT_H_ */