Title: [91216] trunk/Source/_javascript_Core
Revision
91216
Author
[email protected]
Date
2011-07-18 15:42:57 -0700 (Mon, 18 Jul 2011)

Log Message

Interpreter build-fix

Modified Paths


Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (91215 => 91216)


--- trunk/Source/_javascript_Core/ChangeLog	2011-07-18 22:36:24 UTC (rev 91215)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-07-18 22:42:57 UTC (rev 91216)
@@ -1,3 +1,10 @@
+2011-07-18  Oliver Hunt  <[email protected]>
+
+        Interpreter build-fix
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::privateExecute):
+
 2011-07-18  Filip Pizlo  <[email protected]>
 
         DFG JIT does not optimize equal-null comparisons and branches.

Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (91215 => 91216)


--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2011-07-18 22:36:24 UTC (rev 91215)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2011-07-18 22:42:57 UTC (rev 91216)
@@ -1679,7 +1679,7 @@
             exceptionValue = createSyntaxError(callFrame, "Invalid flags supplied to RegExp constructor.");
             goto vm_throw;
         }
-        callFrame->uncheckedR(dst) = JSValue(RegExpObject::create(globalData, callFrame->lexicalGlobalObject(), callFrame->scopeChain()->globalObject->regExpStructure(), regExp));
+        callFrame->uncheckedR(dst) = JSValue(RegExpObject::create(*globalData, callFrame->lexicalGlobalObject(), callFrame->scopeChain()->globalObject->regExpStructure(), regExp));
 
         vPC += OPCODE_LENGTH(op_new_regexp);
         NEXT_INSTRUCTION();
@@ -3430,7 +3430,7 @@
             NEXT_INSTRUCTION();
         }
         if (!arguments) {
-            Arguments* arguments = Arguments::create(globalData, callFrame);
+            Arguments* arguments = Arguments::create(*globalData, callFrame);
             callFrame->uncheckedR(argumentsRegister) = JSValue(arguments);
             callFrame->uncheckedR(unmodifiedArgumentsRegister(argumentsRegister)) = JSValue(arguments);
         }
@@ -4560,7 +4560,7 @@
 
         int activationReg = vPC[1].u.operand;
         if (!callFrame->r(activationReg).jsValue()) {
-            JSActivation* activation = JSActivation::create(globalData, callFrame, static_cast<FunctionExecutable*>(codeBlock->ownerExecutable()));
+            JSActivation* activation = JSActivation::create(*globalData, callFrame, static_cast<FunctionExecutable*>(codeBlock->ownerExecutable()));
             callFrame->r(activationReg) = JSValue(activation);
             callFrame->setScopeChain(callFrame->scopeChain()->push(activation));
         }
@@ -4651,7 +4651,7 @@
         int dst = vPC[1].u.operand;
 
         if (!callFrame->r(dst).jsValue()) {
-            Arguments* arguments = Arguments::create(globalData, callFrame);
+            Arguments* arguments = Arguments::create(*globalData, callFrame);
             callFrame->uncheckedR(dst) = JSValue(arguments);
             callFrame->uncheckedR(unmodifiedArgumentsRegister(dst)) = JSValue(arguments);
         }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to