blob: 525e622690233e8d6164ceb178f49b9be7697f33 [file] [log] [blame]
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
David Sehr79e26072018-04-06 17:58:50 -070017#ifndef ART_LIBARTBASE_BASE_MEM_MAP_H_
18#define ART_LIBARTBASE_BASE_MEM_MAP_H_
Brian Carlstromdb4d5402011-08-09 12:18:28 -070019
Brian Carlstrom27ec9612011-09-19 20:20:38 -070020#include <stddef.h>
21#include <sys/types.h>
Brian Carlstromdb4d5402011-08-09 12:18:28 -070022
Andreas Gampe0dfc3152017-04-24 07:58:06 -070023#include <map>
Igor Murashkin5573c372017-11-16 13:34:30 -080024#include <mutex>
Andreas Gampe0dfc3152017-04-24 07:58:06 -070025#include <string>
26
27#include "android-base/thread_annotations.h"
David Sehr1979c642018-04-26 14:41:18 -070028#include "macros.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070029
30namespace art {
31
Steve Austin882ed6b2018-06-08 11:40:38 -070032#if defined(__LP64__) && !defined(__Fuchsia__) && \
33 (defined(__aarch64__) || defined(__mips__) || defined(__APPLE__))
Ian Rogersc3ccc102014-06-25 11:52:14 -070034#define USE_ART_LOW_4G_ALLOCATOR 1
35#else
Steve Austin882ed6b2018-06-08 11:40:38 -070036#if defined(__LP64__) && !defined(__Fuchsia__) && !defined(__x86_64__)
Andreas Gampe651ba592017-06-14 14:41:33 -070037#error "Unrecognized 64-bit architecture."
38#endif
Ian Rogersc3ccc102014-06-25 11:52:14 -070039#define USE_ART_LOW_4G_ALLOCATOR 0
40#endif
41
Ian Rogersc5f17732014-06-05 20:48:42 -070042#ifdef __linux__
43static constexpr bool kMadviseZeroes = true;
Alex Lightca97ada2018-02-02 09:25:31 -080044#define HAVE_MREMAP_SYSCALL true
Ian Rogersc5f17732014-06-05 20:48:42 -070045#else
46static constexpr bool kMadviseZeroes = false;
Alex Lightca97ada2018-02-02 09:25:31 -080047// We cannot ever perform MemMap::ReplaceWith on non-linux hosts since the syscall is not
48// present.
49#define HAVE_MREMAP_SYSCALL false
Ian Rogersc5f17732014-06-05 20:48:42 -070050#endif
51
Brian Carlstromdb4d5402011-08-09 12:18:28 -070052// Used to keep track of mmap segments.
Andreas Gamped8f26db2014-05-19 17:01:13 -070053//
54// On 64b systems not supporting MAP_32BIT, the implementation of MemMap will do a linear scan
55// for free pages. For security, the start of this scan should be randomized. This requires a
56// dynamic initializer.
57// For this to work, it is paramount that there are no other static initializers that access MemMap.
58// Otherwise, calls might see uninitialized values.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070059class MemMap {
60 public:
Alex Lightca97ada2018-02-02 09:25:31 -080061 static constexpr bool kCanReplaceMapping = HAVE_MREMAP_SYSCALL;
62
Vladimir Markoc34bebf2018-08-16 16:12:49 +010063 // Creates an invalid mapping.
64 MemMap() {}
65
66 // Creates an invalid mapping. Used when we want to be more explicit than MemMap().
67 static MemMap Invalid() {
68 return MemMap();
69 }
70
Andreas Gampe44b31742018-10-01 19:30:57 -070071 MemMap(MemMap&& other) noexcept REQUIRES(!MemMap::mem_maps_lock_);
72 MemMap& operator=(MemMap&& other) noexcept REQUIRES(!MemMap::mem_maps_lock_) {
Vladimir Markoc34bebf2018-08-16 16:12:49 +010073 Reset();
74 swap(other);
75 return *this;
76 }
77
78 // Releases the memory mapping.
79 ~MemMap() REQUIRES(!MemMap::mem_maps_lock_);
80
81 // Swap two MemMaps.
82 void swap(MemMap& other);
83
84 void Reset() {
85 if (IsValid()) {
86 DoReset();
87 }
88 }
89
90 bool IsValid() const {
91 return base_size_ != 0u;
92 }
93
Alex Lightca97ada2018-02-02 09:25:31 -080094 // Replace the data in this memmmap with the data in the memmap pointed to by source. The caller
95 // relinquishes ownership of the source mmap.
96 //
97 // For the call to be successful:
98 // * The range [dest->Begin, dest->Begin() + source->Size()] must not overlap with
99 // [source->Begin(), source->End()].
100 // * Neither source nor dest may be 'reused' mappings (they must own all the pages associated
101 // with them.
102 // * kCanReplaceMapping must be true.
103 // * Neither source nor dest may use manual redzones.
104 // * Both source and dest must have the same offset from the nearest page boundary.
105 // * mremap must succeed when called on the mappings.
106 //
107 // If this call succeeds it will return true and:
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100108 // * Invalidate *source
Alex Lightca97ada2018-02-02 09:25:31 -0800109 // * The protection of this will remain the same.
110 // * The size of this will be the size of the source
111 // * The data in this will be the data from source.
112 //
113 // If this call fails it will return false and make no changes to *source or this. The ownership
114 // of the source mmap is returned to the caller.
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100115 bool ReplaceWith(/*in-out*/MemMap* source, /*out*/std::string* error);
Alex Lightca97ada2018-02-02 09:25:31 -0800116
Joel Fernandes (Google)92597a82018-08-17 16:19:19 -0700117 // Set a debug friendly name for a map. It will be prefixed with "dalvik-".
118 static void SetDebugName(void* map_ptr, const char* name, size_t size);
119
Elliott Hughesecd3a6f2012-06-06 18:16:37 -0700120 // Request an anonymous region of length 'byte_count' and a requested base address.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700121 // Use null as the requested base address if you don't care.
Vladimir Markoc09cd052018-08-23 16:36:36 +0100122 //
123 // `reuse` allows re-mapping an address range from an existing mapping which retains the
124 // ownership of the memory. Alternatively, `reservation` allows re-mapping the start of an
125 // existing reservation mapping, transferring the ownership of the memory to the new MemMap.
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800126 //
127 // The word "anonymous" in this context means "not backed by a file". The supplied
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000128 // 'name' will be used -- on systems that support it -- to give the mapping
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800129 // a name.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700130 //
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100131 // On success, returns returns a valid MemMap. On failure, returns an invalid MemMap.
132 static MemMap MapAnonymous(const char* name,
133 uint8_t* addr,
134 size_t byte_count,
135 int prot,
136 bool low_4gb,
137 bool reuse,
Vladimir Markoc09cd052018-08-23 16:36:36 +0100138 /*inout*/MemMap* reservation,
139 /*out*/std::string* error_msg,
Joel Fernandes (Google)92597a82018-08-17 16:19:19 -0700140 bool use_debug_name = true);
Vladimir Markof6985bd2018-08-24 09:02:28 +0100141 static MemMap MapAnonymous(const char* name,
Vladimir Markof6985bd2018-08-24 09:02:28 +0100142 size_t byte_count,
143 int prot,
144 bool low_4gb,
Vladimir Markoc09cd052018-08-23 16:36:36 +0100145 /*out*/std::string* error_msg) {
146 return MapAnonymous(name,
Vladimir Marko11306592018-10-26 14:22:59 +0100147 /*addr=*/ nullptr,
Vladimir Markoc09cd052018-08-23 16:36:36 +0100148 byte_count,
149 prot,
150 low_4gb,
Vladimir Marko11306592018-10-26 14:22:59 +0100151 /*reuse=*/ false,
152 /*reservation=*/ nullptr,
153 error_msg);
154 }
155 static MemMap MapAnonymous(const char* name,
156 size_t byte_count,
157 int prot,
158 bool low_4gb,
159 MemMap* reservation,
160 /*out*/std::string* error_msg) {
161 return MapAnonymous(name,
162 /*addr=*/ (reservation != nullptr) ? reservation->Begin() : nullptr,
163 byte_count,
164 prot,
165 low_4gb,
166 /*reuse=*/ false,
167 reservation,
Vladimir Markoc09cd052018-08-23 16:36:36 +0100168 error_msg);
Vladimir Markof6985bd2018-08-24 09:02:28 +0100169 }
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700170
David Srbecky1baabf02015-06-16 17:12:34 +0000171 // Create placeholder for a region allocated by direct call to mmap.
172 // This is useful when we do not have control over the code calling mmap,
173 // but when we still want to keep track of it in the list.
174 // The region is not considered to be owned and will not be unmmaped.
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100175 static MemMap MapDummy(const char* name, uint8_t* addr, size_t byte_count);
David Srbecky1baabf02015-06-16 17:12:34 +0000176
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700177 // Map part of a file, taking care of non-page aligned offsets. The
178 // "start" offset is absolute, not relative.
179 //
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100180 // On success, returns returns a valid MemMap. On failure, returns an invalid MemMap.
181 static MemMap MapFile(size_t byte_count,
182 int prot,
183 int flags,
184 int fd,
185 off_t start,
186 bool low_4gb,
187 const char* filename,
188 std::string* error_msg) {
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800189 return MapFileAtAddress(nullptr,
190 byte_count,
191 prot,
192 flags,
193 fd,
194 start,
Vladimir Marko11306592018-10-26 14:22:59 +0100195 /*low_4gb=*/ low_4gb,
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800196 filename,
Vladimir Marko11306592018-10-26 14:22:59 +0100197 /*reuse=*/ false,
198 /*reservation=*/ nullptr,
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800199 error_msg);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700200 }
201
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800202 // Map part of a file, taking care of non-page aligned offsets. The "start" offset is absolute,
203 // not relative. This version allows requesting a specific address for the base of the mapping.
Vladimir Markoc09cd052018-08-23 16:36:36 +0100204 //
205 // `reuse` allows re-mapping an address range from an existing mapping which retains the
206 // ownership of the memory. Alternatively, `reservation` allows re-mapping the start of an
207 // existing reservation mapping, transferring the ownership of the memory to the new MemMap.
208 //
209 // If error_msg is null then we do not print /proc/maps to the log if MapFileAtAddress fails.
210 // This helps improve performance of the fail case since reading and printing /proc/maps takes
211 // several milliseconds in the worst case.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700212 //
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100213 // On success, returns returns a valid MemMap. On failure, returns an invalid MemMap.
214 static MemMap MapFileAtAddress(uint8_t* addr,
215 size_t byte_count,
216 int prot,
217 int flags,
218 int fd,
219 off_t start,
220 bool low_4gb,
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100221 const char* filename,
Vladimir Markoc09cd052018-08-23 16:36:36 +0100222 bool reuse,
223 /*inout*/MemMap* reservation,
224 /*out*/std::string* error_msg);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700225
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800226 const std::string& GetName() const {
227 return name_;
228 }
229
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000230 bool Sync();
231
Logan Chiend88fa262012-06-06 15:23:32 +0800232 bool Protect(int prot);
233
Ian Rogersc5f17732014-06-05 20:48:42 -0700234 void MadviseDontNeedAndZero();
235
Ian Rogers1c849e52012-06-28 14:00:33 -0700236 int GetProtect() const {
237 return prot_;
238 }
239
Ian Rogers13735952014-10-08 12:43:28 -0700240 uint8_t* Begin() const {
Ian Rogers30fab402012-01-23 15:43:46 -0800241 return begin_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700242 }
243
Ian Rogers30fab402012-01-23 15:43:46 -0800244 size_t Size() const {
245 return size_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700246 }
247
Mathieu Chartier379d09f2015-01-08 11:28:13 -0800248 // Resize the mem-map by unmapping pages at the end. Currently only supports shrinking.
249 void SetSize(size_t new_size);
250
Ian Rogers13735952014-10-08 12:43:28 -0700251 uint8_t* End() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700252 return Begin() + Size();
253 }
254
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800255 void* BaseBegin() const {
256 return base_begin_;
257 }
258
259 size_t BaseSize() const {
260 return base_size_;
261 }
262
263 void* BaseEnd() const {
Ian Rogers13735952014-10-08 12:43:28 -0700264 return reinterpret_cast<uint8_t*>(BaseBegin()) + BaseSize();
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800265 }
266
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700267 bool HasAddress(const void* addr) const {
268 return Begin() <= addr && addr < End();
Brian Carlstromb765be02011-08-17 23:54:10 -0700269 }
270
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700271 // Unmap the pages at end and remap them to create another memory map.
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100272 MemMap RemapAtEnd(uint8_t* new_end,
273 const char* tail_name,
274 int tail_prot,
275 std::string* error_msg,
Joel Fernandes (Google)92597a82018-08-17 16:19:19 -0700276 bool use_debug_name = true);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700277
Orion Hodson1d3fd082018-09-28 09:38:35 +0100278 // Unmap the pages of a file at end and remap them to create another memory map.
279 MemMap RemapAtEnd(uint8_t* new_end,
280 const char* tail_name,
281 int tail_prot,
282 int tail_flags,
283 int fd,
284 off_t offset,
285 std::string* error_msg,
286 bool use_debug_name = true);
287
Vladimir Markoc09cd052018-08-23 16:36:36 +0100288 // Take ownership of pages at the beginning of the mapping. The mapping must be an
289 // anonymous reservation mapping, owning entire pages. The `byte_count` must not
290 // exceed the size of this reservation.
291 //
292 // Returns a mapping owning `byte_count` bytes rounded up to entire pages
293 // with size set to the passed `byte_count`.
294 MemMap TakeReservedMemory(size_t byte_count);
295
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100296 static bool CheckNoGaps(MemMap& begin_map, MemMap& end_map)
David Sehr1b14fb82017-02-01 10:42:11 -0800297 REQUIRES(!MemMap::mem_maps_lock_);
Vladimir Marko17a924a2015-05-08 15:17:32 +0100298 static void DumpMaps(std::ostream& os, bool terse = false)
David Sehr1b14fb82017-02-01 10:42:11 -0800299 REQUIRES(!MemMap::mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700300
David Sehr1b14fb82017-02-01 10:42:11 -0800301 // Init and Shutdown are NOT thread safe.
302 // Both may be called multiple times and MemMap objects may be created any
303 // time after the first call to Init and before the first call to Shutodwn.
304 static void Init() REQUIRES(!MemMap::mem_maps_lock_);
305 static void Shutdown() REQUIRES(!MemMap::mem_maps_lock_);
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700306
Hiroshi Yamauchi6edb9ae2016-02-08 14:18:21 -0800307 // If the map is PROT_READ, try to read each page of the map to check it is in fact readable (not
308 // faulting). This is used to diagnose a bug b/19894268 where mprotect doesn't seem to be working
309 // intermittently.
310 void TryReadable();
311
Hiroshi Yamauchi3c3c4a12017-02-21 16:49:59 -0800312 // Align the map by unmapping the unaligned parts at the lower and the higher ends.
313 void AlignBy(size_t size);
314
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700315 // For annotation reasons.
316 static std::mutex* GetMemMapsLock() RETURN_CAPABILITY(mem_maps_lock_) {
317 return nullptr;
318 }
319
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700320 private:
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800321 MemMap(const std::string& name,
322 uint8_t* begin,
323 size_t size,
324 void* base_begin,
325 size_t base_size,
326 int prot,
327 bool reuse,
David Sehr1b14fb82017-02-01 10:42:11 -0800328 size_t redzone_size = 0) REQUIRES(!MemMap::mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700329
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100330 void DoReset();
331 void Invalidate();
332 void SwapMembers(MemMap& other);
333
Vladimir Marko17a924a2015-05-08 15:17:32 +0100334 static void DumpMapsLocked(std::ostream& os, bool terse)
David Sehr1b14fb82017-02-01 10:42:11 -0800335 REQUIRES(MemMap::mem_maps_lock_);
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100336 static bool HasMemMap(MemMap& map)
David Sehr1b14fb82017-02-01 10:42:11 -0800337 REQUIRES(MemMap::mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700338 static MemMap* GetLargestMemMapAt(void* address)
David Sehr1b14fb82017-02-01 10:42:11 -0800339 REQUIRES(MemMap::mem_maps_lock_);
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700340 static bool ContainedWithinExistingMap(uint8_t* ptr, size_t size, std::string* error_msg)
David Sehr1b14fb82017-02-01 10:42:11 -0800341 REQUIRES(!MemMap::mem_maps_lock_);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700342
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800343 // Internal version of mmap that supports low 4gb emulation.
344 static void* MapInternal(void* addr,
345 size_t length,
346 int prot,
347 int flags,
348 int fd,
349 off_t offset,
Andreas Gampe651ba592017-06-14 14:41:33 -0700350 bool low_4gb)
351 REQUIRES(!MemMap::mem_maps_lock_);
352 static void* MapInternalArtLow4GBAllocator(size_t length,
353 int prot,
354 int flags,
355 int fd,
356 off_t offset)
357 REQUIRES(!MemMap::mem_maps_lock_);
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800358
Vladimir Markoc09cd052018-08-23 16:36:36 +0100359 // Release memory owned by a reservation mapping.
360 void ReleaseReservedMemory(size_t byte_count);
361
Steve Austin882ed6b2018-06-08 11:40:38 -0700362 // member function to access real_munmap
363 static bool CheckMapRequest(uint8_t* expected_ptr,
364 void* actual_ptr,
365 size_t byte_count,
366 std::string* error_msg);
367
Vladimir Markoc09cd052018-08-23 16:36:36 +0100368 static bool CheckReservation(uint8_t* expected_ptr,
369 size_t byte_count,
370 const char* name,
371 const MemMap& reservation,
372 /*out*/std::string* error_msg);
373
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100374 std::string name_;
375 uint8_t* begin_ = nullptr; // Start of data. May be changed by AlignBy.
376 size_t size_ = 0u; // Length of data.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700377
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100378 void* base_begin_ = nullptr; // Page-aligned base address. May be changed by AlignBy.
379 size_t base_size_ = 0u; // Length of mapping. May be changed by RemapAtEnd (ie Zygote).
380 int prot_ = 0; // Protection of the map.
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700381
Jim_Guoa62a5882014-04-28 11:11:57 +0800382 // When reuse_ is true, this is just a view of an existing mapping
383 // and we do not take ownership and are not responsible for
384 // unmapping.
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100385 bool reuse_ = false;
Jim_Guoa62a5882014-04-28 11:11:57 +0800386
Alex Lightca97ada2018-02-02 09:25:31 -0800387 // When already_unmapped_ is true the destructor will not call munmap.
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100388 bool already_unmapped_ = false;
Alex Lightca97ada2018-02-02 09:25:31 -0800389
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100390 size_t redzone_size_ = 0u;
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700391
Ian Rogersc3ccc102014-06-25 11:52:14 -0700392#if USE_ART_LOW_4G_ALLOCATOR
393 static uintptr_t next_mem_pos_; // Next memory location to check for low_4g extent.
Steve Austin882ed6b2018-06-08 11:40:38 -0700394
395 static void* TryMemMapLow4GB(void* ptr,
396 size_t page_aligned_byte_count,
397 int prot,
398 int flags,
399 int fd,
400 off_t offset);
Stuart Monteith8dba5aa2014-03-12 12:44:01 +0000401#endif
402
Steve Austin882ed6b2018-06-08 11:40:38 -0700403 static void TargetMMapInit();
404 static void* TargetMMap(void* start, size_t len, int prot, int flags, int fd, off_t fd_off);
405 static int TargetMUnmap(void* start, size_t len);
406
David Sehr1b14fb82017-02-01 10:42:11 -0800407 static std::mutex* mem_maps_lock_;
408
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700409 friend class MemMapTest; // To allow access to base_begin_ and base_size_.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700410};
Mathieu Chartier6e6078a2016-10-24 15:45:41 -0700411
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100412inline void swap(MemMap& lhs, MemMap& rhs) {
413 lhs.swap(rhs);
414}
415
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800416std::ostream& operator<<(std::ostream& os, const MemMap& mem_map);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700417
Mathieu Chartier6e6078a2016-10-24 15:45:41 -0700418// Zero and release pages if possible, no requirements on alignments.
419void ZeroAndReleasePages(void* address, size_t length);
420
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700421} // namespace art
422
David Sehr79e26072018-04-06 17:58:50 -0700423#endif // ART_LIBARTBASE_BASE_MEM_MAP_H_