Title: [260325] trunk/Source/_javascript_Core
- Revision
- 260325
- Author
- [email protected]
- Date
- 2020-04-18 16:02:37 -0700 (Sat, 18 Apr 2020)
Log Message
Unreviewed, remove commented out/dead code that didn't failed to
get removed when landing r260323.
* llint/LLIntSlowPaths.cpp:
(JSC::LLInt::LLINT_SLOW_PATH_DECL):
* runtime/CommonSlowPaths.cpp:
(JSC::iterator_next_try_fast):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (260324 => 260325)
--- trunk/Source/_javascript_Core/ChangeLog 2020-04-18 21:52:57 UTC (rev 260324)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-04-18 23:02:37 UTC (rev 260325)
@@ -1,5 +1,15 @@
2020-04-18 Keith Miller <[email protected]>
+ Unreviewed, remove commented out/dead code that didn't failed to
+ get removed when landing r260323.
+
+ * llint/LLIntSlowPaths.cpp:
+ (JSC::LLInt::LLINT_SLOW_PATH_DECL):
+ * runtime/CommonSlowPaths.cpp:
+ (JSC::iterator_next_try_fast):
+
+2020-04-18 Keith Miller <[email protected]>
+
Redesign how we do for-of iteration for JSArrays
https://bugs.webkit.org/show_bug.cgi?id=175454
Modified: trunk/Source/_javascript_Core/llint/LLIntSlowPaths.cpp (260324 => 260325)
--- trunk/Source/_javascript_Core/llint/LLIntSlowPaths.cpp 2020-04-18 21:52:57 UTC (rev 260324)
+++ trunk/Source/_javascript_Core/llint/LLIntSlowPaths.cpp 2020-04-18 23:02:37 UTC (rev 260325)
@@ -1675,8 +1675,6 @@
LLINT_BEGIN();
UNUSED_PARAM(globalObject);
-// dataLogLn("Calling slow open_call");
-
RELEASE_AND_RETURN(throwScope, genericCall(codeBlock, callFrame, pc->as<OpIteratorOpen>(), CodeForCall, OpIteratorOpen::symbolCall));
}
@@ -1686,8 +1684,6 @@
LLINT_BEGIN();
UNUSED_PARAM(globalObject);
-// dataLogLn("Calling slow next_call");
-
RELEASE_AND_RETURN(throwScope, genericCall(codeBlock, callFrame, pc->as<OpIteratorNext>(), CodeForCall, OpIteratorNext::computeNext));
}
Modified: trunk/Source/_javascript_Core/runtime/CommonSlowPaths.cpp (260324 => 260325)
--- trunk/Source/_javascript_Core/runtime/CommonSlowPaths.cpp 2020-04-18 21:52:57 UTC (rev 260324)
+++ trunk/Source/_javascript_Core/runtime/CommonSlowPaths.cpp 2020-04-18 23:02:37 UTC (rev 260325)
@@ -1070,10 +1070,6 @@
}
}
RELEASE_ASSERT_NOT_REACHED();
-
- // Return to the bytecode to try in generic mode.
- metadata.m_iterationMetadata.seenModes = metadata.m_iterationMetadata.seenModes | IterationMode::Generic;
- return encodeResult(pc, reinterpret_cast<void*>(IterationMode::Generic));
}
SlowPathReturnType SLOW_PATH iterator_next_try_fast_narrow(CallFrame* callFrame, const Instruction* pc, void* metadataPtr)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes