uvm_amap.h revision 1.3 1 /* $NetBSD: uvm_amap.h,v 1.3 1998/02/07 11:07:58 mrg Exp $ */
2
3 /*
4 * XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
5 * >>>USE AT YOUR OWN RISK, WORK IS NOT FINISHED<<<
6 */
7 /*
8 *
9 * Copyright (c) 1997 Charles D. Cranor and Washington University.
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by Charles D. Cranor and
23 * Washington University.
24 * 4. The name of the author may not be used to endorse or promote products
25 * derived from this software without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 *
38 * from: Id: uvm_amap.h,v 1.1.2.7 1998/01/05 18:12:56 chuck Exp
39 */
40
41 /*
42 * uvm_amap.h
43 */
44
45 UVMHIST_DECL(maphist);
46
47 /*
48 * defines for handling of large sparce amaps.
49 *
50 * currently the kernel likes to allocate large chunks of VM to reserve
51 * them for possible use. for example, it allocates (reserves) a large
52 * chunk of user VM for possible stack growth. most of the time only
53 * a page or two of this VM is actually used. since the stack is anonymous
54 * memory it makes sense for it to live in an amap, but if we allocated
55 * an amap for the entire stack range we could end up wasting a large
56 * amount of malloc'd KVM.
57 *
58 * for example, on the i386 at boot time we allocate two amaps for the stack
59 * of /sbin/init:
60 * 1. a 7680 slot amap at protection 0 (reserve space for stack)
61 * 2. a 512 slot amap at protection 7 (top of stack)
62 *
63 * most of that VM is never mapped or used.
64 *
65 * to avoid allocating amap resources for the whole range we have the
66 * VM system look for maps that are larger than UVM_AMAP_LARGE slots
67 * (note that 1 slot = 1 vm_page). for maps that are large, we attempt
68 * to break them up into UVM_AMAP_CHUNK slot sized amaps.
69 *
70 * so, in the i386 example, the 7680 slot area is never referenced so
71 * nothing gets allocated. the 512 slot area is referenced, and it
72 * gets divided into 16 slot chunks (hopefully with one 16 slot chunk
73 * being enough to handle the whole stack...).
74 */
75
76 #define UVM_AMAP_LARGE 256 /* # of slots in "large" amap */
77 #define UVM_AMAP_CHUNK 16 /* # of slots to chunk large amaps in */
78
79
80 #ifdef DIAGNOSTIC
81 #define AMAP_B2SLOT(S,B) { \
82 if ((B) % PAGE_SIZE) \
83 panic("AMAP_B2SLOT: invalid byte count"); \
84 (S) = (B) / PAGE_SIZE; \
85 }
86 #else
87 #define AMAP_B2SLOT(S,B) (S) = (B) / PAGE_SIZE
88 #endif
89
90 #ifdef VM_AMAP_PPREF
91 #define PPREF_NONE ((int *) -1)
92 #endif
93
94 /*
95 * handle inline options
96 */
97
98 #ifdef UVM_AMAP_INLINE
99 #define AMAP_INLINE static __inline
100 #else
101 #define AMAP_INLINE /* nothing */
102 #endif /* UVM_AMAP_INLINE */
103
104 /*
105 * prototypes: the following prototypes define the interface to amaps
106 */
107
108 AMAP_INLINE vm_offset_t amap_add __P((struct vm_aref *, vm_offset_t,
109 struct vm_anon *, int));
110 struct vm_amap *amap_alloc __P((vm_offset_t, vm_offset_t, int));
111 void amap_copy __P((vm_map_t, vm_map_entry_t, int, boolean_t,
112 vm_offset_t, vm_offset_t));
113 void amap_cow_now __P((vm_map_t, vm_map_entry_t));
114 void amap_extend __P((vm_map_entry_t, vm_size_t));
115 void amap_free __P((struct vm_amap *));
116 AMAP_INLINE struct vm_anon *amap_lookup __P((struct vm_aref *, vm_offset_t));
117 AMAP_INLINE void amap_lookups __P((struct vm_aref *, vm_offset_t,
118 struct vm_anon **, int));
119 #ifdef VM_AMAP_PPREF
120 void amap_pp_adjref __P((struct vm_amap *, int, vm_size_t, int));
121 void amap_pp_establish __P((struct vm_amap *));
122 #endif
123 AMAP_INLINE void amap_ref __P((vm_map_entry_t, int));
124 void amap_share_protect __P((vm_map_entry_t, vm_prot_t));
125 void amap_splitref __P((struct vm_aref *, struct vm_aref *, vm_offset_t));
126 AMAP_INLINE void amap_unadd __P((struct vm_amap *, vm_offset_t));
127 AMAP_INLINE void amap_unref __P((vm_map_entry_t, int));
128 void amap_wipeout __P((struct vm_amap *));
129 #ifdef VM_AMAP_PPREF
130 void amap_wiperange __P((struct vm_amap *, int, int));
131 #endif
132
133 struct vm_anon *uvm_analloc __P((void));
134 void uvm_anfree __P((struct vm_anon *));
135 void uvm_anon_init __P((void));
136 void uvm_anon_add __P((int));
137 struct vm_page *uvm_anon_lockloanpg __P((struct vm_anon *));
138