-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Nuke Buffer
abstraction from librustdoc
, take 2 💣
#136784
Nuke Buffer
abstraction from librustdoc
, take 2 💣
#136784
Conversation
0b77581
to
cbfbc2f
Compare
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
…ake2, r=<try> Nuke `Buffer` abstraction from `librustdoc`, take 2 💣 In rust-lang#136656 I found out that the for_html field in the Buffer struct was never read, and pondered if Buffer had any utility at all. `@GuillaumeGomez` said he agrees that it can be just removed. So this PR is me removing it. So, r? `@aDotInTheVoid` , maybe? Supersedes rust-lang#136748
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (3254d61): comparison URL. Overall result: ❌✅ regressions and improvements - please read the text belowBenchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Instruction countThis is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary -1.0%, secondary 6.2%)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 (primary -2.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: 779.273s -> 779.002s (-0.03%) |
Both improvements and regressions seem unrelated (not on the "Doc" profile), so this is probably neutral, which makes sense. |
src/librustdoc/html/format.rs
Outdated
} | ||
/// This macro is the same as [`std::write!`] for [`String`]s, but swallows the returned `Result`, | ||
/// since writing into a `String` can never fail. | ||
macro_rules! write_str { |
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 adding macros to do such little operations. You can instead write a function expecting a String
so that it doesn't need a new trait for each write_str!
/write!
call. Also, renaming the macro into write
makes the code reading a lot more complex.
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.
The reason why this is a macro (and why write!
itself is a macro in the STD), is that otherwise every call would like something like this:
let mut buf = String::new();
write_str(&mut buf, format_args!("format str, {}", var));
// instead of:
write!(buf, "format str, {}", var);
I don't like this macro either, but I think the best alternative would be to add let _ = ...
or unwrap()
s to every call to write!
on a string (which would be very verbose), or leave the Buffer
be.
For the record, my future plan is to move as many functions as possible to use RPIT to return an impl fmt::Display
, instead of accepting a &mut String
as a param, and then get rid of this macro. I tried to do that in #136748 , but that PR became very big...
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.
Still better than writing a new macro, using format_args
is fine. As a first step until something better comes up is ok.
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.
Done.
Not sure I love the function names (write_str
and writeln_str
), if you have a better idea in mind I'll be happy to rename them :)
src/librustdoc/html/format.rs
Outdated
} | ||
/// This macro is the same as [`std::writeln!`] for [`String`]s, but swallows the returned `Result`, | ||
/// since writing into a `String` can never fail. | ||
macro_rules! writeln_str { |
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.
Same here, make a function instead.
cbfbc2f
to
9cb57c6
Compare
src/librustdoc/html/format.rs
Outdated
pub(crate) fn len(&self) -> usize { | ||
self.buffer.len() | ||
} | ||
pub(crate) fn writeln_str(s: &mut String, f: fmt::Arguments<'_>) { |
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.
Just realized but if we always use format_args
as argument, we can ismply put the \n
directly into it so we don't need this function and not need to have s.push('\n')
either.
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.
Yep, that's true.
The one reason for having a separate writeln_str
function is that it'll be easier to move to writeln!
once we stop passing &mut String
s around. The codebase currently has instances of both writeln!
and write!("...\n")
.
Since another call to .push('\n')
might be bad for perf (it could cause reallocations), what we could do in the meantime is delete the writeln_str
fn and use write_str
with the (unstable) format_args_nl
macro.
Or we could just add \n
s to format strings :)
Whatever you prefer.
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.
Let's use write_str
with format_args_nl
then.
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.
Done.
Looks good to me, thanks! r=me once CI pass |
8aab3d1
to
39eb5e9
Compare
Thanks! Rebased everything into one commit. |
Awesome! Let's go then. :) @bors r+ rollup |
…-take2, r=GuillaumeGomez Nuke `Buffer` abstraction from `librustdoc`, take 2 💣 In rust-lang#136656 I found out that the for_html field in the Buffer struct was never read, and pondered if Buffer had any utility at all. `@GuillaumeGomez` said he agrees that it can be just removed. So this PR is me removing it. So, r? `@aDotInTheVoid` , maybe? Supersedes rust-lang#136748
39eb5e9
to
d99d8c2
Compare
Had a merge conflict with #136829 , gonna need another approval, I think @GuillaumeGomez / @aDotInTheVoid (this PR is not listed as "approved" on the homu queue anymore) |
@bors r+ rollup |
…llaumeGomez Rollup of 10 pull requests Successful merges: - rust-lang#136758 (tests: `-Copt-level=3` instead of `-O` in assembly tests) - rust-lang#136761 (tests: `-Copt-level=3` instead of `-O` in codegen tests) - rust-lang#136784 (Nuke `Buffer` abstraction from `librustdoc`, take 2 💣) - rust-lang#136838 (Check whole `Unsize` predicate for escaping bound vars) - rust-lang#136848 (add docs and ut for bootstrap util cache) - rust-lang#136871 (dev-guide: Link to `t-lang` procedures for new features) - rust-lang#136890 (Change swap_nonoverlapping from lang to library UB) - rust-lang#136901 (compiler: give `ExternAbi` truly stable `Hash` and `Ord`) - rust-lang#136907 (compiler: Make middle errors `pub(crate)` and bury the dead code) - rust-lang#136916 (use cc archiver as default in `cc2ar`) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#136784 - yotamofek:pr/rustdoc-remove-buffer-take2, r=GuillaumeGomez Nuke `Buffer` abstraction from `librustdoc`, take 2 💣 In rust-lang#136656 I found out that the for_html field in the Buffer struct was never read, and pondered if Buffer had any utility at all. `@GuillaumeGomez` said he agrees that it can be just removed. So this PR is me removing it. So, r? `@aDotInTheVoid` , maybe? Supersedes rust-lang#136748
…play-redux, r=<try> `librustdoc`: return `impl fmt::Display` in more places instead of writing to strings Continuation of rust-lang#136784 , another attempt at landing the larger parts of rust-lang#136748 . I'd like to, gradually, make all of the building blocks for rendering docs in `librustdoc` return `impl fmt::Display` instead of returning `Strings`, or receiving a `&mut String` (or `&mut impl fmt::Write`). Another smaller end goal is to be able to get rid of [`write_str`](https://github.com/rust-lang/rust/blob/8dac72bb1d12b2649acd0c190e41524f83da5683/src/librustdoc/html/format.rs#L40-L42). This PR is a large step in that direction. Most of the changes are quite mechanical, and split up into separate commits for easier reviewing (hopefully). I took `print_item` and then started by converting all the functions it called (and their dependencies), and the last commit does the conversion for `print_item` itself. Ignoring whitespace should make reviewing a bit easier. And most importantly, perf run shows pretty good results locally, hopefully CI will also show green 😁 r? `@GuillaumeGomez` , if you feel like it.
In #136656 I found out that the for_html field in the Buffer struct was never read, and pondered if Buffer had any utility at all. @GuillaumeGomez said he agrees that it can be just removed. So this PR is me removing it. So, r? @aDotInTheVoid , maybe?
Supersedes #136748