Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | /* * Copyright (C) 2012-2017 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ #include "AvailableMemory.h" #include "Environment.h" #if BPLATFORM(IOS_FAMILY) #include "MemoryStatusSPI.h" #endif #include "PerProcess.h" #include "Scavenger.h" #include "Sizes.h" #include <mutex> #if BOS(DARWIN) #if BPLATFORM(IOS_FAMILY) #import <algorithm> #endif #import <dispatch/dispatch.h> #import <mach/host_info.h> #import <mach/mach.h> #import <mach/mach_error.h> #import <math.h> #elif BOS(UNIX) #include <unistd.h> #endif namespace bmalloc { static const size_t availableMemoryGuess = 512 * bmalloc::MB; #if BOS(DARWIN) static size_t memorySizeAccordingToKernel() { #if BPLATFORM(IOS_FAMILY_SIMULATOR) BUNUSED_PARAM(availableMemoryGuess); // Pretend we have 1024MB of memory to make cache sizes behave like on device. return 1024 * bmalloc::MB; #else host_basic_info_data_t hostInfo; mach_port_t host = mach_host_self(); mach_msg_type_number_t count = HOST_BASIC_INFO_COUNT; kern_return_t r = host_info(host, HOST_BASIC_INFO, (host_info_t)&hostInfo, &count); mach_port_deallocate(mach_task_self(), host); if (r != KERN_SUCCESS) return availableMemoryGuess; if (hostInfo.max_mem > std::numeric_limits<size_t>::max()) return std::numeric_limits<size_t>::max(); return static_cast<size_t>(hostInfo.max_mem); #endif } #endif #if BPLATFORM(IOS_FAMILY) static size_t jetsamLimit() { memorystatus_memlimit_properties_t properties; pid_t pid = getpid(); if (memorystatus_control(MEMORYSTATUS_CMD_GET_MEMLIMIT_PROPERTIES, pid, 0, &properties, sizeof(properties))) return 840 * bmalloc::MB; if (properties.memlimit_active < 0) return std::numeric_limits<size_t>::max(); return static_cast<size_t>(properties.memlimit_active) * bmalloc::MB; } #endif static size_t computeAvailableMemory() { #if BOS(DARWIN) size_t sizeAccordingToKernel = memorySizeAccordingToKernel(); #if BPLATFORM(IOS_FAMILY) sizeAccordingToKernel = std::min(sizeAccordingToKernel, jetsamLimit()); #endif size_t multiple = 128 * bmalloc::MB; // Round up the memory size to a multiple of 128MB because max_mem may not be exactly 512MB // (for example) and we have code that depends on those boundaries. return ((sizeAccordingToKernel + multiple - 1) / multiple) * multiple; #elif BOS(UNIX) long pages = sysconf(_SC_PHYS_PAGES); long pageSize = sysconf(_SC_PAGE_SIZE); if (pages == -1 || pageSize == -1) return availableMemoryGuess; return pages * pageSize; #else return availableMemoryGuess; #endif } size_t availableMemory() { static size_t availableMemory; static std::once_flag onceFlag; std::call_once(onceFlag, [] { availableMemory = computeAvailableMemory(); }); return availableMemory; } #if BPLATFORM(IOS_FAMILY) MemoryStatus memoryStatus() { task_vm_info_data_t vmInfo; mach_msg_type_number_t vmSize = TASK_VM_INFO_COUNT; size_t memoryFootprint = 0; if (KERN_SUCCESS == task_info(mach_task_self(), TASK_VM_INFO, (task_info_t)(&vmInfo), &vmSize)) memoryFootprint = static_cast<size_t>(vmInfo.phys_footprint); double percentInUse = static_cast<double>(memoryFootprint) / static_cast<double>(availableMemory()); double percentAvailableMemoryInUse = std::min(percentInUse, 1.0); return MemoryStatus(memoryFootprint, percentAvailableMemoryInUse); } #endif } // namespace bmalloc |