-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Generate SourceMap mappings string using array of character codes and fewer String.fromCharCode calls #44031
Generate SourceMap mappings string using array of character codes and fewer String.fromCharCode calls #44031
Conversation
@typescript-bot perf test this |
@typescript-bot perf test this |
1 similar comment
@typescript-bot perf test this |
Heya @DanielRosenwasser, I've started to run the perf test suite on this PR at 34a0217. You can monitor the build here. Update: The results are in! |
@DanielRosenwasser Here they are:Comparison Report - master..44031
System
Hosts
Scenarios
Developer Information: |
Not bad! |
I admit I didn't expect it to be almost exactly the same perf as the Uint8Array approach |
Yeah, I am very surprised and I don't know how to make sense of this. I think you can take this out of draft state if you're interested. Just as a heads up, your commits don't seem to be associated with your GitHub account. While this isn't technically a problem, you might care if you want more appropriate attribution. You can either make sure your GitHub account is associated with the email address that you're using for your commits, or rebase and amend your commits to fix the author name and email. |
@dmichon-msft how did you figure this out? |
@typescript-bot perf test this. |
Heya @DanielRosenwasser, I've started to run the perf test suite on this PR at ce3e87d. You can monitor the build here. Update: The results are in! |
As of 34a0217, here's what I got on
I'll try with ce3e87d. Update: still pretty similar:
|
ce3e87d
to
21e8ac0
Compare
Looks like I'd screwed up my local git config due to some script testing a while back. Fixed. |
@DanielRosenwasser Here they are:Comparison Report - master..44031
System
Hosts
Scenarios
Developer Information: |
3e7c90e
to
fc35f92
Compare
fc35f92
to
228f3eb
Compare
I'm pretty sure the overhead being saved by this PR and #43987 are both almost entirely in the repeated calls to |
@typescript-bot perf test this |
Heya @DanielRosenwasser, I've started to run the perf test suite on this PR at 228f3eb. You can monitor the build here. Update: The results are in! |
@DanielRosenwasser Here they are:Comparison Report - master..44031
System
Hosts
Scenarios
Developer Information: |
A bit of poking in my microbenchmarks suggests that the majority of the time is now spent on the |
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.
My vote is for this clean, simple change over the Uint8Array
and I think it's great as-is, but I'm open to poking around some more to see if there's something cheaper than fromCharCode
.
@typescript-bot perf test this |
Heya @DanielRosenwasser, I've started to run the perf test suite on this PR at 0d5b285. You can monitor the build here. Update: The results are in! |
I trust it'll be fine but let's run one last one. |
@DanielRosenwasser Here they are:Comparison Report - master..44031
System
Hosts
Scenarios
Developer Information: |
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.
Looks good to me. I'm more than happy to take a simpler implementation.
@jhutchings1 any idea why CodeQL analysis is OOMing? |
I'm not sure if it would affect performance or memory usage at all, but I did notice that you can use String.fromCharCode.apply(undefined, new Uint8Array([0x61, 0x62, 0x63, 0x64])); // "abcd"
// or, if String.fromCodePoint is available:
String.fromCodePoint.apply(undefined, new Uint16Array([0x61, 0x62, 0x63, 0x64])); // "abcd" |
@rbuckton I did try that over at f850a85. I think it was maybe slightly better, and I'm not opposed to it. You can see the perf results over at #43987 (comment) |
@rbuckton , the reason this PR doesn't use |
I don't even remember whether we really target ES6 or ES5 and just expect polyfills at this point |
For the CodeQL check, likely was very close to running out of memory in the past and just ran over. Might need a |
Looks like this should be fixed. github/codeql-action#498 |
Thanks @dmichon-msft! |
This is an alternate approach to #43987 that works in ES5, for perf comparison.
Ultimately where this is saving CPU cycles is in avoiding native hops for instantiating new strings, and in allocating fewer "cons string" objects from the concatenations.
Fixes #43999