MemoryInfra #

MemoryInfra is a timeline-based profiling system integrated in chrome://tracing. It aims at creating Chrome-scale memory measurement tooling so that on any Chrome in the world --- desktop, mobile, Chrome OS or any other --- with the click of a button you can understand where memory is being used in your system.

[TOC]

Getting Started #

  1. Get a bleeding-edge or tip-of-tree build of Chrome.

  2. Record a trace as usual: open chrome://tracing on Desktop Chrome or chrome://inspect?tracing to trace Chrome for Android.

  3. Make sure to enable the memory-infra category on the right.

    Tick the memory-infra checkbox when recording a trace.

  4. For now, some subsystems only work if Chrome is started with the --no-sandbox flag.

Timeline View and Analysis View

After recording a trace, you will see the timeline view. Timeline view shows:

Click one of the M dots to bring up the analysis view. Click on a cell in analysis view to reveal more information about its subsystem. PartitionAlloc for instance, has more details about its partitions.

Component details for PartitionAlloc

The purple M dots represent heavy dumps. In these dumps, components can provide more details than in the regular dumps. The full details of the MemoryInfra UI are explained in its design doc.

Columns #

Columns in blue reflect the amount of actual physical memory used by the process. This is what exerts memory pressure on the system.

Columns in black reflect a best estimation of the the amount of physical memory used by various subsystems of Chrome.

The tracing column in gray reports memory that is used to collect all of the above information. This memory would not be used if tracing were not enabled, and it is discounted from malloc and the blue columns.

Related Pages #

Rationale #

Another memory profiler? What is wrong with tool X? Most of the existing tools:

MemoryInfra leverages the existing tracing infrastructure in Chrome and provides contextual data:

Development #

MemoryInfra is based on a simple and extensible architecture. See the slides on how to get your subsystem reported in MemoryInfra, or take a look at one of the existing examples such as malloc_dump_provider.cc. The crbug label is Hotlist-MemoryInfra. Don't hesitate to contact tracing@chromium.org for questions and support.

Design documents #

Architectural:

Chrome-side design docs:

Catapult-side design docs: