Enable heap separation on X86_64
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.