• Stars
    star
    437
  • Rank 96,299 (Top 2 %)
  • Language
    C#
  • License
    MIT License
  • Created almost 4 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Tools for profiling and visualizing C++ build times.

CompileScore

VisualStudio extension and utilities used to display and highlight compilation profiling data. Know the real compilation cost of your code directly inside Visual Studio. Keep the compile times in check.

MarketPlace MarketPlace Donate

Download latest VSIX from the Visual Studio Marketplace 2022

Download latest VSIX from the Visual Studio Marketplace 2019

Download latest Data Extractor Executable

Motivation

Compile times are one of the most important things that affect productivity and iterations while developing in C/C++. Slow compile times can be very frustrating, as they are usual case scenarios in big code productions. Being able to identify which pieces are expensive in the same place you code is key in order to keep tech debt under control.

Features

Build and Profile

Build And Profile

Text Highlight on include costs

Highlight screenshot

Tool window with full project aggregated data

Overview image

Detailed Timeline Graph for each translation unit

Timeline image

Double-click any entry in the compile score window to open its timeline.

Includers Graph

Timeline image

This window shows all the inclusion stacks that lead to the selected include, ending with the compilation units.

Right-click on any include entry and select Show Includers Graph to open its includers graph.

Navigation controls:

  • Zoom: Control + Mouse Wheel
  • Scroll: Middle mouse press and drag

Standalone App

This repository also contains a standalone app with the same visualization and code as the VS extension. It can prove useful to compare results or open reports without having to open Visual Studio.

The app needs to be build. The project is inside the same solution as the VS extensions and it can be found at CompileScore/CompileScore.sln.

How it works

The main idea is to get the C++ compiler to output a trace for what happened during the build. We can then aggregate all that data using the Data Extractor in this repository, and consume it with the VS plugin or the standalone app.

The data extraction is an independent process in order to allow things like building the score file on a build server and consume it remotely. This can be useful in big codebases where we want the production floor to just use the reports from last night inside VS without having to profile locally.

pipeline flow

In the VS extension options there is a field to tell the plugin where to find the report file (this is next to the solution file or root folder by default).

For more information check the Score Generation Page.

Documentation

Building the Project

The Release workflow action contains a step by step process for building the Data Extractor, the VISX and the Standalone App.

Several Test Projects have been included in the repository.

References

Related

If you're not using Visual Studio but are still interested in the data aggregation, you can use SeeProfiler, a standalone C++ compiler profiler which aggregates all the exported data from clang for a global view.

Contributing

This project is open to code contributions.

If you found this extension useful you can always buy me a cup coffee.

paypal