2020-06-15 14:18:57 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2021-10-14 00:27:13 +00:00
|
|
|
#include "libc/fmt/itoa.h"
|
2022-03-16 20:33:13 +00:00
|
|
|
#include "libc/intrin/kprintf.h"
|
2021-10-14 00:27:13 +00:00
|
|
|
#include "libc/macros.internal.h"
|
2021-09-04 20:20:47 +00:00
|
|
|
#include "libc/runtime/memtrack.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2021-10-14 00:27:13 +00:00
|
|
|
#define ADDR(x) ((intptr_t)((int64_t)((uint64_t)(x) << 32) >> 16))
|
|
|
|
|
|
|
|
static bool IsNoteworthyHole(unsigned i, const struct MemoryIntervals *mm) {
|
|
|
|
// gaps between shadow frames aren't interesting
|
|
|
|
// the chasm from heap to stack ruins statistics
|
2021-10-15 02:36:49 +00:00
|
|
|
return !(
|
|
|
|
(IsArenaFrame(mm->p[i].y) && !IsArenaFrame(mm->p[i + 1].x)) ||
|
|
|
|
(IsShadowFrame(mm->p[i].y) || IsShadowFrame(mm->p[i + 1].x)) ||
|
|
|
|
(!IsStaticStackFrame(mm->p[i].y) && IsStaticStackFrame(mm->p[i + 1].x)));
|
2021-10-14 00:27:13 +00:00
|
|
|
}
|
|
|
|
|
2020-08-25 11:23:25 +00:00
|
|
|
void PrintMemoryIntervals(int fd, const struct MemoryIntervals *mm) {
|
2021-10-14 00:27:13 +00:00
|
|
|
char *p, mode[8];
|
|
|
|
long i, w, frames, maptally = 0, gaptally = 0;
|
|
|
|
for (w = i = 0; i < mm->i; ++i) {
|
|
|
|
w = MAX(w, LengthInt64Thousands(mm->p[i].y + 1 - mm->p[i].x));
|
|
|
|
}
|
2020-08-25 11:23:25 +00:00
|
|
|
for (i = 0; i < mm->i; ++i) {
|
|
|
|
frames = mm->p[i].y + 1 - mm->p[i].x;
|
|
|
|
maptally += frames;
|
2022-03-16 20:33:13 +00:00
|
|
|
kprintf("%012lx-%012lx %s %'*ldx%s", ADDR(mm->p[i].x), ADDR(mm->p[i].y + 1),
|
|
|
|
DescribeMapping(mm->p[i].prot, mm->p[i].flags, mode), w, frames,
|
|
|
|
DescribeFrame(mm->p[i].x));
|
2021-10-14 00:27:13 +00:00
|
|
|
if (i + 1 < _mmi.i) {
|
|
|
|
frames = mm->p[i + 1].x - mm->p[i].y - 1;
|
|
|
|
if (frames && IsNoteworthyHole(i, mm)) {
|
|
|
|
gaptally += frames;
|
2022-03-16 20:33:13 +00:00
|
|
|
kprintf(" w/ %'ld frame hole", frames);
|
2021-10-14 00:27:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mm->p[i].h != -1) {
|
2022-03-16 20:33:13 +00:00
|
|
|
kprintf(" h=%ld", mm->p[i].h);
|
2021-10-14 00:27:13 +00:00
|
|
|
}
|
2022-04-24 16:59:22 +00:00
|
|
|
kprintf("\n");
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2022-04-24 16:59:22 +00:00
|
|
|
kprintf("# %ld frames mapped w/ %'ld frames gapped\n", maptally, gaptally);
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|