Title: [234204] releases/WebKitGTK/webkit-2.20/Source/_javascript_Core

Diff

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/ChangeLog (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/ChangeLog	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/ChangeLog	2018-07-25 17:33:26 UTC (rev 234204)
@@ -1,3 +1,18 @@
+2018-06-15  Michael Catanzaro  <[email protected]>
+
+        Unreviewed, rolling out r232816.
+
+        Suggested by Caitlin:
+        "this patch clearly does get some things wrong, and it's not
+        easy to find what those things are"
+
+        Reverted changeset:
+
+        "[LLInt] use loadp consistently for
+        get_from_scope/put_to_scope"
+        https://bugs.webkit.org/show_bug.cgi?id=132333
+        https://trac.webkit.org/changeset/232816
+
 2018-07-25  Michael Catanzaro  <[email protected]>
 
         [GTK][STABLE] Non-deterministic build failure (missing _javascript_Core/JSContextRef.h)

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/bytecode/CodeBlock.cpp (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/bytecode/CodeBlock.cpp	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/bytecode/CodeBlock.cpp	2018-07-25 17:33:26 UTC (rev 234204)
@@ -678,7 +678,7 @@
                 instructions[i + 5].u.watchpointSet = op.watchpointSet;
             else if (op.structure)
                 instructions[i + 5].u.structure.set(vm, this, op.structure);
-            instructions[i + 6].u.operandPointer = op.operand;
+            instructions[i + 6].u.pointer = reinterpret_cast<void*>(op.operand);
             break;
         }
 
@@ -715,7 +715,7 @@
                     op.watchpointSet->invalidate(vm, PutToScopeFireDetail(this, ident));
             } else if (op.structure)
                 instructions[i + 5].u.structure.set(vm, this, op.structure);
