-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Simplify trim-paths feature by merging all debuginfo options together #122450
Conversation
Thanks for the PR, @Urgau! I think we'll do this, but since this is deviating from the accepted RFC, I want to find out what the procedure is here. |
I'm not aware of such procedure. Our RFCs are not normative and it's common to diverged from them in the implementation and experimentation phase. I would say that as long as we respect the goal of the RFC (as defined in the Summary and Motivation section of the RFC), we are good to adapt the implementation to achieve that goal, particularly here since we are adapting the implementation to match the reality (ie. the current limitation of the tooling and LLVM). There is also nothing here that would prevent re-introducing the lost options in the future. So I think we are go to go. |
I actually remembered a similar case where I asked about the proceduce: Let's make sure we document what we are doing on the tracking issue an mention it in the stabilization FCP, then we should indeed be good. |
23601a6
to
84e54cd
Compare
Some changes occurred to MIR optimizations cc @rust-lang/wg-mir-opt Some changes occurred in compiler/rustc_codegen_cranelift cc @bjorn3 |
84e54cd
to
e4a6f48
Compare
This comment has been minimized.
This comment has been minimized.
4cfbe65
to
fe8e0d6
Compare
☔ The latest upstream changes (presumably #122713) made this pull request unmergeable. Please resolve the merge conflicts. |
fe8e0d6
to
e12220d
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
6e19ace
to
342e15d
Compare
Some changes occurred to the core trait solver cc @rust-lang/initiative-trait-system-refactor Some changes occurred to the CTFE / Miri engine cc @rust-lang/miri |
☔ The latest upstream changes (presumably #123166) made this pull request unmergeable. Please resolve the merge conflicts. |
so it can be remapped (or not) by callers
f2a2c4c
to
fefb8f1
Compare
Rebased (and fix some typos). @rustbot ready |
Thanks! @bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (685927a): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 668.043s -> 667.959s (-0.01%) |
…=michaelwoerister Simplify trim-paths feature by merging all debuginfo options together This PR simplifies the trim-paths feature by merging all debuginfo options together, as described in rust-lang#111540 (comment). And also do some correctness fixes found during the review. cc `@weihanglo` r? `@michaelwoerister`
This PR simplifies the trim-paths feature by merging all debuginfo options together, as described in #111540 (comment).
And also do some correctness fixes found during the review.
cc @weihanglo
r? @michaelwoerister