Timeline
Nov 8, 2016:
- 6:51 PM Changeset in webkit [208427] by
-
- 2 edits in trunk/Source/JavaScriptCore
REGRESSION: date-format-tofte.js is super slow
https://bugs.webkit.org/show_bug.cgi?id=164499
Patch by Geoffrey Garen <ggaren@apple.com> on 2016-11-08
Reviewed by Sam Weinig.
- bytecode/EvalCodeCache.h:
(JSC::EvalCodeCache::CacheKey::operator==): Use character comparison,
not pointer comparison. (This function was always wrong, but I started
calling it in more places.)
- 6:50 PM Changeset in webkit [208426] by
-
- 2 edits in trunk/Source/JavaScriptCore
REGRESSION: Crashes in StringImpl destructor during GC when clearing the HasOwnPropertyCache
https://bugs.webkit.org/show_bug.cgi?id=164433
Patch by Saam Barati <sbarati@apple.com> on 2016-11-08
Reviewed by Mark Lam.
Clearing the HasOwnPropertyCache will call deref() on the StringImpls
in the cache. We were doing this from the collector thread, which is
not allowed. It must be done from the mutator thread. We now clear the
cache in Heap::finalize() which happens before the mutator begins
executing JS after a collection happens.
- heap/Heap.cpp:
(JSC::Heap::collectInThread):
(JSC::Heap::finalize):
- 6:02 PM Changeset in webkit [208425] by
-
- 5 edits in tags/Safari-603.1.11.2/Source
Versioning.
- 5:59 PM Changeset in webkit [208424] by
-
- 1 copy in tags/Safari-603.1.11.2
New tag.
Nov 7, 2016:
- 5:26 PM Changeset in webkit [208423] by
-
- 1 copy in tags/Safari-602.3.9
New tag.
- 6:46 AM Changeset in webkit [208422] by
-
- 9 edits in trunk
Unreviewed, rolling out r208382.
This change appears to have caused 3
SerializedCryptoKeyWrapTest API tests to fail on macOS.
Reverted changeset:
"[Readable Streams API] Implement ByteStreamController
error()"
https://bugs.webkit.org/show_bug.cgi?id=164319
http://trac.webkit.org/changeset/208382
Nov 6, 2016:
- 10:12 PM Changeset in webkit [208421] by
-
- 8 edits in branches/safari-602-branch/Source/WebCore
Merge r208392. rdar://problem/28409526
Nov 5, 2016:
- 11:00 AM Changeset in webkit [208420] by
-
- 4 edits in trunk/Source
Fixed compilation of LLInt with MinGW
https://bugs.webkit.org/show_bug.cgi?id=164449
Reviewed by Michael Catanzaro.
MinGW uses LLIntAssembly.h with GNU assembler syntax, just like GCC on
other platforms.
Source/JavaScriptCore:
- llint/LowLevelInterpreter.cpp: Include LLIntAssembly.h with
appropriate preamble.
Source/WTF:
- wtf/InlineASM.h: Define LOCAL_LABEL_STRING as .L#name for MinGW.
- 10:59 AM Changeset in webkit [208419] by
-
- 3 edits in trunk/LayoutTests
Removing flaky expectations for tests that were fixed with r208327.
https://bugs.webkit.org/show_bug.cgi?id=164034
Unreviewed test gardening.
- TestExpectations:
- platform/mac/TestExpectations:
- 10:58 AM Changeset in webkit [208418] by
-
- 4 edits in trunk
[MinGW] Fixed C99/C++11 format attributes in printf-like functions
https://bugs.webkit.org/show_bug.cgi?id=164448
Reviewed by Michael Catanzaro.
By default MinGW uses printf-like function provided in msvcrt.dll,
however they miss support for C99/C++11 format attributes. Use MinGW
implementations instead.
.:
- Source/cmake/OptionsCommon.cmake: Define USE_MINGW_ANSI_STDIO
Source/WTF:
- wtf/Assertions.h: Use gnu_printf format in WTF_ATTRIBUTE_PRINTF
- 1:24 AM Changeset in webkit [208417] by
-
- 2 edits in trunk/Source/WTF
[JSCOnly] RunLoopGeneric should adopt MonotonicTime / WallTime change
https://bugs.webkit.org/show_bug.cgi?id=164447
Reviewed by Csaba Osztrogonác.
Build fix for JSCOnly.
- wtf/generic/RunLoopGeneric.cpp:
(WTF::RunLoop::TimerBase::ScheduledTask::create):
(WTF::RunLoop::TimerBase::ScheduledTask::ScheduledTask):
(WTF::RunLoop::TimerBase::ScheduledTask::scheduledTimePoint):
(WTF::RunLoop::TimerBase::ScheduledTask::updateReadyTime):
(WTF::RunLoop::populateTasks):
(WTF::RunLoop::dispatchAfter):
(WTF::RunLoop::TimerBase::start):
- 12:56 AM Changeset in webkit [208416] by
-
- 4 edits in trunk
[SOUP] Layout test http/tests/misc/authentication-redirect-3/authentication-sent-to-redirect-same-origin-with-location-credentials.html fails
https://bugs.webkit.org/show_bug.cgi?id=139358
Reviewed by Michael Catanzaro.
Source/WebKit2:
Stop putting the credentials in the URL unconditionally and ensure we only do that when provided by the URL
itself. Libsoup has its own cache of SoupAuth, so we don't need to pass user/pass in the URL for every single
request, libsoup will authenticate those automatically.
- NetworkProcess/soup/NetworkDataTaskSoup.cpp:
(WebKit::NetworkDataTaskSoup::applyAuthenticationToRequest):
LayoutTests:
- platform/gtk/TestExpectations: Unskip http/tests/misc/authentication-redirect-3/authentication-sent-to-redirect-same-origin-with-location-credentials.html.