WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 194836
[bmalloc] bmalloc::Heap is allocated even though we use system malloc mode
https://bugs.webkit.org/show_bug.cgi?id=194836
Summary
[bmalloc] bmalloc::Heap is allocated even though we use system malloc mode
Yusuke Suzuki
Reported
2019-02-19 15:29:33 PST
...
Attachments
Patch
(23.04 KB, patch)
2019-02-19 21:22 PST
,
Yusuke Suzuki
no flags
Details
Formatted Diff
Diff
Patch
(23.17 KB, patch)
2019-02-19 21:43 PST
,
Yusuke Suzuki
mark.lam
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Yusuke Suzuki
Comment 1
2019-02-19 21:22:10 PST
Created
attachment 362481
[details]
Patch
Yusuke Suzuki
Comment 2
2019-02-19 21:43:56 PST
Created
attachment 362482
[details]
Patch
Mark Lam
Comment 3
2019-02-19 22:04:41 PST
Comment on
attachment 362482
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=362482&action=review
r=me. Can you run PerformanceTests/MallocBench just to be sure that there's no significant perf difference?
> Source/bmalloc/bmalloc/bmalloc.cpp:71 > + { > + std::unique_lock<Mutex> lock(Heap::mutex()); > + result = heap.tryAllocateLarge(lock, alignment, size); > + if (result) { > + // Don't track this as dirty memory that dictates how we drive the scavenger. > + // FIXME: We should make it so that users of this API inform bmalloc which > + // pages they dirty: > + //
https://bugs.webkit.org/show_bug.cgi?id=184207
> + heap.externalDecommit(lock, result, size); > + } > }
No need to indent one more level here. You're already inside a scope unlike before.
Yusuke Suzuki
Comment 4
2019-02-20 15:39:20 PST
Comment on
attachment 362482
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=362482&action=review
I ran MallocBench and it was performance neutral.
>> Source/bmalloc/bmalloc/bmalloc.cpp:71 >> } > > No need to indent one more level here. You're already inside a scope unlike before.
Fixed, thanks.
Yusuke Suzuki
Comment 5
2019-02-20 16:03:27 PST
Committed
r241847
: <
https://trac.webkit.org/changeset/241847
>
Radar WebKit Bug Importer
Comment 6
2019-02-20 16:04:40 PST
<
rdar://problem/48256231
>
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