d: Merge upstream dmd, druntime 2bbf64907c, phobos b64bfbf91
[official-gcc.git] / libsanitizer / sanitizer_common / sanitizer_mac_libcdep.cpp
blobb452dc4a49e23581a6213a48ae1a4c60ec5ba065
1 //===-- sanitizer_mac_libcdep.cpp -----------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file is shared between various sanitizers' runtime libraries and
10 // implements OSX-specific functions.
11 //===----------------------------------------------------------------------===//
13 #include "sanitizer_platform.h"
14 #if SANITIZER_APPLE
15 #include "sanitizer_mac.h"
17 #include <sys/mman.h>
19 namespace __sanitizer {
21 void RestrictMemoryToMaxAddress(uptr max_address) {
22 uptr size_to_mmap = GetMaxUserVirtualAddress() + 1 - max_address;
23 void *res = MmapFixedNoAccess(max_address, size_to_mmap, "high gap");
24 CHECK(res != MAP_FAILED);
27 } // namespace __sanitizer
29 #endif // SANITIZER_APPLE