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

Remove the need for a callback to be passed to format_args! #20136

Merged
merged 6 commits into from
Dec 28, 2014

Conversation

eddyb
Copy link
Member

@eddyb eddyb commented Dec 22, 2014

We have the technology: no longer do you need to write closures to use format_args!.
This is a [breaking-change], as it forces you to clean up old hacks - if you had code like this:

format_args!(fmt::format, "{} {} {}", a, b, c)
format_args!(|args| { w.write_fmt(args) }, "{} {} {}", x, y, z)

change it to this:

fmt::format(format_args!("{} {} {}", a, b, c))
w.write_fmt(format_args!("{} {} {}", x, y, z))

To allow them to be called with format_args!(...) directly, several functions were modified to
take fmt::Arguments by value instead of by reference. Also, fmt::Arguments derives Copy
now in order to preserve all usecases that were previously possible.

@rust-highfive
Copy link
Contributor

r? @alexcrichton

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

@eddyb eddyb force-pushed the format-args branch 3 times, most recently from 73751a3 to defc033 Compare December 23, 2014 09:28
@eddyb eddyb force-pushed the format-args branch 2 times, most recently from d15b7f1 to 0517bba Compare December 23, 2014 20:27
@alexcrichton
Copy link
Member

This looks amazing @eddyb, really nice work!

This is a somewhat-large structure to be passing around by value, could you make sure we're not giving up any perf with a benchmark or two?

@eddyb
Copy link
Member Author

eddyb commented Dec 27, 2014

So I ended up on a wild goose chase. Or to be more precise, chasing the ghosts of nanoseconds.
I was seeing a lot of variation (more than the difference between old and new timings).
TBQH I don't really like what we're doing with #[bench].
For small things, it feels useless without a RTOS and CPU frequency pinning - we're not even using user time!

Turns out we generate the same IR - technically it differs, but only in ordering of the instructions.
The assembly is identical. Case closed.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…g a wrapper block.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…ing a function with them.
@alexcrichton
Copy link
Member

Thanks for investigating this @eddyb! I'm excited for this to land!

bors added a commit that referenced this pull request Dec 28, 2014
We have the technology: no longer do you need to write closures to use `format_args!`.
This is a `[breaking-change]`, as it forces you to clean up old hacks - if you had code like this:
```rust
format_args!(fmt::format, "{} {} {}", a, b, c)
format_args!(|args| { w.write_fmt(args) }, "{} {} {}", x, y, z)
```
change it to this: 
```rust
fmt::format(format_args!("{} {} {}", a, b, c))
w.write_fmt(format_args!("{} {} {}", x, y, z))
```
To allow them to be called with `format_args!(...)` directly, several functions were modified to
take `fmt::Arguments` by value instead of by reference. Also, `fmt::Arguments` derives `Copy`
now in order to preserve all usecases that were previously possible.
@bors bors merged commit 647e54d into rust-lang:master Dec 28, 2014
@eddyb eddyb deleted the format-args branch December 28, 2014 08:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants