../review-rotation

A ferrisClueless reviewer

In this post, I describe:

I hope this post can share some insights into how compiler PRs are reviewed :3

Background

Pull requests to rustc and code reviews

rustc is maintained by the compiler team ("T-compiler"). Pull requests (PRs) to the compiler are expected to go through code reviews and requires approval (r+) from an authorized reviewer before the changes can be merged to master. Specifically, T-compiler reviewers.

What's the T-compiler review rotation?

The specifics are explained in more details in the re-organize the compiler team RFC, but the gist is that T-compiler members who volunteered to be on the review rotation will be randomly assigned PRs (or explicitly requested by PR authors or others) to review PRs primarily affecting the compiler.

Who dis?

I am a very new T-compiler toaster contributor. I was invited to join T-compiler contributors approximately two months ago (at the time this blog post was written). I am new to the compiler in general: I've only made changes to the compiler in random PRs here and there. Amusingly, looking through the PR history, many of my contributions to rust-lang/rust are not to the compiler itself (code in compiler/), but to the test infrastructure: to the test harness compiletest and to the run-make test suite.

Joining the compiler review rotation

As you can imagine, rustc is a big codebase, and I am not familiar with many parts of the compiler. But that's why we have a compiler team: different members on the team are familiar with different parts of the compiler.

The `:ferrisClueless:` emote. Taken from the Rust community discord, made by @.foobles.

I signed up for the compiler review rotation for the first time 1 anyway on 2024-04-05 and have since been assigned PRs to review (this list is not exhaustive because I have reviewed and/or approved PRs that are not assigned to me).

Having more compiler reviewers on rotation always help to relieve some of the review capacity pressure that the compiler team was having causing long delays in review times for compiler PRs (we went from having ~8 compiler reviewers on rotation to now ~17!).

It's quite overwhelming during the first few assigned PRs, especially because I'm also new to the compiler team. Actually, I'm just generally new to reviewing other people's code. We have some docs/guidance for review policies and the review procedure, but it's kinda scattered around in a couple of places: Rust Forge, rustc-dev-guide, in T-compiler folklore and presumably in some random HackMD documents somewhere too. It really is a learn-as-you-go experience. I try to learn from what other reviewers are doing, such as the reviewers assigned to my own PRs.

Fake it till you make it, right? Truly a :ferrisClueless: moment.

What goes into a compiler code review?

As a T-compiler reviewer, to successfully (for some metric of "successfully") review a randomly assigned PR, I need to:

A lot of consideration can go into a simple

@bors r+ rollup

I feel like it's hard to come up with useful generically applicable PR review workflows, because Every PR is Specialā„¢. Anyways, it does get easier as one gains more experience in the review workflow and more familiarity with more parts of the compiler. You develop a better "feel" for if you can review a given PR as you review more.

How I (try to) do code reviews

By YOLOing it.

Okay, maybe not quite that.

I try to always keep in mind that code reviews are a "we" thing: the PR author and the reviewer works together to improve the compiler. It's not a "versus" thing.

I try to:

What can make a PR easier to review?

With my reviewer hat on, these things can contribute to making a PR easier for me to review:

Aside: the Hot Potato game

Sometimes a PR make changes to more "exotic" parts of the compiler. Like ABI or layout. Or codegen. Then, what typically happens is that the first randomly assigned compiler reviewer is not comfortable with reviewing the changes, so they reroll with r?.

Then the second reviewer is also not comfortable with reviewing.

Then the third.

And fourth.

Until eventually we realize the dice has been rolled too many times and ask around on Zulip who's willing to take a look.

The Hot Potato game typically looks like this:

@author: *makes some ABI/layout/codegen changes*
@rustbot: *randomly assigns `@reviewer_2`*
@reviewer_1: r? compiler
@rustbot: *assigns `@reviewer_2`*
// 1 day later
@reviewer_2: I'm not comfortable reviewing this. r? compiler
@rustbot: *assigns `@reviewer_3`*
// 4 days later
@reviewer_3: Me neither. r? compiler
// 3 days later
@rustbot: *assigns `@reviewer_4`*
@reviewer_4: *opens zulip thread asking who can review this PR*
...
@rustbot: *assigns `@reviewer_n` who can finally review this PR*

There's just some extra delays if the hot potato keeps getting passed around, so we should really:

  1. Identify reviewers who are comfortable with e.g. ABI/layout/codegen, and
  2. Setup a ping group for experts who reviewers can consult with if they want extra pairs of eyes on delicate changes.

I'm sure I missed plenty of things I could've talked about, but that's what I was able to cook up (toast up?) when I was writing this blog post. Thanks for reading if you got this far! I look forward to more people (and toasters) joining the compiler review rotation in the future :3


1 Actually, not just for compiler/ changes; I also am in the reviewer pool for PRs affecting src/tools/run-make-support, tests/run-make and src/tools/compiletest.

2 I would love if rustbot has first-class support for supporting a multiple-reviewers model, where it is possible to request multiple primary reviewers and require joint approval.