Skip to content

Commit abf2226

Browse files
committed
darwin: Enhance memory metrics support for Apple Silicon (ARM64)
1 parent 599233f commit abf2226

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

configure.ac

+4
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,10 @@ if test "$my_htop_platform" = darwin; then
330330
AC_CHECK_FUNCS([mach_timebase_info])
331331
AC_CHECK_DECLS([IOMainPort], [], [], [[#include <IOKit/IOKitLib.h>]])
332332
AC_CHECK_DECLS([IOMasterPort], [], [], [[#include <IOKit/IOKitLib.h>]])
333+
334+
AC_CHECK_FUNCS([host_statistics64], [
335+
AC_CHECK_TYPES([struct vm_statistics64], [], [], [[#include <mach/vm_statistics.h>]])
336+
], [], [[#include <mach/mach.h>]])
333337
fi
334338

335339
if test "$my_htop_platform" = pcp; then

darwin/DarwinMachine.c

+12-4
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,20 @@ static unsigned DarwinMachine_allocateCPULoadInfo(processor_cpu_load_info_t* p)
5959
return cpu_count;
6060
}
6161

62-
static void DarwinMachine_getVMStats(vm_statistics_t p) {
62+
static void DarwinMachine_getVMStats(DarwinMachine* this) {
63+
#ifdef HAVE_STRUCT_VM_STATISTICS64
64+
mach_msg_type_number_t info_size = HOST_VM_INFO64_COUNT;
65+
66+
if (host_statistics64(mach_host_self(), HOST_VM_INFO64, (host_info_t)&this->vm_stats, &info_size) != 0) {
67+
CRT_fatalError("Unable to retrieve VM statistics64");
68+
}
69+
#else
6370
mach_msg_type_number_t info_size = HOST_VM_INFO_COUNT;
6471

65-
if (host_statistics(mach_host_self(), HOST_VM_INFO, (host_info_t)p, &info_size) != 0) {
72+
if (host_statistics(mach_host_self(), HOST_VM_INFO, (host_info_t)&this->vm_stats, &info_size) != 0) {
6673
CRT_fatalError("Unable to retrieve VM statistics");
6774
}
75+
#endif
6876
}
6977

7078
void Machine_scan(Machine* super) {
@@ -74,7 +82,7 @@ void Machine_scan(Machine* super) {
7482
DarwinMachine_freeCPULoadInfo(&host->prev_load);
7583
host->prev_load = host->curr_load;
7684
DarwinMachine_allocateCPULoadInfo(&host->curr_load);
77-
DarwinMachine_getVMStats(&host->vm_stats);
85+
DarwinMachine_getVMStats(host);
7886
openzfs_sysctl_updateArcStats(&host->zfs);
7987
}
8088

@@ -91,7 +99,7 @@ Machine* Machine_new(UsersTable* usersTable, uid_t userId) {
9199
DarwinMachine_allocateCPULoadInfo(&this->curr_load);
92100

93101
/* Initialize the VM statistics */
94-
DarwinMachine_getVMStats(&this->vm_stats);
102+
DarwinMachine_getVMStats(this);
95103

96104
/* Initialize the ZFS kstats, if zfs.kext loaded */
97105
openzfs_sysctl_init(&this->zfs);

darwin/DarwinMachine.h

+4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ typedef struct DarwinMachine_ {
1818
Machine super;
1919

2020
host_basic_info_data_t host_info;
21+
#ifdef HAVE_STRUCT_VM_STATISTICS64
22+
vm_statistics64_data_t vm_stats;
23+
#else
2124
vm_statistics_data_t vm_stats;
25+
#endif
2226
processor_cpu_load_info_t prev_load;
2327
processor_cpu_load_info_t curr_load;
2428

darwin/Platform.c

+15
Original file line numberDiff line numberDiff line change
@@ -292,13 +292,28 @@ double Platform_setCPUValues(Meter* mtr, unsigned int cpu) {
292292

293293
void Platform_setMemoryValues(Meter* mtr) {
294294
const DarwinMachine* dhost = (const DarwinMachine*) mtr->host;
295+
#ifdef HAVE_STRUCT_VM_STATISTICS64
296+
const struct vm_statistics64* vm = &dhost->vm_stats;
297+
#else
295298
const struct vm_statistics* vm = &dhost->vm_stats;
299+
#endif
296300
double page_K = (double)vm_page_size / (double)1024;
297301

298302
mtr->total = dhost->host_info.max_mem / 1024;
303+
#ifdef HAVE_STRUCT_VM_STATISTICS64
304+
natural_t used = vm->active_count + vm->inactive_count +
305+
vm->speculative_count + vm->wire_count +
306+
vm->compressor_page_count - vm->purgeable_count - vm->external_page_count;
307+
mtr->values[MEMORY_METER_USED] = (double)(used - vm->compressor_page_count) * page_K;
308+
#else
299309
mtr->values[MEMORY_METER_USED] = (double)(vm->active_count + vm->wire_count) * page_K;
310+
#endif
300311
// mtr->values[MEMORY_METER_SHARED] = "shared memory, like tmpfs and shm"
312+
#ifdef HAVE_STRUCT_VM_STATISTICS64
313+
mtr->values[MEMORY_METER_COMPRESSED] = (double)vm->compressor_page_count * page_K;
314+
#else
301315
// mtr->values[MEMORY_METER_COMPRESSED] = "compressed memory, like zswap on linux"
316+
#endif
302317
mtr->values[MEMORY_METER_BUFFERS] = (double)vm->purgeable_count * page_K;
303318
mtr->values[MEMORY_METER_CACHE] = (double)vm->inactive_count * page_K;
304319
// mtr->values[MEMORY_METER_AVAILABLE] = "available memory"

0 commit comments

Comments
 (0)