Bug 214603 - llint_slow_path_get_private_name() should not be using PropertySlot::InternalMethodType::VMInquiry.
Summary: llint_slow_path_get_private_name() should not be using PropertySlot::Internal...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Mark Lam
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2020-07-21 11:06 PDT by Mark Lam
Modified: 2020-07-21 14:12 PDT (History)
7 users (show)

See Also:


Attachments
proposed patch. (3.17 KB, patch)
2020-07-21 11:12 PDT, Mark Lam
no flags Details | Formatted Diff | Diff
proposed patch. (4.16 KB, patch)
2020-07-21 11:35 PDT, Mark Lam
ysuzuki: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Lam 2020-07-21 11:06:39 PDT
VMInquiry means (1) the get operation should not call back into JS, (2) it should not throw any exceptions (except for OutOfMemoryError or StackOverflowError which can be thrown at any time), or have any side effects that is observable from JS code.  In this case, llint_slow_path_get_private_name() is just implementating PrivateFieldGet (https://tc39.es/proposal-class-fields/#sec-privatefieldget) and has no need to use VMInquiry.
Comment 1 Mark Lam 2020-07-21 11:12:10 PDT
Created attachment 404839 [details]
proposed patch.
Comment 2 Mark Lam 2020-07-21 11:35:52 PDT
Created attachment 404841 [details]
proposed patch.
Comment 3 Yusuke Suzuki 2020-07-21 12:27:07 PDT
Comment on attachment 404841 [details]
proposed patch.

r=me
Comment 4 Mark Lam 2020-07-21 14:11:24 PDT
Thanks for the review.  Landed in r264679: <http://trac.webkit.org/r264679>.
Comment 5 Radar WebKit Bug Importer 2020-07-21 14:12:15 PDT
<rdar://problem/65902335>