-            instructions[i + 6].u.operandPointer = op.operand;
+            instructions[i + 6].u.pointer = reinterpret_cast<void*>(op.operand);
 
             break;
         }

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/bytecode/Instruction.h (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/bytecode/Instruction.h	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/bytecode/Instruction.h	2018-07-25 17:33:26 UTC (rev 234204)
@@ -122,7 +122,6 @@
         Opcode opcode;
         int operand;
         unsigned unsignedValue;
-        intptr_t operandPointer;
         WriteBarrierBase<Structure> structure;
         StructureID structureID;
         WriteBarrierBase<SymbolTable> symbolTable;

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/jit/JITOperations.cpp (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/jit/JITOperations.cpp	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/jit/JITOperations.cpp	2018-07-25 17:33:26 UTC (rev 234204)
@@ -2310,7 +2310,7 @@
 
     if (getPutInfo.resolveType() == LocalClosureVar) {
         JSLexicalEnvironment* environment = jsCast<JSLexicalEnvironment*>(scope);
-        environment->variableAt(ScopeOffset(pc[6].u.operandPointer)).set(vm, environment, value);
+        environment->variableAt(ScopeOffset(pc[6].u.operand)).set(vm, environment, value);
         if (WatchpointSet* set = pc[5].u.watchpointSet)
             set->touch(vm, "Executed op_put_scope<LocalClosureVar>");
         return;

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LLIntSlowPaths.cpp (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LLIntSlowPaths.cpp	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LLIntSlowPaths.cpp	2018-07-25 17:33:26 UTC (rev 234204)
@@ -1722,7 +1722,7 @@
     GetPutInfo getPutInfo = GetPutInfo(pc[4].u.operand);
     if (getPutInfo.resolveType() == LocalClosureVar) {
         JSLexicalEnvironment* environment = jsCast<JSLexicalEnvironment*>(scope);
-        environment->variableAt(ScopeOffset(pc[6].u.operandPointer)).set(vm, environment, value);
+        environment->variableAt(ScopeOffset(pc[6].u.operand)).set(vm, environment, value);
         
         // Have to do this *after* the write, because if this puts the set into IsWatched, then we need
         // to have already changed the value of the variable. Otherwise we might watch and constant-fold

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LowLevelInterpreter32_64.asm (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LowLevelInterpreter32_64.asm	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LowLevelInterpreter32_64.asm	2018-07-25 17:33:26 UTC (rev 234204)
@@ -2303,7 +2303,7 @@
 end
 
 macro getProperty()
-    loadpFromInstruction(6, t3)
+    loadisFromInstruction(6, t3)
     loadPropertyAtVariableOffset(t3, t0, t1, t2)
     valueProfile(t1, t2, 28, t0)
     loadisFromInstruction(1, t0)
@@ -2323,7 +2323,7 @@
 end
 
 macro getClosureVar()
-    loadpFromInstruction(6, t3)
+    loadisFromInstruction(6, t3)
     loadp JSLexicalEnvironment_variables + TagOffset[t0, t3, 8], t1
     loadp JSLexicalEnvironment_variables + PayloadOffset[t0, t3, 8], t2
     valueProfile(t1, t2, 28, t0)
@@ -2398,7 +2398,7 @@
 macro putProperty()
     loadisFromInstruction(3, t1)
     loadConstantOrVariable(t1, t2, t3)
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     storePropertyAtVariableOffset(t1, t0, t2, t3)
 end
 
@@ -2415,7 +2415,7 @@
 macro putClosureVar()
     loadisFromInstruction(3, t1)
     loadConstantOrVariable(t1, t2, t3)
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     storei t2, JSLexicalEnvironment_variables + TagOffset[t0, t1, 8]
     storei t3, JSLexicalEnvironment_variables + PayloadOffset[t0, t1, 8]
 end
@@ -2427,7 +2427,7 @@
     btpz t5, .noVariableWatchpointSet
     notifyWrite(t5, .pDynamic)
 .noVariableWatchpointSet:
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     storei t2, JSLexicalEnvironment_variables + TagOffset[t0, t1, 8]
     storei t3, JSLexicalEnvironment_variables + PayloadOffset[t0, t1, 8]
 end

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LowLevelInterpreter64.asm (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LowLevelInterpreter64.asm	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/llint/LowLevelInterpreter64.asm	2018-07-25 17:33:26 UTC (rev 234204)
@@ -1448,7 +1448,7 @@
     bineq t1, JSCell::m_structureID[t3], .opPutByIdSlow
 
 .opPutByIdDoneCheckingTypes:
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     
     btiz t1, .opPutByIdNotTransition
 
@@ -1478,7 +1478,7 @@
 
 .opPutByIdTransitionChainDone:
     # Reload the new structure, since we clobbered it above.
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
 
 .opPutByIdTransitionDirect:
     storei t1, JSCell::m_structureID[t0]
@@ -2289,7 +2289,7 @@
 end
 
 macro getProperty()
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     loadPropertyAtVariableOffset(t1, t0, t2)
     valueProfile(t2, 7, t0)
     loadisFromInstruction(1, t0)
@@ -2306,7 +2306,7 @@
 end
 
 macro getClosureVar()
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     loadq JSLexicalEnvironment_variables[t0, t1, 8], t0
     valueProfile(t0, 7, t1)
     loadisFromInstruction(1, t1)
@@ -2379,7 +2379,7 @@
 macro putProperty()
     loadisFromInstruction(3, t1)
     loadConstantOrVariable(t1, t2)
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     storePropertyAtVariableOffset(t1, t0, t2)
 end
 
@@ -2395,7 +2395,7 @@
 macro putClosureVar()
     loadisFromInstruction(3, t1)
     loadConstantOrVariable(t1, t2)
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     storeq t2, JSLexicalEnvironment_variables[t0, t1, 8]
 end
 
@@ -2406,7 +2406,7 @@
     btpz t3, .noVariableWatchpointSet
     notifyWrite(t3, .pDynamic)
 .noVariableWatchpointSet:
-    loadpFromInstruction(6, t1)
+    loadisFromInstruction(6, t1)
     storeq t2, JSLexicalEnvironment_variables[t0, t1, 8]
 end
 

Modified: releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/runtime/CommonSlowPaths.h (234203 => 234204)


--- releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/runtime/CommonSlowPaths.h	2018-07-25 17:10:10 UTC (rev 234203)
+++ releases/WebKitGTK/webkit-2.20/Source/_javascript_Core/runtime/CommonSlowPaths.h	2018-07-25 17:33:26 UTC (rev 234204)
@@ -135,7 +135,7 @@
             ASSERT(!entry.isNull());
             ConcurrentJSLocker locker(codeBlock->m_lock);
             pc[5].u.watchpointSet = entry.watchpointSet();
-            pc[6].u.pointer = globalLexicalEnvironment->variableAt(entry.scopeOffset()).slot();
+            pc[6].u.pointer = static_cast<void*>(globalLexicalEnvironment->variableAt(entry.scopeOffset()).slot());
         }
     }
     
@@ -159,7 +159,7 @@
 
         ConcurrentJSLocker locker(codeBlock->m_lock);
         pc[5].u.structure.set(vm, codeBlock, scope->structure(vm));
-        pc[6].u.operandPointer = slot.cachedOffset();
+        pc[6].u.operand = slot.cachedOffset();
     }
 }
 
@@ -183,7 +183,7 @@
             ConcurrentJSLocker locker(exec->codeBlock()->m_lock);
             pc[4].u.operand = GetPutInfo(getPutInfo.resolveMode(), newResolveType, getPutInfo.initializationMode()).operand();
             pc[5].u.watchpointSet = entry.watchpointSet();
-            pc[6].u.pointer = globalLexicalEnvironment->variableAt(entry.scopeOffset()).slot();
+            pc[6].u.pointer = static_cast<void*>(globalLexicalEnvironment->variableAt(entry.scopeOffset()).slot());
         }
     }
 
@@ -197,7 +197,7 @@
             {
                 ConcurrentJSLocker locker(codeBlock->m_lock);
                 pc[5].u.structure.set(vm, codeBlock, structure);
-                pc[6].u.operandPointer = slot.cachedOffset();
+                pc[6].u.operand = slot.cachedOffset();
             }
             structure->startWatchingPropertyForReplacements(vm, slot.cachedOffset());
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to