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

Switch gsl::span from GSL to tcbrindle’s implementation #6970

Merged
merged 9 commits into from
Nov 9, 2019

Conversation

linkmauve
Copy link
Contributor

This makes std::copy() (and maybe other functions) generate optimal code on all compilers, instead of just MSVC.

Here are comparisons of both implementations (toggle the compiler used at the top-left of the right pane):
With GSL: https://godbolt.org/z/FtnK52
With tcbrindle: https://godbolt.org/z/8_JA5d

As we can see, there is no regression on MSVC, but now both gcc and clang are able to generate memmove() calls.

This also lets us drop the GSL dependency altogether.

Closes #6948.

@Nekotekina
Copy link
Member

gsl::narrow can be replaced with ::narrow

@linkmauve linkmauve force-pushed the switch-gsl-tcb branch 3 times, most recently from 3a1721a to a4422e4 Compare November 9, 2019 16:20
@linkmauve
Copy link
Contributor Author

Any idea how to fix the Windows build?

@Nekotekina
Copy link
Member

Must be missing include path.
gsl::finally can also be removed as well 191675b

linkmauve and others added 8 commits November 9, 2019 19:30
This implementation optimises correctly on all relevant compilers,
unlike GSL’s which gave extremely slow code on any compiler other than
MSVC.

Supersedes RPCS3#6948.
GSL’s gsl::span didn’t use the correct type for its index_type, which is
why they were needed.
This is completely untested, as I can’t run Visual Studio.
@linkmauve
Copy link
Contributor Author

This should be good to go, thanks. :)

@Nekotekina Nekotekina merged commit 7519e36 into RPCS3:master Nov 9, 2019
@linkmauve linkmauve deleted the switch-gsl-tcb branch November 9, 2019 20:09
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

3 participants