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
Patch (23.17 KB, patch)
2019-02-19 21:43 PST, Yusuke Suzuki
mark.lam: review+
Yusuke Suzuki
Comment 1 2019-02-19 21:22:10 PST
Yusuke Suzuki
Comment 2 2019-02-19 21:43:56 PST
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
Radar WebKit Bug Importer
Comment 6 2019-02-20 16:04:40 PST
Note You need to log in before you can comment on or make changes to this bug.