WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
210922
Return BigInt32 whenever we can
https://bugs.webkit.org/show_bug.cgi?id=210922
Summary
Return BigInt32 whenever we can
Saam Barati
Reported
2020-04-23 10:19:34 PDT
...
Attachments
patch
(67.76 KB, patch)
2020-04-24 14:57 PDT
,
Saam Barati
no flags
Details
Formatted Diff
Diff
patch
(69.74 KB, patch)
2020-04-24 15:53 PDT
,
Saam Barati
ysuzuki
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Saam Barati
Comment 1
2020-04-24 14:57:16 PDT
Created
attachment 397514
[details]
patch
Saam Barati
Comment 2
2020-04-24 15:53:40 PDT
Created
attachment 397523
[details]
patch
Yusuke Suzuki
Comment 3
2020-04-24 17:04:36 PDT
Comment on
attachment 397523
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=397523&action=review
r=me
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:555 > + } else if (node->binaryUseKind() == HeapBigIntUse) {
Use `node->isBinaryUseKind(HeapBigIntUse)`.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:560 > + } else if (node->binaryUseKind() == AnyBigIntUse)
Ditto.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:750 > + if (node->binaryUseKind() == HeapBigIntUse) {
Use `node->isBinaryUseKind(HeapBigIntUse)`.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:755 > + } else if (node->binaryUseKind() == AnyBigIntUse || node->binaryUseKind() == BigInt32Use)
Use `node->isBinaryUseKind(AnyBigIntUse) || node->isBinaryUseKind(BigInt32Use)`.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:1024 > + if (node->binaryUseKind() == HeapBigIntUse) {
Use `node->isBinaryUseKind(HeapBigIntUse)`.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:1029 > + } else if (node->binaryUseKind() == AnyBigIntUse || node->binaryUseKind() == BigInt32Use)
Ditto.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:1040 > + if (node->binaryUseKind() == HeapBigIntUse) {
Ditto.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:1045 > + } else if (node->binaryUseKind() == AnyBigIntUse || node->binaryUseKind() == BigInt32Use)
Ditto.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:1109 > + if (node->binaryUseKind() == HeapBigIntUse) {
Ditto.
> Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h:1114 > + } else if (node->binaryUseKind() == AnyBigIntUse || node->binaryUseKind() == BigInt32Use)
Ditto.
> Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp:3748 > + if (node->binaryUseKind() == HeapBigIntUse) {
`node->isBinaryUseKind(HeapBigIntUse)` would be better.
> Source/WebCore/ChangeLog:8 > + No new tests (OOPS!).
Just remove it. This is already covered by existing tests.
Saam Barati
Comment 4
2020-04-24 17:36:03 PDT
landed in:
https://trac.webkit.org/changeset/260683/webkit
Radar WebKit Bug Importer
Comment 5
2020-04-24 17:37:14 PDT
<
rdar://problem/62351393
>
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