Summary: | Enable heap separation on X86_64 | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Oliver Hunt <oliver> | ||||||
Component: | New Bugs | Assignee: | Oliver Hunt <oliver> | ||||||
Status: | NEW --- | ||||||||
Severity: | Normal | CC: | commit-queue, keith_miller, mark.lam, msaboff, saam | ||||||
Priority: | P2 | ||||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Attachments: |
|
Description
Oliver Hunt
2016-04-20 15:21:57 PDT
Created attachment 276858 [details]
Patch
Comment on attachment 276858 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=276858&action=review r=me with comments. > Source/JavaScriptCore/assembler/X86Assembler.h:2776 > + performJITMemcpy(ptr, buffer, 1 + sizeof(int32_t)); As an idiom, can we use "sizeof(buffer)" instead of "1 + sizeof(int32_t)"? I would think it'd be less error prone to cut and paste errors this way. Ditto for all the sizes passed to performJITMemcpy below where appropriate. I thought perf numbers were ok, but i think i ran the wrong builds, and am now getting too much variance. Also need to fix efl+ios sim Created attachment 276863 [details]
Patch
Comment on attachment 276863 [details]
Patch
r=me if the bots are happy.
|