WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
236286
Reduce allocations and increase thread safety of constructedPath
https://bugs.webkit.org/show_bug.cgi?id=236286
Summary
Reduce allocations and increase thread safety of constructedPath
Alex Christensen
Reported
2022-02-07 21:46:57 PST
Reduce allocations and increase thread safety of constructedPath
Attachments
Patch
(2.54 KB, patch)
2022-02-07 21:47 PST
,
Alex Christensen
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Alex Christensen
Comment 1
2022-02-07 21:47:42 PST
Created
attachment 451208
[details]
Patch
Alex Christensen
Comment 2
2022-02-07 21:47:46 PST
<
rdar://problem/86904276
>
Chris Dumez
Comment 3
2022-02-08 07:27:31 PST
Comment on
attachment 451208
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=451208&action=review
r=me with improvement suggestion.
> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:85 > + static auto* prefix("ContentRuleList-");
I think you could use: static const prefix[] = "ContentRuleList-";
> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:524 > + auto prefixLength = strlen(prefix);
`sizeof(prefix) - 1` which would be a bit more efficient.
Alex Christensen
Comment 4
2022-02-08 08:59:38 PST
Comment on
attachment 451208
[details]
Patch The optimizer is able to see that they are the same.
EWS
Comment 5
2022-02-08 09:04:53 PST
Committed
r289380
(
246968@main
): <
https://commits.webkit.org/246968@main
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 451208
[details]
.
Chris Dumez
Comment 6
2022-02-08 09:21:43 PST
Comment on
attachment 451208
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=451208&action=review
>> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:85 >> + static auto* prefix("ContentRuleList-"); > > I think you could use: > static const prefix[] = "ContentRuleList-";
Whether you want to keep calling strlen() or not fine. But I believe that: `static const prefix[] = "ContentRuleList-";` is strictly superior to: `static auto* prefix("ContentRuleList-");`
Chris Dumez
Comment 7
2022-02-08 09:39:12 PST
Comment on
attachment 451208
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=451208&action=review
>>> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:85 >>> + static auto* prefix("ContentRuleList-"); >> >> I think you could use: >> static const prefix[] = "ContentRuleList-"; > > Whether you want to keep calling strlen() or not fine. But I believe that: > `static const prefix[] = "ContentRuleList-";` > is strictly superior to: > `static auto* prefix("ContentRuleList-");`
In particular, I believe the using the const array will allow the compiler to put it in the .rodata section of the binary, which may have an impact of perf. This is unrelated to the fact that strlen() may not may not be optimized in this case.
Darin Adler
Comment 8
2022-02-08 09:39:28 PST
Comment on
attachment 451208
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=451208&action=review
>>> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:85 >>> + static auto* prefix("ContentRuleList-"); >> >> I think you could use: >> static const prefix[] = "ContentRuleList-"; > > Whether you want to keep calling strlen() or not fine. But I believe that: > `static const prefix[] = "ContentRuleList-";` > is strictly superior to: > `static auto* prefix("ContentRuleList-");`
I like one of these: constexpr auto prefix = "ContentRuleList-"; constexpr auto prefix[] = "ContentRuleList-";
>> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:524 >> + auto prefixLength = strlen(prefix); > > `sizeof(prefix) - 1` > > which would be a bit more efficient.
In clang strlen is optimized and constant folded, so there is no performance difference.
Darin Adler
Comment 9
2022-02-08 09:42:33 PST
I did a little testing and the code is identical between these two: constexpr auto prefix = "ContentRuleList-"; constexpr char prefix[] = "ContentRuleList-"; Both put the string into the .rodata section.
Chris Dumez
Comment 10
2022-02-08 09:43:58 PST
Comment on
attachment 451208
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=451208&action=review
>>>>> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:85 >>>>> + static auto* prefix("ContentRuleList-"); >>>> >>>> I think you could use: >>>> static const prefix[] = "ContentRuleList-"; >>> >>> Whether you want to keep calling strlen() or not fine. But I believe that: >>> `static const prefix[] = "ContentRuleList-";` >>> is strictly superior to: >>> `static auto* prefix("ContentRuleList-");` >> >> In particular, I believe the using the const array will allow the compiler to put it in the .rodata section of the binary, which may have an impact of perf. >> >> This is unrelated to the fact that strlen() may not may not be optimized in this case. > > I like one of these: > > constexpr auto prefix = "ContentRuleList-"; > constexpr auto prefix[] = "ContentRuleList-";
Right but the code that landed used `static auto* prefix("ContentRuleList-");` and I am less convinced this goes into .rodata (though I haven't verified).
Darin Adler
Comment 11
2022-02-08 09:47:06 PST
Comment on
attachment 451208
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=451208&action=review
>>>>>> Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp:85 >>>>>> + static auto* prefix("ContentRuleList-"); >>>>> >>>>> I think you could use: >>>>> static const prefix[] = "ContentRuleList-"; >>>> >>>> Whether you want to keep calling strlen() or not fine. But I believe that: >>>> `static const prefix[] = "ContentRuleList-";` >>>> is strictly superior to: >>>> `static auto* prefix("ContentRuleList-");` >>> >>> In particular, I believe the using the const array will allow the compiler to put it in the .rodata section of the binary, which may have an impact of perf. >>> >>> This is unrelated to the fact that strlen() may not may not be optimized in this case. >> >> I like one of these: >> >> constexpr auto prefix = "ContentRuleList-"; >> constexpr auto prefix[] = "ContentRuleList-"; > > Right but the code that landed used `static auto* prefix("ContentRuleList-");` and I am less convinced this goes into .rodata (though I haven't verified).
Yes, I think it has too little const. It’s a non-const global variable. More constexpr would fix it. Whether you left "static" in or not, and whether you used "auto*" or "auto".
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug