Skip to content

Commit 85589e1

Browse files
committed
Move detailed --timings documentation from unstable docs to reference docs
1 parent 086e71d commit 85589e1

File tree

4 files changed

+53
-40
lines changed

4 files changed

+53
-40
lines changed

src/doc/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
* [Dependency Resolution](reference/resolver.md)
4040
* [SemVer Compatibility](reference/semver.md)
4141
* [Future incompat report](reference/future-incompat-report.md)
42+
* [Reporting build timings](reference/timings.md)
4243
* [Unstable Features](reference/unstable.md)
4344

4445
* [Cargo Commands](commands/index.md)

src/doc/src/reference/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ The reference covers the details of various areas of Cargo.
2222
* [Dependency Resolution](resolver.md)
2323
* [SemVer Compatibility](semver.md)
2424
* [Future incompat report](future-incompat-report.md)
25+
* [Reporting build timings](timings.md)
2526
* [Unstable Features](unstable.md)

src/doc/src/reference/timings.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Reporting build timings
2+
The `--timings` option gives some information about how long each compilation
3+
takes, and tracks concurrency information over time.
4+
5+
```sh
6+
cargo build --timings
7+
```
8+
9+
This writes an HTML report in `target/cargo-timings/cargo-timings.html`. This
10+
also writes a copy of the report to the same directory with a timestamp in the
11+
filename, if you want to look at older runs.
12+
13+
#### Reading the graphs
14+
15+
There are two graphs in the output. The "unit" graph shows the duration of
16+
each unit over time. A "unit" is a single compiler invocation. There are lines
17+
that show which additional units are "unlocked" when a unit finishes. That is,
18+
it shows the new units that are now allowed to run because their dependencies
19+
are all finished. Hover the mouse over a unit to highlight the lines. This can
20+
help visualize the critical path of dependencies. This may change between runs
21+
because the units may finish in different orders.
22+
23+
The "codegen" times are highlighted in a lavender color. In some cases, build
24+
pipelining allows units to start when their dependencies are performing code
25+
generation. This information is not always displayed (for example, binary
26+
units do not show when code generation starts).
27+
28+
The "custom build" units are `build.rs` scripts, which when run are
29+
highlighted in orange.
30+
31+
The second graph shows Cargo's concurrency over time. The background
32+
indicates CPU usage. The three lines are:
33+
- "Waiting" (red) — This is the number of units waiting for a CPU slot to
34+
open.
35+
- "Inactive" (blue) — This is the number of units that are waiting for their
36+
dependencies to finish.
37+
- "Active" (green) — This is the number of units currently running.
38+
39+
Note: This does not show the concurrency in the compiler itself. `rustc`
40+
coordinates with Cargo via the "job server" to stay within the concurrency
41+
limit. This currently mostly applies to the code generation phase.
42+
43+
Tips for addressing compile times:
44+
- Look for slow dependencies.
45+
- Check if they have features that you may wish to consider disabling.
46+
- Consider trying to remove the dependency completely.
47+
- Look for a crate being built multiple times with different versions. Try to
48+
remove the older versions from the dependency graph.
49+
- Split large crates into smaller pieces.
50+
- If there are a large number of crates bottlenecked on a single crate, focus
51+
your attention on improving that one crate to improve parallelism.

src/doc/src/reference/unstable.md

-40
Original file line numberDiff line numberDiff line change
@@ -401,46 +401,6 @@ library. The default enabled features, at this time, are `backtrace` and
401401
`panic_unwind`. This flag expects a comma-separated list and, if provided, will
402402
override the default list of features enabled.
403403

404-
#### Reading the graphs
405-
406-
There are two graphs in the output. The "unit" graph shows the duration of
407-
each unit over time. A "unit" is a single compiler invocation. There are lines
408-
that show which additional units are "unlocked" when a unit finishes. That is,
409-
it shows the new units that are now allowed to run because their dependencies
410-
are all finished. Hover the mouse over a unit to highlight the lines. This can
411-
help visualize the critical path of dependencies. This may change between runs
412-
because the units may finish in different orders.
413-
414-
The "codegen" times are highlighted in a lavender color. In some cases, build
415-
pipelining allows units to start when their dependencies are performing code
416-
generation. This information is not always displayed (for example, binary
417-
units do not show when code generation starts).
418-
419-
The "custom build" units are `build.rs` scripts, which when run are
420-
highlighted in orange.
421-
422-
The second graph shows Cargo's concurrency over time. The background
423-
indicates CPU usage. The three lines are:
424-
- "Waiting" (red) — This is the number of units waiting for a CPU slot to
425-
open.
426-
- "Inactive" (blue) — This is the number of units that are waiting for their
427-
dependencies to finish.
428-
- "Active" (green) — This is the number of units currently running.
429-
430-
Note: This does not show the concurrency in the compiler itself. `rustc`
431-
coordinates with Cargo via the "job server" to stay within the concurrency
432-
limit. This currently mostly applies to the code generation phase.
433-
434-
Tips for addressing compile times:
435-
- Look for slow dependencies.
436-
- Check if they have features that you may wish to consider disabling.
437-
- Consider trying to remove the dependency completely.
438-
- Look for a crate being built multiple times with different versions. Try to
439-
remove the older versions from the dependency graph.
440-
- Split large crates into smaller pieces.
441-
- If there are a large number of crates bottlenecked on a single crate, focus
442-
your attention on improving that one crate to improve parallelism.
443-
444404
### binary-dep-depinfo
445405
* Tracking rustc issue: [#63012](https://github.com/rust-lang/rust/issues/63012)
446406

0 commit comments

Comments
 (0)