Skip to content

Single-byte counter support in coverage instrumentation #1002

Description

@woodruffw

Proposal

I propose extending rustc's -C instrument-coverage to allow support for LLVM's single-byte counters. No defaults would be changed, but -C instrument-coverage=counter would become the "canonical" variant of the current default.

Specifically, I propose -C instrument-coverage=presence-only as an opt-in mechanism for switching to single-byte counters. This option would be guarded behind -Z unstable-options.

(The name presence-only is picked as a happy medium -- "counters" is confusing in a context where the coverage is binary, and "presence" alone would also be confusing because all coverage is presence.)

Background and motivation

Per llvm/llvm-project#75425, single-byte counters are available in LLVM 19.1.0 and later. The equivalent clang frontend specific option for this is currently tucked behind an -mllvm passthrough, e.g. -mllvm -enable-single-byte-coverage.

The main advantage to single-byte counters is performance: LLVM's own (older) benchmarks show a 3-5% runtime improvement on x86(-64) platforms, and a much more dramatic 40-60% runtime improvement on ARM(-64) platforms. Single-byte counters also significant improve code size, since the instrumentation only needs to inject 8-bit counters rather an 64-bit ones.

The main disadvantage to single-byte counters is a decrease in fidelity: single-byte counters no longer track actual block hit counts, and instead only offer a binary "covered or not." This makes them unsuitable for use cases where the "heat" of covered regions is important, but perfectly suitable for use cases where line/block coverage is the primary concern.

Mentors or Reviewers

None yet. This is my first non-trivial compiler-side contribution to Rust, so I would appreciate a reviewer who is familiar with this part of the compiler.

Process

The main points of the Major Change Process are as follows:

  • File an issue describing the proposal.
  • A compiler team member who is knowledgeable in the area can second by writing @rustbot second or kickoff a team FCP with @rfcbot fcp $RESOLUTION.
  • Once an MCP is seconded, the Final Comment Period begins.
    • Final Comment Period lasts for 10 days after all outstanding concerns are solved.
    • Outstanding concerns will block the Final Comment Period from finishing. Once all concerns are resolved, the 10 day countdown is restarted.
    • If no concerns are raised after 10 days since the resolution of the last outstanding concern, the MCP is considered approved.

You can read more about Major Change Proposals on forge.

Caution

Concerns (2 active)

Managed by @rustbot—see help for details.

Metadata

Metadata

Assignees

No one assigned

    Labels

    T-compilerAdd this label so rfcbot knows to poll the compiler teamhas-concernsThere are active concernsmajor-changeA proposal to make a major change to rustc

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions