2 * Copyright (c) 2009 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_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 License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <vm/vm_map_store_ll.h>
32 first_free_is_valid_ll( vm_map_t map
)
34 vm_map_entry_t entry
, next
;
35 entry
= vm_map_to_entry(map
);
36 next
= entry
->vme_next
;
37 while (vm_map_trunc_page(next
->vme_start
) == vm_map_trunc_page(entry
->vme_end
) ||
38 (vm_map_trunc_page(next
->vme_start
) == vm_map_trunc_page(entry
->vme_start
) &&
39 next
!= vm_map_to_entry(map
))) {
41 next
= entry
->vme_next
;
42 if (entry
== vm_map_to_entry(map
))
45 if (map
->first_free
!= entry
) {
46 printf("Bad first_free for map %p: %p should be %p\n",
47 map
, map
->first_free
, entry
);
56 * Updates the map->first_free pointer to the
57 * entry immediately before the first hole in the map.
58 * The map should be locked.
60 #define UPDATE_FIRST_FREE_LL(map, new_first_free) \
62 if( map->disable_vmentry_reuse == FALSE){ \
64 vm_map_entry_t UFF_first_free; \
65 vm_map_entry_t UFF_next_entry; \
67 UFF_first_free = (new_first_free); \
68 UFF_next_entry = UFF_first_free->vme_next; \
69 while (vm_map_trunc_page(UFF_next_entry->vme_start) == \
70 vm_map_trunc_page(UFF_first_free->vme_end) || \
71 (vm_map_trunc_page(UFF_next_entry->vme_start) == \
72 vm_map_trunc_page(UFF_first_free->vme_start) && \
73 UFF_next_entry != vm_map_to_entry(UFF_map))) { \
74 UFF_first_free = UFF_next_entry; \
75 UFF_next_entry = UFF_first_free->vme_next; \
76 if (UFF_first_free == vm_map_to_entry(UFF_map)) \
79 UFF_map->first_free = UFF_first_free; \
80 assert(first_free_is_valid(UFF_map)); \
84 #define _vm_map_entry_link_ll(hdr, after_where, entry) \
87 (entry)->vme_prev = (after_where); \
88 (entry)->vme_next = (after_where)->vme_next; \
89 (entry)->vme_prev->vme_next = (entry)->vme_next->vme_prev = (entry); \
92 #define _vm_map_entry_unlink_ll(hdr, entry) \
95 (entry)->vme_next->vme_prev = (entry)->vme_prev; \
96 (entry)->vme_prev->vme_next = (entry)->vme_next; \
99 * Macro: vm_map_copy_insert
102 * Link a copy chain ("copy") into a map at the
103 * specified location (after "where").
105 * The copy chain is destroyed.
107 * The arguments are evaluated multiple times.
109 #define _vm_map_copy_insert_ll(map, where, copy) \
112 vm_map_entry_t VMCI_where; \
113 vm_map_copy_t VMCI_copy; \
115 VMCI_where = (where); \
116 VMCI_copy = (copy); \
117 ((VMCI_where->vme_next)->vme_prev = vm_map_copy_last_entry(VMCI_copy))\
118 ->vme_next = (VMCI_where->vme_next); \
119 ((VMCI_where)->vme_next = vm_map_copy_first_entry(VMCI_copy)) \
120 ->vme_prev = VMCI_where; \
121 VMCI_map->hdr.nentries += VMCI_copy->cpy_hdr.nentries; \
122 update_first_free_ll(VMCI_map, VMCI_map->first_free); \
128 vm_map_store_init_ll( __unused
struct vm_map_header
*hdr
)
134 * vm_map_lookup_entry_ll: [ internal use only ]
135 * Use the linked list to find the map entry containing (or
136 * immediately preceding) the specified address
137 * in the given map; the entry is returned
138 * in the "entry" parameter. The boolean
139 * result indicates whether the address is
140 * actually contained in the map.
143 vm_map_store_lookup_entry_ll(
144 register vm_map_t map
,
145 register vm_map_offset_t address
,
146 vm_map_entry_t
*entry
) /* OUT */
148 register vm_map_entry_t cur
;
149 register vm_map_entry_t last
;
152 * Start looking either from the head of the
153 * list, or from the hint.
157 if (cur
== vm_map_to_entry(map
))
160 if (address
>= cur
->vme_start
) {
162 * Go from hint to end of list.
164 * But first, make a quick check to see if
165 * we are already looking at the entry we
166 * want (which is usually the case).
167 * Note also that we don't need to save the hint
168 * here... it is the same hint (unless we are
169 * at the header, in which case the hint didn't
170 * buy us anything anyway).
172 last
= vm_map_to_entry(map
);
173 if ((cur
!= last
) && (cur
->vme_end
> address
)) {
180 * Go from start to hint, *inclusively*
182 last
= cur
->vme_next
;
183 cur
= vm_map_first_entry(map
);
190 while (cur
!= last
) {
191 if (cur
->vme_end
> address
) {
192 if (address
>= cur
->vme_start
) {
194 * Save this lookup for future
199 SAVE_HINT_MAP_READ(map
, cur
);
207 *entry
= cur
->vme_prev
;
208 SAVE_HINT_MAP_READ(map
, *entry
);
214 vm_map_store_entry_link_ll( struct vm_map_header
*mapHdr
, vm_map_entry_t after_where
, vm_map_entry_t entry
)
216 _vm_map_entry_link_ll( mapHdr
, after_where
, entry
);
220 vm_map_store_entry_unlink_ll( struct vm_map_header
*mapHdr
, vm_map_entry_t entry
)
222 _vm_map_entry_unlink_ll( mapHdr
, entry
);
226 vm_map_store_copy_insert_ll( vm_map_t map
, vm_map_entry_t after_where
, vm_map_copy_t copy
)
228 _vm_map_copy_insert_ll( map
, after_where
, copy
);
232 vm_map_store_copy_reset_ll( vm_map_copy_t copy
, __unused vm_map_entry_t entry
, __unused
int nentries
)
234 copy
->cpy_hdr
.nentries
= 0;
235 vm_map_copy_first_entry(copy
) =
236 vm_map_copy_last_entry(copy
) =
237 vm_map_copy_to_entry(copy
);
242 update_first_free_ll( vm_map_t map
, vm_map_entry_t new_first_free
)
244 UPDATE_FIRST_FREE_LL( map
, new_first_free
);