WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
223783
[JSC] Use new Apple ICU APIs to avoid C++ ICU API usage
https://bugs.webkit.org/show_bug.cgi?id=223783
Summary
[JSC] Use new Apple ICU APIs to avoid C++ ICU API usage
Yusuke Suzuki
Reported
2021-03-25 23:11:13 PDT
[JSC] Use new Apple ICU APIs to avoid C++ ICU API usage
Attachments
Patch
(11.54 KB, patch)
2021-03-25 23:12 PDT
,
Yusuke Suzuki
no flags
Details
Formatted Diff
Diff
Patch
(10.39 KB, patch)
2021-03-25 23:17 PDT
,
Yusuke Suzuki
no flags
Details
Formatted Diff
Diff
Patch
(11.34 KB, patch)
2021-03-26 02:40 PDT
,
Yusuke Suzuki
ews-feeder
: commit-queue-
Details
Formatted Diff
Diff
Patch
(10.78 KB, patch)
2021-03-26 02:51 PDT
,
Yusuke Suzuki
mark.lam
: review+
ews-feeder
: commit-queue-
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Yusuke Suzuki
Comment 1
2021-03-25 23:12:41 PDT
Created
attachment 424320
[details]
Patch
Yusuke Suzuki
Comment 2
2021-03-25 23:12:44 PDT
<
rdar://problem/75060240
>
Yusuke Suzuki
Comment 3
2021-03-25 23:17:11 PDT
Created
attachment 424321
[details]
Patch
Mark Lam
Comment 4
2021-03-26 02:09:17 PDT
Comment on
attachment 424321
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=424321&action=review
> Source/JavaScriptCore/runtime/JSDateMath.cpp:107 > +#endif
Why not just have an #else using OpaqueICUTimeZone = icu::Timezone; here and avoid all the bitwise_cast, as well as remove some of the #if HAVE(ICU_C_TIMEZONE_API) below?
Yusuke Suzuki
Comment 5
2021-03-26 02:38:25 PDT
Comment on
attachment 424321
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=424321&action=review
>> Source/JavaScriptCore/runtime/JSDateMath.cpp:107 >> +#endif > > Why not just have an #else > using OpaqueICUTimeZone = icu::Timezone; > here and avoid all the bitwise_cast, as well as remove some of the #if HAVE(ICU_C_TIMEZONE_API) below?
That sounds nice. Changed.
Yusuke Suzuki
Comment 6
2021-03-26 02:40:35 PDT
Created
attachment 424337
[details]
Patch
Yusuke Suzuki
Comment 7
2021-03-26 02:50:07 PDT
Comment on
attachment 424321
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=424321&action=review
>>> Source/JavaScriptCore/runtime/JSDateMath.cpp:107 >>> +#endif >> >> Why not just have an #else >> using OpaqueICUTimeZone = icu::Timezone; >> here and avoid all the bitwise_cast, as well as remove some of the #if HAVE(ICU_C_TIMEZONE_API) below? > > That sounds nice. Changed.
Ah, this does not work. using (typedef) and class forward declaration are different.
Yusuke Suzuki
Comment 8
2021-03-26 02:51:37 PDT
Created
attachment 424339
[details]
Patch
Mark Lam
Comment 9
2021-03-26 08:55:37 PDT
Comment on
attachment 424339
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=424339&action=review
r=me. Please make sure that the mac-AS-debug-wk2 bot failure is not real.
> Source/JavaScriptCore/runtime/JSDateMath.cpp:133 > + // The above can fail if input date is invalid: NaN etc. > + // We can return any values in this case since later we fail when computing non timezone offset part anyway. > + constexpr LocalTimeOffset failed { false, 0 };
"The above" sounds wrong since there's no code that has any effect above. How about changing it to "This function"? This failed return value also seem to contradict the comment above the function which states that "If this function is called with NaN it returns NaN." Maybe remove the comment above the function?
Yusuke Suzuki
Comment 10
2021-03-26 13:04:52 PDT
Comment on
attachment 424339
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=424339&action=review
Thanks. And AS fail is media/media-fragments/TC0051.html, which is known flaky these days.
>> Source/JavaScriptCore/runtime/JSDateMath.cpp:133 >> + constexpr LocalTimeOffset failed { false, 0 }; > > "The above" sounds wrong since there's no code that has any effect above. How about changing it to "This function"? > > This failed return value also seem to contradict the comment above the function which states that "If this function is called with NaN it returns NaN." Maybe remove the comment above the function?
Yes, I've changed them.
Yusuke Suzuki
Comment 11
2021-03-26 13:07:45 PDT
Committed
r275109
(
235817@main
): <
https://commits.webkit.org/235817@main
>
Yusuke Suzuki
Comment 12
2021-04-18 02:33:41 PDT
***
Bug 222160
has been marked as a duplicate of this bug. ***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug