Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved coverage counter injection from BasicBlock to Statement. #75563

Merged
merged 1 commit into from
Aug 20, 2020

Conversation

@rust-highfive
Copy link
Collaborator

r? @ecstatic-morse

(rust_highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Aug 15, 2020
@richkadel
Copy link
Contributor Author

r? @wesleywiser
FYI @tmandry

@richkadel
Copy link
Contributor Author

This code builds for me without errors, even after I did another ./x.py clean. So I don't see why it's failing in CI with errors related to the derive...RustcEncodable, RustcDecodable....

I made a couple of what seem to be insignificant changes just now, and pushed them after successful testing locally. We'll see if something changes.

Note the way that I'm deriving these traits appears to be identical to how they are derived for other structs and enums, even in the same crate librustc_middle/mir/mod.rs, but the only failures are related to the new structs and enums that I just added.

Maybe I need a bootstrap config? I'm not sure.

Here's a snippet from the errors in the CI log, for reference:

    Checking rustc_builtin_macros v0.0.0 (/checkout/src/librustc_builtin_macros)
error[E0107]: wrong number of type arguments: expected 1, found 0
    --> src/librustc_middle/mir/mod.rs:1510:51
     |
1510 |   #[derive(Clone, Debug, PartialEq, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
     |                                                     ^^^^^^^^^^^^^^
     |                                                     |
     |                                                     expected 1 type argument
     |                                                     in this macro invocation
     | 
    ::: /checkout/library/core/src/macros/mod.rs:1432:5
     |
1432 | /     pub macro RustcDecodable($item:item) {
1433 | |         /* compiler built-in */
1434 | |     }
     | |_____- in this expansion of `#[derive(RustcDecodable)]`

error[E0107]: wrong number of type arguments: expected 1, found 0
    --> src/librustc_middle/mir/mod.rs:1510:35
     |
1510 |   #[derive(Clone, Debug, PartialEq, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
     |                                     ^^^^^^^^^^^^^^
     |                                     |
     |                                     expected 1 type argument

@richkadel
Copy link
Contributor Author

I just tested this on my local Linux workstation, after completely deleting my build directory first, and I can't reproduce this error.

@wesleywiser @tmandry - Are you familiar with this kind of issue?

The only thing different is I synched up my fork from rust-lang/rust yesterday around noon.

I can try synching again, but it seems too high of a coincidence that someone changed something in RustcEncoder/Decoder in the last 24 hours. Plus the error is only affecting my new structs and enums, and none of the others in the same package.

So I assume there's a different explanation.

@Mark-Simulacrum
Copy link
Member

#73851 merged 16 hours ago and is a pretty big rework of the serialization infra, I would rebase atop that.

@richkadel
Copy link
Contributor Author

Ah. Thanks Mark. I'll do that.

@richkadel
Copy link
Contributor Author

OK, yes, I can repro this locally now.

@richkadel richkadel force-pushed the llvm-coverage-map-gen-5.4 branch 2 times, most recently from ff2b514 to 04939cf Compare August 16, 2020 17:17
@richkadel
Copy link
Contributor Author

@Mark-Simulacrum - I'd like to "@bors try" this PR with tests enabled, for Linux, Mac, and Windows-Gnu. (MSVC is not currently supported).

Can you provide current instructions to set that up?

Thanks!

@Mark-Simulacrum
Copy link
Member

Mark-Simulacrum commented Aug 17, 2020

You should enable at most 2 builders on try at the same time (and wait to kick off a build until the previous one finishes), with at most 1 apple builder in any try run.

The steps are roughly:
For linux and windows: edit the try builder list here to include whichever builders you want, pulling from the rest of that file, e.g., in this case you'll want to look for name: x86_64-apple for the apple tests, name: x86_64-mingw-1 or name: x86_64-mingw-2 (2 runs UI and compile-fail tests, 1 runs everything else), and name: x86_64-gnu for main linux testing.

After editing run ./x.py run src/tools/expand-yaml-anchors and push

@bors
Copy link
Contributor

bors commented Aug 17, 2020

☔ The latest upstream changes (presumably #75187) made this pull request unmergeable. Please resolve the merge conflicts.

@richkadel
Copy link
Contributor Author

@Mark-Simulacrum - Thanks! I'm starting with Linux and MacOS (1 builder each).

See below. If I've done this wrong, let me know.

When you say _"...and wait to kick off a build until the previous one finishes", do you mean, if there is another try job currently in progress, manually watch the queue, wait for it to finish, and then submit @bors try request, hopefully getting it in before someone else?

Or is there a way I can automate this?

(FYI, I'm not sure I have the github permissions to start my own @bors try. I may need @wesleywiser or @tmandry to do it.)

    strategy:
      matrix:
        include:
          - name: x86_64-gnu
            <<: *job-linux-xl
          - name: x86_64-apple
            env:
              SCRIPT: ./x.py --stage 2 test
              RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc
              RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
              MACOSX_DEPLOYMENT_TARGET: 10.8
              MACOSX_STD_DEPLOYMENT_TARGET: 10.7
              NO_LLVM_ASSERTIONS: 1
              NO_DEBUG_ASSERTIONS: 1
            <<: *job-macos-xl

@richkadel
Copy link
Contributor Author

(FYI, if the snippet looks right, the PR has been updated, and is ready for the @bors try

@tmandry
Copy link
Member

tmandry commented Aug 17, 2020

@bors try

@bors
Copy link
Contributor

bors commented Aug 17, 2020

⌛ Trying commit 6381f8a4dcf3caf223b4289d465e932ae4f46de5 with merge 67ed07aa158e60bc073ab0ad5616071768ee2a5b...

@Mark-Simulacrum
Copy link
Member

Mark-Simulacrum commented Aug 17, 2020

Snippet looks right. Mostly it should be fine to start these on this PR not in parallel (i.e., don't request another try build on new push until this one finishes); we don't actually have metrics to see how much capacity we have but we try to avoid spawning too many builders on non-auto branch

@bors
Copy link
Contributor

bors commented Aug 17, 2020

☔ The latest upstream changes (presumably #75145) made this pull request unmergeable. Please resolve the merge conflicts.

@richkadel
Copy link
Contributor Author

@Mark-Simulacrum - The try has been running for quite a while.

I'm not able to find the running logs for my try jobs. Is there a way for me to see what's going on?

Thanks

@bors
Copy link
Contributor

bors commented Aug 18, 2020

⌛ Trying commit 36a96633aa7982177668f7bc607364cf3c666f22 with merge 56bc179652e0615fe28be47135c9b5b7c6589ab5...

@bors
Copy link
Contributor

bors commented Aug 18, 2020

☀️ Try build successful - checks-actions, checks-azure
Build commit: 56bc179652e0615fe28be47135c9b5b7c6589ab5 (56bc179652e0615fe28be47135c9b5b7c6589ab5)

@richkadel richkadel force-pushed the llvm-coverage-map-gen-5.4 branch 2 times, most recently from 8ca90f3 to 8675879 Compare August 18, 2020 04:31
@richkadel
Copy link
Contributor Author

@wesleywiser I made changes per your feedback, and also removed the changes to ci.yml files that expanded the bors try tests.

@bors
Copy link
Contributor

bors commented Aug 18, 2020

☔ The latest upstream changes (presumably #75566) made this pull request unmergeable. Please resolve the merge conflicts.

@wesleywiser
Copy link
Member

@richkadel

Do you want me to leave this as is, with StatementKind::Coverage(Box), or do you like the idea of StatementKind::Injected(Box)? (or something else)

I think for now, I'd prefer to leave it as StatementKind::Coverage. If we find a strong need to generalize this later, we can do that refactoring then.

@richkadel
Copy link
Contributor Author

I just resolved the new conflicts in the test .diff files.

@wesleywiser - If you're ready, can we submit to bors with norollup? There have been a lot of conflicts over the past 24 hours.

Thanks

@richkadel
Copy link
Contributor Author

Hmm, I must have missed the formatting issue last night. Fixed.

@wesleywiser
Copy link
Member

cc @rust-lang/compiler

This PR adds a new MIR StatementKind which is used by the LLVM code coverage feature. Prior to this change, the approach used a few intrinsics to set up the code coverage instrumentation correctly but this required relatively complex modifications to generated MIR during the code coverage pass.

The new approach here is much simpler overall and most of the rest of rustc can treat this new statement as a nop.

@richkadel
Copy link
Contributor Author

(Minor change. I just removed an unused parameter, is_cleanup, not needed now that I'm using "Statement".)

@wesleywiser
Copy link
Member

@bors r+

@bors
Copy link
Contributor

bors commented Aug 19, 2020

📌 Commit d129ac2 has been approved by wesleywiser

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 19, 2020
@bors
Copy link
Contributor

bors commented Aug 19, 2020

⌛ Testing commit d129ac2 with merge 5f6fcad...

@bors
Copy link
Contributor

bors commented Aug 20, 2020

☀️ Test successful - checks-actions, checks-azure
Approved by: wesleywiser
Pushing 5f6fcad to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Aug 20, 2020
@bors bors merged commit 5f6fcad into rust-lang:master Aug 20, 2020
@richkadel
Copy link
Contributor Author

🎉 Thanks @wesleywiser and @tmandry ! This will make everything else much better and easier.

I'm making good progress on injecting counters with good coverage spans, for branches (starting with specific cases). I'll share these soon, along with tests.

Comment on lines +1153 to +1154
/// Coverage code region and counter metadata.
Coverage,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@richkadel is PlaceContext::NonUse(NonUseContext::Coverage) reserved for a future use? It's never constructed currently.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tmiasko I think this got left in accidentally from a prior version of these changes where it was used. I believe it can be removed.

@cuviper cuviper added this to the 1.47.0 milestone May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
merged-by-bors This PR was explicitly merged by bors. S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.