Fix bf500c3: reduce the amount of vars to track by using std::string_view #9389
+23
−23
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #9386.
Alternative to #9390. Closes #9390.
Motivation / Problem
MacOS said: BOOOO
GCC said: fuck this shit
See #9386 for details and triage. But basically, since we changed a
const char *
intostd::string
, more than one compiler went apeshit on us. I present a (possibly temporary) solution: replace it withconst std::string_view
.Description
I do not really know why compilers start to track the
std::string
like this, or let alone why it blows up optimizations (GCC, from what I understand, tracks 50M vars before giving up .. that sounds like an insane alot for the few settings we have). Either way, on a hunch I replacedstd::string
withconst std::string
.. no change. So what aboutconst std::string_view
? Fixes the issue. Riggghhtttttt....So to be clear, I have no clue why. I do know it is (most likely) a save operation, as the string itself will be stored in the data-segment, and the
string_view
will be a thin wrapper around that.Sadly, this means in a few places where we were replacing
const char *
withstd::string
, I revert that situation a bit, as I cheeky use.data()
to get this compiling again. By default astd::string_view
cannot be casted to astd::string
. But I mostly think this indicates places where we should change thestd::string
tostd::string_view
instead of the other way around. Either way, I pushed this outside the scope of this PR, to keep this "fix" to its core element.The commit message:
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.