mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 08:18:54 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			115 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | |
| /* vim:set ts=2 sw=2 sts=2 et cindent: */
 | |
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| #include "PHCManager.h"
 | |
| 
 | |
| #include "PHC.h"
 | |
| #include "mozilla/Literals.h"
 | |
| #include "mozilla/Preferences.h"
 | |
| #include "mozilla/StaticPrefs_memory.h"
 | |
| #include "mozilla/glean/XpcomMetrics.h"
 | |
| #include "prsystem.h"
 | |
| 
 | |
| namespace mozilla {
 | |
| 
 | |
| using namespace phc;
 | |
| 
 | |
| static const char kPHCEnabledPref[] = "memory.phc.enabled";
 | |
| static const char kPHCMinRamMBPref[] = "memory.phc.min_ram_mb";
 | |
| static const char kPHCAvgDelayFirst[] = "memory.phc.avg_delay.first";
 | |
| static const char kPHCAvgDelayNormal[] = "memory.phc.avg_delay.normal";
 | |
| static const char kPHCAvgDelayPageReuse[] = "memory.phc.avg_delay.page_reuse";
 | |
| 
 | |
| static const char kPHCAvgDelayContentFirst[] =
 | |
|     "memory.phc.avg_delay.content.first";
 | |
| static const char kPHCAvgDelayContentNormal[] =
 | |
|     "memory.phc.avg_delay.content.normal";
 | |
| static const char kPHCAvgDelayContentPageReuse[] =
 | |
|     "memory.phc.avg_delay.content.page_reuse";
 | |
| 
 | |
| // True if PHC has ever been enabled for this process.
 | |
| static bool sWasPHCEnabled = false;
 | |
| 
 | |
| static void UpdatePHCState() {
 | |
|   size_t mem_size = PR_GetPhysicalMemorySize() / (1_MiB);
 | |
|   size_t min_mem_size = StaticPrefs::memory_phc_min_ram_mb();
 | |
| 
 | |
|   // Only enable PHC if there are at least 8GB of ram.  Note that we use
 | |
|   // 1000 bytes per kilobyte rather than 1024.  Some 8GB machines will have
 | |
|   // slightly lower actual RAM available after some hardware devices
 | |
|   // reserve some.
 | |
|   if (StaticPrefs::memory_phc_enabled() && mem_size >= min_mem_size) {
 | |
|     // Set PHC probablities before enabling PHC so that the first allocation
 | |
|     // delay gets used.
 | |
|     if (XRE_IsContentProcess()) {
 | |
|       // Content processes can come and go and have their own delays
 | |
|       // configured.
 | |
|       SetPHCProbabilities(
 | |
|           StaticPrefs::memory_phc_avg_delay_content_first(),
 | |
|           StaticPrefs::memory_phc_avg_delay_content_normal(),
 | |
|           StaticPrefs::memory_phc_avg_delay_content_page_reuse());
 | |
|     } else {
 | |
|       // All other process types tend to exist for the length of the
 | |
|       // session, they're grouped here.
 | |
|       SetPHCProbabilities(StaticPrefs::memory_phc_avg_delay_first(),
 | |
|                           StaticPrefs::memory_phc_avg_delay_normal(),
 | |
|                           StaticPrefs::memory_phc_avg_delay_page_reuse());
 | |
|     }
 | |
| 
 | |
|     SetPHCState(Enabled);
 | |
|     sWasPHCEnabled = true;
 | |
|   } else {
 | |
|     SetPHCState(OnlyFree);
 | |
|   }
 | |
| }
 | |
| 
 | |
| static void PrefChangeCallback(const char* aPrefName, void* aNull) {
 | |
|   MOZ_ASSERT((0 == strcmp(aPrefName, kPHCEnabledPref)) ||
 | |
|              (0 == strcmp(aPrefName, kPHCMinRamMBPref)) ||
 | |
|              (0 == strcmp(aPrefName, kPHCAvgDelayFirst)) ||
 | |
|              (0 == strcmp(aPrefName, kPHCAvgDelayNormal)) ||
 | |
|              (0 == strcmp(aPrefName, kPHCAvgDelayPageReuse)) ||
 | |
|              (0 == strcmp(aPrefName, kPHCAvgDelayContentFirst)) ||
 | |
|              (0 == strcmp(aPrefName, kPHCAvgDelayContentNormal)) ||
 | |
|              (0 == strcmp(aPrefName, kPHCAvgDelayContentPageReuse)));
 | |
| 
 | |
|   UpdatePHCState();
 | |
| }
 | |
| 
 | |
| void InitPHCState() {
 | |
|   Preferences::RegisterCallback(PrefChangeCallback, kPHCEnabledPref);
 | |
|   Preferences::RegisterCallback(PrefChangeCallback, kPHCMinRamMBPref);
 | |
|   Preferences::RegisterCallback(PrefChangeCallback, kPHCAvgDelayFirst);
 | |
|   Preferences::RegisterCallback(PrefChangeCallback, kPHCAvgDelayNormal);
 | |
|   Preferences::RegisterCallback(PrefChangeCallback, kPHCAvgDelayPageReuse);
 | |
|   Preferences::RegisterCallback(PrefChangeCallback, kPHCAvgDelayContentFirst);
 | |
|   Preferences::RegisterCallback(PrefChangeCallback, kPHCAvgDelayContentNormal);
 | |
|   Preferences::RegisterCallback(PrefChangeCallback,
 | |
|                                 kPHCAvgDelayContentPageReuse);
 | |
|   UpdatePHCState();
 | |
| }
 | |
| 
 | |
| void ReportPHCTelemetry() {
 | |
|   if (!sWasPHCEnabled) {
 | |
|     return;
 | |
|   }
 | |
| 
 | |
|   MemoryUsage usage;
 | |
|   PHCMemoryUsage(usage);
 | |
| 
 | |
|   glean::memory_phc::slop.Accumulate(usage.mFragmentationBytes);
 | |
| 
 | |
|   PHCStats stats;
 | |
|   GetPHCStats(stats);
 | |
| 
 | |
|   glean::memory_phc::slots_allocated.AccumulateSingleSample(
 | |
|       stats.mSlotsAllocated);
 | |
|   glean::memory_phc::slots_freed.AccumulateSingleSample(stats.mSlotsFreed);
 | |
|   // There are also slots that are unused (neither free nor allocated) they
 | |
|   // can be calculated by knowing the total number of slots.
 | |
| }
 | |
| 
 | |
| };  // namespace mozilla
 | 
