Title: [190741] trunk/Source/_javascript_Core
- Revision
- 190741
- Author
- [email protected]
- Date
- 2015-10-08 13:24:25 -0700 (Thu, 08 Oct 2015)
Log Message
Unreviewed Cloop build fix after bug: https://bugs.webkit.org/show_bug.cgi?id=149601
* bytecode/CodeBlock.cpp:
(JSC::CodeBlock::newExceptionHandlingCallSiteIndex):
* jit/JITCode.cpp:
(JSC::NativeJITCode::addressForCall):
(JSC::JITCode::liveRegistersToPreserveAtExceptionHandlingCallSite):
* jit/JITCode.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (190740 => 190741)
--- trunk/Source/_javascript_Core/ChangeLog 2015-10-08 20:19:15 UTC (rev 190740)
+++ trunk/Source/_javascript_Core/ChangeLog 2015-10-08 20:24:25 UTC (rev 190741)
@@ -1,3 +1,14 @@
+2015-10-08 Saam barati <[email protected]>
+
+ Unreviewed Cloop build fix after bug: https://bugs.webkit.org/show_bug.cgi?id=149601
+
+ * bytecode/CodeBlock.cpp:
+ (JSC::CodeBlock::newExceptionHandlingCallSiteIndex):
+ * jit/JITCode.cpp:
+ (JSC::NativeJITCode::addressForCall):
+ (JSC::JITCode::liveRegistersToPreserveAtExceptionHandlingCallSite):
+ * jit/JITCode.h:
+
2015-10-08 Joseph Pecoraro <[email protected]>
Clean up Marked classes
Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (190740 => 190741)
--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp 2015-10-08 20:19:15 UTC (rev 190740)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp 2015-10-08 20:24:25 UTC (rev 190741)
@@ -2996,6 +2996,7 @@
#else
// We never create new on-the-fly exception handling
// call sites outside the DFG/FTL inline caches.
+ UNUSED_PARAM(originalCallSite);
RELEASE_ASSERT_NOT_REACHED();
return CallSiteIndex(0);
#endif
Modified: trunk/Source/_javascript_Core/jit/JITCode.cpp (190740 => 190741)
--- trunk/Source/_javascript_Core/jit/JITCode.cpp 2015-10-08 20:19:15 UTC (rev 190740)
+++ trunk/Source/_javascript_Core/jit/JITCode.cpp 2015-10-08 20:24:25 UTC (rev 190741)
@@ -218,10 +218,12 @@
return m_ref.code();
}
+#if ENABLE(JIT)
RegisterSet JITCode::liveRegistersToPreserveAtExceptionHandlingCallSite(CodeBlock*, CallSiteIndex)
{
return RegisterSet();
}
+#endif
} // namespace JSC
Modified: trunk/Source/_javascript_Core/jit/JITCode.h (190740 => 190741)
--- trunk/Source/_javascript_Core/jit/JITCode.h 2015-10-08 20:19:15 UTC (rev 190740)
+++ trunk/Source/_javascript_Core/jit/JITCode.h 2015-10-08 20:24:25 UTC (rev 190741)
@@ -194,7 +194,9 @@
virtual bool contains(void*) = 0;
+#if ENABLE(JIT)
virtual RegisterSet liveRegistersToPreserveAtExceptionHandlingCallSite(CodeBlock*, CallSiteIndex);
+#endif
private:
JITType m_jitType;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes