Accounting patch:
[unix-history] / sys / vm / vm_object.h
CommitLineData
15637ed4
RG
1/*
2 * Copyright (c) 1991 Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
1284e777
RG
36 * from: @(#)vm_object.h 7.3 (Berkeley) 4/21/91
37 * $Id$
38 */
39
40/*
15637ed4
RG
41 * Copyright (c) 1987, 1990 Carnegie-Mellon University.
42 * All rights reserved.
43 *
44 * Authors: Avadis Tevanian, Jr., Michael Wayne Young
45 *
46 * Permission to use, copy, modify and distribute this software and
47 * its documentation is hereby granted, provided that both the copyright
48 * notice and this permission notice appear in all copies of the
49 * software, derivative works or modified versions, and any portions
50 * thereof, and that both notices appear in supporting documentation.
51 *
52 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
53 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
54 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
55 *
56 * Carnegie Mellon requests users of this software to return to
57 *
58 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
59 * School of Computer Science
60 * Carnegie Mellon University
61 * Pittsburgh PA 15213-3890
62 *
63 * any improvements or extensions that they make and grant Carnegie the
64 * rights to redistribute these changes.
65 */
66
67/*
68 * Virtual memory object module definitions.
69 */
70
71#ifndef _VM_OBJECT_
72#define _VM_OBJECT_
73
74#include <vm/vm_pager.h>
75
76/*
77 * Types defined:
78 *
79 * vm_object_t Virtual memory object.
80 */
81
82struct vm_object {
83 queue_chain_t memq; /* Resident memory */
84 queue_chain_t object_list; /* list of all objects */
85 simple_lock_data_t Lock; /* Synchronization */
86 int LockHolder;
87 int ref_count; /* How many refs?? */
88 vm_size_t size; /* Object size */
89 int resident_page_count;
90 /* number of resident pages */
91 struct vm_object *copy; /* Object that holds copies of
92 my changed pages */
93 vm_pager_t pager; /* Where to get data */
94 boolean_t pager_ready; /* Have pager fields been filled? */
95 vm_offset_t paging_offset; /* Offset into paging space */
96 struct vm_object *shadow; /* My shadow */
97 vm_offset_t shadow_offset; /* Offset in shadow */
98 unsigned int
99 paging_in_progress:16,
100 /* Paging (in or out) - don't
101 collapse or destroy */
102 /* boolean_t */ can_persist:1, /* allow to persist */
103 /* boolean_t */ internal:1; /* internally created object */
104 queue_chain_t cached_list; /* for persistence */
105};
106
107typedef struct vm_object *vm_object_t;
108
109struct vm_object_hash_entry {
110 queue_chain_t hash_links; /* hash chain links */
111 vm_object_t object; /* object we represent */
112};
113
114typedef struct vm_object_hash_entry *vm_object_hash_entry_t;
115
116#ifdef KERNEL
117queue_head_t vm_object_cached_list; /* list of objects persisting */
118int vm_object_cached; /* size of cached list */
119simple_lock_data_t vm_cache_lock; /* lock for object cache */
120
121queue_head_t vm_object_list; /* list of allocated objects */
122long vm_object_count; /* count of all objects */
123simple_lock_data_t vm_object_list_lock;
124 /* lock for object list and count */
125
126vm_object_t kernel_object; /* the single kernel object */
127vm_object_t kmem_object;
128
129#define vm_object_cache_lock() simple_lock(&vm_cache_lock)
130#define vm_object_cache_unlock() simple_unlock(&vm_cache_lock)
131#endif KERNEL
132
133/*
134 * Declare procedures that operate on VM objects.
135 */
136
137void vm_object_init ();
138void vm_object_terminate();
139vm_object_t vm_object_allocate();
140void vm_object_reference();
141void vm_object_deallocate();
142void vm_object_pmap_copy();
143void vm_object_pmap_remove();
144void vm_object_page_remove();
145void vm_object_shadow();
146void vm_object_copy();
147void vm_object_collapse();
148vm_object_t vm_object_lookup();
149void vm_object_enter();
150void vm_object_setpager();
151#define vm_object_cache(pager) pager_cache(vm_object_lookup(pager),TRUE)
152#define vm_object_uncache(pager) pager_cache(vm_object_lookup(pager),FALSE)
153
154void vm_object_cache_clear();
155void vm_object_print();
156
157#if VM_OBJECT_DEBUG
158#define vm_object_lock_init(object) { simple_lock_init(&(object)->Lock); (object)->LockHolder = 0; }
159#define vm_object_lock(object) { simple_lock(&(object)->Lock); (object)->LockHolder = (int) current_thread(); }
160#define vm_object_unlock(object) { (object)->LockHolder = 0; simple_unlock(&(object)->Lock); }
161#define vm_object_lock_try(object) (simple_lock_try(&(object)->Lock) ? ( ((object)->LockHolder = (int) current_thread()) , TRUE) : FALSE)
162#define vm_object_sleep(event, object, interruptible) \
163 { (object)->LockHolder = 0; thread_sleep((event), &(object)->Lock, (interruptible)); }
164#else VM_OBJECT_DEBUG
165#define vm_object_lock_init(object) simple_lock_init(&(object)->Lock)
166#define vm_object_lock(object) simple_lock(&(object)->Lock)
167#define vm_object_unlock(object) simple_unlock(&(object)->Lock)
168#define vm_object_lock_try(object) simple_lock_try(&(object)->Lock)
169#define vm_object_sleep(event, object, interruptible) \
170 thread_sleep((event), &(object)->Lock, (interruptible))
171#endif VM_OBJECT_DEBUG
172
173#endif _VM_OBJECT_