-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
added some new test to check for result and options opt #137278
Conversation
Sorry for being slow to get to this! Yes,
Hmm, yeah, this is interesting. I think it's a combination of two things:
I guess between those it doesn't want to write possibly-undef to the sret unless it knows it should. Maybe just leave those out for now? I opened #138332 that maybe we should be using a different layout for them anyway. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for picking this up! It's great to see that LLVM's gotten smarter.
// TWENTY-NEXT: %trunc = trunc nuw i64 %0 to i1 | ||
// TWENTY-NEXT: %.2 = select i1 %trunc, i64 %1, i64 undef |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please avoid hard-coding value names in here, because (unless they're parameters or things we directly set in rustc) it makes the tests fragile as the name changes. This doesn't care about it being named specifically %.2
for example, so it'd be good to use a variable for that instead.
Similarly for %trunc
, so please update to something along the lines of
// TWENTY-NEXT: %trunc = trunc nuw i64 %0 to i1 | |
// TWENTY-NEXT: %.2 = select i1 %trunc, i64 %1, i64 undef | |
// TWENTY-NEXT: %[[IS_SOME:.+]] = trunc nuw i64 %0 to i1 | |
// TWENTY-NEXT: %[[PAYLOAD:.+]] = select i1 %[[IS_SOME]], i64 %1, i64 undef |
and similarly in the other tests.
(The %0
and %1
parameters are fine without needing variables like this, though.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Scott! I have updated the tests. Please do take a look again
9d47b00
to
bcbb199
Compare
@rustbot ready |
Looks good, thanks! @bors r+ rollup=iffy (would be nice if it rolls up, but it's risky because new codegen test changes, so up to your judgment) |
… r=scottmcm added some new test to check for result and options opt Apologies for the delay. Finally have some time to get back into contributing. ## Context - Added some tests to show optimization on result and options for 64 and 128 bits - Relevant issue rust-lang#101210 ## Some newb questions from me - [x] My local llvm IR has `nuw` in `result_nop_match_128` etc whereas [godbolt version](https://rust.godbolt.org/z/Td9zoT5zn) doesn't have. So I put optional there, but not sure if it's desirable (maybe I'm not using the compiled llvm in the repo). I ran the test with ```bash ./x test tests/codegen/try_question_mark_nop.rs ``` - [x] Unless I'm reading it wrongly, but `option_nop_match_128` and `option_nop_traits_128` look to be **not** optimized away? Update: Here's the test for future reference ```rust // CHECK-LABEL: `@option_nop_match_128` #[no_mangle] pub fn option_nop_match_128(x: Option<i128>) -> Option<i128> { // CHECK: start: // CHECK-NEXT: %trunc = trunc nuw i128 %0 to i1 // CHECK-NEXT: br i1 %trunc, label %bb3, label %bb4 // CHECK: bb3: // CHECK-NEXT: %2 = getelementptr inbounds {{(nuw )?}}i8, ptr %_0, i64 16 // CHECK-NEXT: store i128 %1, ptr %2, align 16 // CHECK: bb4: // CHECK-NEXT: %storemerge = phi i128 [ 1, %bb3 ], [ 0, %start ] // CHECK-NEXT: store i128 %storemerge, ptr %_0, align 16 // CHECK-NEXT: ret void match x { Some(x) => Some(x), None => None, } } ``` r? `@scottmcm`
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
From a quick scan it looks like that failure might be legit? |
Looks like it. Will take a look |
Silly mistake on my part. Will fix and run tests for both llvm versions when I got home later. Thanks! |
bcbb199
to
0fba203
Compare
@rustbot ready |
Thanks for the updates! Let's try it again... |
☀️ Test successful - checks-actions |
Finished benchmarking commit (5f3b84a): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (primary -0.0%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (secondary -6.3%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 775.015s -> 775.444s (0.06%) |
Apologies for the delay. Finally have some time to get back into contributing.
Context
Result
doesn't optimize away for some payload widths #101210Some newb questions from me
nuw
inresult_nop_match_128
etc whereas godbolt version doesn't have. So I put optional there, but not sure if it's desirable (maybe I'm not using the compiled llvm in the repo). I ran the test with./x test tests/codegen/try_question_mark_nop.rs
option_nop_match_128
andoption_nop_traits_128
look to be not optimized away?Update:
Here's the test for future reference
r? @scottmcm