[PATCH] D59797: [COFF] Reduce the size of Chunk and SectionChunk, NFC

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 3 12:53:24 PDT 2019


rnk added a comment.

In D59797#1452440 <https://reviews.llvm.org/D59797#1452440>, @MaskRay wrote:

> > this reduces the sum of heap allocations ... These numbers exclude memory mapped files
>
> May I ask how you counted the memory usage minus memory mapped files?


I'm using the Visual Studio memory profiler tool, which I believe just tracks heap allocations. It doesn't look at virtual memory or file mappings at all, it just sums the total size of all active heap allocations. So, it's not a complete picture of memory usage, but it represents the memory that we have the most control over.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59797/new/

https://reviews.llvm.org/D59797





More information about the llvm-commits mailing list