Bug 193413

Summary: [JSC] AI should check the given constant's array type when folding GetByVal into constant
Product: WebKit Reporter: Yusuke Suzuki <ysuzuki>
Component: JavaScriptCoreAssignee: Yusuke Suzuki <ysuzuki>
Status: RESOLVED FIXED    
Severity: Normal CC: ews-watchlist, keith_miller, mark.lam, msaboff, saam, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch keith_miller: review+

Description Yusuke Suzuki 2019-01-14 15:24:10 PST
GetByVal has Double ArrayModes. So it expects to get Double arrays, and it will genetate a double value.
To ensure that, we have CheckStructure / CheckArray before this GetByVal.
But in AI phase, CheckStructure and CheckArray would not perform anything on a proven abstract value.
In that case, our GetByVal in AI gets unexpected array. If we do not perform any checks before using that to fold GetByVal into a constant, we have a bad time.


1: JSConstant(Array with CopyOnWrite | Contiguous) => like, ["bad"]
2: CheckStructure(@1, Array CopyOnWrite | Double) => It finally becomes OSR exit, but now, AI is not sure about it.
3: GetButterfly(@1)
4: GetByVal(@1, 0, @3, Array CopyOnWrite | Double) => If @4 can retrieve "bad" from @1, we attempt to convert @4 into "bad", but it is not acceptable since GetByVal(Double shape) should return a Double result.

We should perform array check on @1 constant before performing constant folding in AI.
Comment 1 Yusuke Suzuki 2019-01-14 15:25:34 PST
<rdar://problem/46092389>
Comment 2 Yusuke Suzuki 2019-01-14 16:45:35 PST
Created attachment 359098 [details]
Patch
Comment 3 Yusuke Suzuki 2019-01-14 16:49:28 PST
Created attachment 359099 [details]
Patch
Comment 4 Keith Miller 2019-01-14 17:12:39 PST
Comment on attachment 359099 [details]
Patch

r=me.
Comment 5 Yusuke Suzuki 2019-01-14 17:26:49 PST
Committed r239964: <https://trac.webkit.org/changeset/239964>