Title: [237961] tags/Safari-607.1.13/Source/_javascript_Core
Revision
237961
Author
alanc...@apple.com
Date
2018-11-07 17:29:16 -0800 (Wed, 07 Nov 2018)

Log Message

Revert r237728. rdar://problem/45895377

Modified Paths

Diff

Modified: tags/Safari-607.1.13/Source/_javascript_Core/ChangeLog (237960 => 237961)


--- tags/Safari-607.1.13/Source/_javascript_Core/ChangeLog	2018-11-08 01:29:14 UTC (rev 237960)
+++ tags/Safari-607.1.13/Source/_javascript_Core/ChangeLog	2018-11-08 01:29:16 UTC (rev 237961)
@@ -1,5 +1,9 @@
 2018-11-07  Alan Coon  <alanc...@apple.com>
 
+        Revert r237728. rdar://problem/45895377
+
+2018-11-07  Alan Coon  <alanc...@apple.com>
+
         Revert r237734. rdar://problem/45895377
 
 2018-11-07  Alan Coon  <alanc...@apple.com>

Modified: tags/Safari-607.1.13/Source/_javascript_Core/jit/JITExceptions.cpp (237960 => 237961)


--- tags/Safari-607.1.13/Source/_javascript_Core/jit/JITExceptions.cpp	2018-11-08 01:29:14 UTC (rev 237960)
+++ tags/Safari-607.1.13/Source/_javascript_Core/jit/JITExceptions.cpp	2018-11-08 01:29:16 UTC (rev 237961)
@@ -73,9 +73,7 @@
 #if ENABLE(JIT)
         catchRoutine = handler->nativeCode.executableAddress();
 #else
-        catchRoutine = catchPCForInterpreter->isWide()
-            ? LLInt::getWideCodePtr(catchPCForInterpreter->opcodeID())
-            : LLInt::getCodePtr(catchPCForInterpreter->opcodeID());
+        catchRoutine = LLInt::getCodePtr(catchPCForInterpreter->opcodeID());
 #endif
     } else
         catchRoutine = LLInt::getCodePtr<ExceptionHandlerPtrTag>(handleUncaughtException).executableAddress();

Modified: tags/Safari-607.1.13/Source/_javascript_Core/llint/LLIntData.h (237960 => 237961)


--- tags/Safari-607.1.13/Source/_javascript_Core/llint/LLIntData.h	2018-11-08 01:29:14 UTC (rev 237960)
+++ tags/Safari-607.1.13/Source/_javascript_Core/llint/LLIntData.h	2018-11-08 01:29:16 UTC (rev 237961)
@@ -140,11 +140,6 @@
 {
     return reinterpret_cast<void*>(getOpcode(id));
 }
-
-ALWAYS_INLINE void* getWideCodePtr(OpcodeID id)
-{
-    return reinterpret_cast<void*>(getOpcodeWide(id));
-}
 #endif
 
 ALWAYS_INLINE void* getCodePtr(JSC::EncodedJSValue glueHelper())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to