Bug 226857

Summary: Fix some inefficient uses of SharedBuffer
Product: WebKit Reporter: Chris Dumez <cdumez>
Component: WebCore Misc.Assignee: Chris Dumez <cdumez>
Status: RESOLVED FIXED    
Severity: Normal CC: achristensen, alecflett, beidson, changseok, darin, dino, eric.carlson, esprehn+autocc, ews-watchlist, fmalita, ggaren, glenn, gyuyoung.kim, hi, hta, japhet, jer.noble, joepeck, jsbell, mifenton, pdr, philipj, sabouhallawa, schenney, sergio, tommyw, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on: 228096    
Bug Blocks:    
Attachments:
Description Flags
Patch
ews-feeder: commit-queue-
Patch
ews-feeder: commit-queue-
Patch
none
Patch
ews-feeder: commit-queue-
Patch none

Description Chris Dumez 2021-06-09 16:19:02 PDT
Fix some inefficient uses of SharedBuffer.
Comment 1 Chris Dumez 2021-06-09 16:26:18 PDT
Created attachment 431023 [details]
Patch
Comment 2 Chris Dumez 2021-06-09 16:48:59 PDT
Created attachment 431024 [details]
Patch
Comment 3 Chris Dumez 2021-06-09 16:55:31 PDT
Created attachment 431025 [details]
Patch
Comment 4 Darin Adler 2021-06-09 18:22:24 PDT
Comment on attachment 431025 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=431025&action=review

> Source/WebCore/platform/SharedBuffer.h:103
> +    Vector<uint8_t> dataAsVector() { return { data(), size() }; }

This should have the word "copy" in its name.

> Source/WebCore/platform/SharedBuffer.h:188
> +    void forEachSegment(const Function<void(const uint8_t*, size_t)>&) const;

This should use a Span as the argument.

> Source/WebCore/platform/SharedBuffer.h:189
> +    bool startsWith(const uint8_t* prefix, size_t prefixSize) const;

This should use a Span as the argument.
Comment 5 Chris Dumez 2021-06-09 19:16:11 PDT
Created attachment 431041 [details]
Patch
Comment 6 Chris Dumez 2021-06-09 19:29:30 PDT
Created attachment 431042 [details]
Patch
Comment 7 EWS 2021-06-09 23:37:41 PDT
Found 1 new test failure: imported/w3c/web-platform-tests/navigation-timing/nav2_test_attributes_values.html
Comment 8 EWS 2021-06-10 08:08:24 PDT
Committed r278702 (238674@main): <https://commits.webkit.org/238674@main>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 431042 [details].
Comment 9 Radar WebKit Bug Importer 2021-06-10 08:09:18 PDT
<rdar://problem/79140035>