[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75
eric at webkit.org
eric at webkit.org
Thu Oct 29 20:49:01 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 8407b61103123f3bdb51d9b1bffec9536630cc5a
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Oct 20 18:41:41 2009 +0000
2009-10-20 Gabor Loki <loki at inf.u-szeged.hu>
Reviewed by Geoffrey Garen.
The op_next_pname should use 4 bytes addressing mode in case of JSValue32
https://bugs.webkit.org/show_bug.cgi?id=30570
* jit/JITOpcodes.cpp:
(JSC::JIT::emit_op_next_pname):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49874 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 1064566..af50547 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,15 @@
2009-10-20 Gabor Loki <loki at inf.u-szeged.hu>
+ Reviewed by Geoffrey Garen.
+
+ The op_next_pname should use 4 bytes addressing mode in case of JSValue32
+ https://bugs.webkit.org/show_bug.cgi?id=30570
+
+ * jit/JITOpcodes.cpp:
+ (JSC::JIT::emit_op_next_pname):
+
+2009-10-20 Gabor Loki <loki at inf.u-szeged.hu>
+
Reviewed by Oliver Hunt.
Move OverridesMarkChildren flag from DatePrototype to its parent class
diff --git a/JavaScriptCore/jit/JITOpcodes.cpp b/JavaScriptCore/jit/JITOpcodes.cpp
index e10d105..2547c2e 100644
--- a/JavaScriptCore/jit/JITOpcodes.cpp
+++ b/JavaScriptCore/jit/JITOpcodes.cpp
@@ -2500,7 +2500,7 @@ void JIT::emit_op_next_pname(Instruction* currentInstruction)
// Grab key @ i
loadPtr(addressFor(it), regT1);
loadPtr(Address(regT1, OBJECT_OFFSETOF(JSPropertyNameIterator, m_jsStrings)), regT2);
- loadPtr(BaseIndex(regT2, regT0, TimesEight), regT2);
+ loadPtr(BaseIndex(regT2, regT0, TimesFour), regT2);
emitPutVirtualRegister(dst, regT2);
// Increment i
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list