[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

zecke at webkit.org zecke at webkit.org
Wed Dec 22 13:47:24 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 616c56697e251ee88b05a50f58cb291fea5936f4
Author: zecke at webkit.org <zecke at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 27 09:38:36 2010 +0000

    jsc: Document the strcat opcode.
    
    https://bugs.webkit.org/show_bug.cgi?id=46571
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68379 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 1772f6b..ba424b8 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-25  Holger Hans Peter Freyther  <holger at moiji-mobile.com>
+
+        Reviewed by Adam Barth.
+
+        jsc: Document the strcat opcode.
+        https://bugs.webkit.org/show_bug.cgi?id=46571
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::privateExecute):
+
 2010-09-21  Holger Hans Peter Freyther  <holger at moiji-mobile.com>
 
         Reviewed by Adam Barth.
diff --git a/JavaScriptCore/interpreter/Interpreter.cpp b/JavaScriptCore/interpreter/Interpreter.cpp
index abacc29..f03fea2 100644
--- a/JavaScriptCore/interpreter/Interpreter.cpp
+++ b/JavaScriptCore/interpreter/Interpreter.cpp
@@ -4289,6 +4289,14 @@ skip_id_custom_self:
         goto vm_throw;
     }
     DEFINE_OPCODE(op_strcat) {
+        /* strcat dst(r) src(r) count(n)
+
+           Construct a new String instance using the original
+           constructor, and puts the result in register dst.
+           The string will be the result of concatenating count
+           strings with values taken from registers starting at
+           register src.
+        */
         int dst = vPC[1].u.operand;
         int src = vPC[2].u.operand;
         int count = vPC[3].u.operand;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list