From: mjs@apple.com Date: Tue, 19 May 2009 06:06:22 +0000 (+0000) Subject: 2009-05-18 Maciej Stachowiak X-Git-Url: https://git.webkit.org/?p=WebKit.git;a=commitdiff_plain;h=faff745a8533e6fc3a574b212b8348cd9fbbc71c;hp=c89aae6f1f83c298abcac58745652274bb9a625d 2009-05-18 Maciej Stachowiak Reviewed by Gavin Barraclough. - for polymorphic prototype lookups, increase the number of slots from 4 to 8 ~4% faster on v8 raytrace benchmark * bytecode/Instruction.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@43855 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog index 78ebeba0c751..eb72a3890c1e 100644 --- a/JavaScriptCore/ChangeLog +++ b/JavaScriptCore/ChangeLog @@ -1,3 +1,13 @@ +2009-05-18 Maciej Stachowiak + + Reviewed by Gavin Barraclough. + + - for polymorphic prototype lookups, increase the number of slots from 4 to 8 + + ~4% faster on v8 raytrace benchmark + + * bytecode/Instruction.h: + 2009-05-18 Maciej Stachowiak Reviewed by Oliver Hunt. diff --git a/JavaScriptCore/bytecode/Instruction.h b/JavaScriptCore/bytecode/Instruction.h index 314fda4dd4e3..24ba49020264 100644 --- a/JavaScriptCore/bytecode/Instruction.h +++ b/JavaScriptCore/bytecode/Instruction.h @@ -34,7 +34,7 @@ #include "Structure.h" #include -#define POLYMORPHIC_LIST_CACHE_SIZE 4 +#define POLYMORPHIC_LIST_CACHE_SIZE 8 namespace JSC {