Make StructureChain GC allocated
Created attachment 86243 [details] Patch
Attachment 86243 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/bytecode/Instruction.h:85: _stubRoutine is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:85: _base is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:85: _chain is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/StructureStubInfo.cpp:83: A case label should not be indented, but line up with its switch statement. [whitespace/indent] [4] Total errors found: 4 in 24 files If any of these errors are false positives, please file a bug against check-webkit-style.
Don't review this patch, i'm just waiting to see how the various bots deal with it
Created attachment 86291 [details] Patch
Attachment 86291 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/bytecode/Instruction.h:85: _stubRoutine is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:85: _base is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:85: _chain is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Total errors found: 3 in 24 files If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 86291 [details] Patch r=me On my machine, this is a 0.2% speedup on SunSpider, and no change on v8.
Comment on attachment 86291 [details] Patch Clearing flags on attachment: 86291 Committed r82500: <http://trac.webkit.org/changeset/82500>
All reviewed patches have been landed. Closing bug.
http://trac.webkit.org/changeset/82500 might have broken Leopard Intel Debug (Tests) and Windows 7 Release (Tests) The following tests are not passing: fast/dom/Window/window-postmessage-clone.html fast/workers/shared-worker-frame-lifecycle.html fast/workers/worker-close-more.html inspector/debugger/debugger-breakpoints-not-activated-on-reload.html inspector/debugger/scripts-panel.html
Rolled out in r82519 as someone deemed it reasonable to break DRT so i couldn't fix in trunk fast enough
Created attachment 87947 [details] Patch
Attachment 87947 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/bytecode/Instruction.h:86: _stubRoutine is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:86: _base is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:86: _chain is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/runtime/JSZombie.cpp:38: Place brace on its own line for function definitions. [whitespace/braces] [4] Total errors found: 4 in 33 files If any of these errors are false positives, please file a bug against check-webkit-style.
Attachment 87947 [details] did not build on win: Build output: http://queues.webkit.org/results/8307303
Created attachment 87950 [details] Removed export from windows .def file, now need to wait to find out what the new version is called
Attachment 87950 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/bytecode/Instruction.h:86: _stubRoutine is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:86: _base is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:86: _chain is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/runtime/JSZombie.cpp:38: Place brace on its own line for function definitions. [whitespace/braces] [4] Total errors found: 4 in 33 files If any of these errors are false positives, please file a bug against check-webkit-style.
Attachment 87950 [details] did not build on win: Build output: http://queues.webkit.org/results/8320362
Attachment 87950 [details] did not build on win: Build output: http://queues.webkit.org/results/8185366
Created attachment 88073 [details] Patch
Attachment 88073 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style']" exit_code: 1 Source/JavaScriptCore/bytecode/Instruction.h:86: _stubRoutine is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:86: _base is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Source/JavaScriptCore/bytecode/Instruction.h:86: _chain is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Total errors found: 3 in 34 files If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 88073 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=88073&action=review Hard to tell just by looking if this is correct, but if the tests pass, it look generally OK. > Source/JavaScriptCore/runtime/Structure.h:112 > + if (m_prototype) > + markStack.append(&m_prototype); Just noticed this, although it's not new in your patch: It would be nice to get rid of the concept of a JSValue() prototype, and use jsNull() instead, to get rid of this branch.
Committed r82849: <http://trac.webkit.org/changeset/82849>
http://trac.webkit.org/changeset/82849 might have broken WinCE Release (Build)