Bug 182652 - Lock down JSFunction
Summary: Lock down JSFunction
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: WebKit Nightly Build
Hardware: All All
: P2 Normal
Assignee: Filip Pizlo
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2018-02-09 14:59 PST by Filip Pizlo
Modified: 2018-02-13 09:03 PST (History)
6 users (show)

See Also:


Attachments
work in progress (25.59 KB, patch)
2018-02-09 15:00 PST, Filip Pizlo
no flags Details | Formatted Diff | Diff
more (36.14 KB, patch)
2018-02-10 16:54 PST, Filip Pizlo
no flags Details | Formatted Diff | Diff
the patch (38.84 KB, patch)
2018-02-10 18:04 PST, Filip Pizlo
no flags Details | Formatted Diff | Diff
the patch (39.30 KB, patch)
2018-02-10 19:07 PST, Filip Pizlo
no flags Details | Formatted Diff | Diff
the patch (39.37 KB, patch)
2018-02-10 19:24 PST, Filip Pizlo
ews-watchlist: commit-queue-
Details | Formatted Diff | Diff
Archive of layout-test-results from ews112 for mac-sierra (3.30 MB, application/zip)
2018-02-10 21:17 PST, EWS Watchlist
no flags Details
the patch (39.92 KB, patch)
2018-02-12 14:25 PST, Filip Pizlo
saam: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Filip Pizlo 2018-02-09 14:59:27 PST
- Put it in an isospace

- Poison its outgoing pointers
Comment 1 Filip Pizlo 2018-02-09 15:00:34 PST
Created attachment 333521 [details]
work in progress
Comment 2 Filip Pizlo 2018-02-10 16:54:22 PST
Created attachment 333562 [details]
more
Comment 3 Filip Pizlo 2018-02-10 18:04:56 PST
Created attachment 333564 [details]
the patch
Comment 4 Radar WebKit Bug Importer 2018-02-10 18:05:40 PST
<rdar://problem/37429153>
Comment 5 Filip Pizlo 2018-02-10 19:07:15 PST
Created attachment 333565 [details]
the patch
Comment 6 Filip Pizlo 2018-02-10 19:24:13 PST
Created attachment 333566 [details]
the patch

Fixed builds
Comment 7 EWS Watchlist 2018-02-10 21:17:05 PST
Comment on attachment 333566 [details]
the patch

Attachment 333566 [details] did not pass mac-debug-ews (mac):
Output: http://webkit-queues.webkit.org/results/6450921

New failing tests:
js/repeat-cached-vm-reentry.html
Comment 8 EWS Watchlist 2018-02-10 21:17:07 PST
Created attachment 333568 [details]
Archive of layout-test-results from ews112 for mac-sierra

The attached test failures were seen while running run-webkit-tests on the mac-debug-ews.
Bot: ews112  Port: mac-sierra  Platform: Mac OS X 10.12.6
Comment 9 Filip Pizlo 2018-02-12 11:11:13 PST
earley                  0.30123+-0.00176    !    43.34337+-1.07163       ! definitely 143.8868x slower


OOOOOPS
Comment 10 Filip Pizlo 2018-02-12 14:25:44 PST
Created attachment 333632 [details]
the patch

Fixed a nasty bug in Repatch.
Comment 11 Saam Barati 2018-02-12 15:09:49 PST
Comment on attachment 333632 [details]
the patch

View in context: https://bugs.webkit.org/attachment.cgi?id=333632&action=review

r=me

> Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h:164
> +            return TrustedImmPtr(bitwise_cast<size_t>(cell) ^ Key::key());

Style: uintptr_t instead of size_t?

> Source/JavaScriptCore/runtime/JSBoundFunction.h:44
> +    template<typename CellType>

Should we also poison JSBoundFunction's other fields? Or perhaps open a bug for that work?
Comment 12 Filip Pizlo 2018-02-12 15:12:03 PST
(In reply to Saam Barati from comment #11)
> Comment on attachment 333632 [details]
> the patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=333632&action=review
> 
> r=me
> 
> > Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h:164
> > +            return TrustedImmPtr(bitwise_cast<size_t>(cell) ^ Key::key());
> 
> Style: uintptr_t instead of size_t?
> 

The other weakPointer function does size_t.

> > Source/JavaScriptCore/runtime/JSBoundFunction.h:44
> > +    template<typename CellType>
> 
> Should we also poison JSBoundFunction's other fields? Or perhaps open a bug
> for that work?

Since those point to JSObject-like things, maybe we don't have to poison them.
Comment 13 Filip Pizlo 2018-02-13 09:03:02 PST
Landed in http://trac.webkit.org/changeset/228420/webkit