Bug 215010 - Reduce over include usage in JSC
Summary: Reduce over include usage in JSC
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Keith Miller
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2020-07-30 22:05 PDT by Keith Miller
Modified: 2020-08-03 16:48 PDT (History)
9 users (show)

See Also:


Attachments
Patch (9.83 KB, patch)
2020-07-30 22:08 PDT, Keith Miller
no flags Details | Formatted Diff | Diff
Patch (10.36 KB, patch)
2020-07-30 22:18 PDT, Keith Miller
no flags Details | Formatted Diff | Diff
Patch (10.37 KB, patch)
2020-07-30 23:25 PDT, Keith Miller
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Keith Miller 2020-07-30 22:05:53 PDT
Reduce over include usage in JSC
Comment 1 Keith Miller 2020-07-30 22:08:31 PDT
Created attachment 405667 [details]
Patch
Comment 2 Keith Miller 2020-07-30 22:18:59 PDT
Created attachment 405668 [details]
Patch
Comment 3 Keith Miller 2020-07-30 23:25:24 PDT
Created attachment 405673 [details]
Patch
Comment 4 Mark Lam 2020-07-31 00:10:49 PDT
Comment on attachment 405673 [details]
Patch

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

r=me if bots are happy.

> Source/JavaScriptCore/runtime/VM.cpp:798
> +MacroAssemblerCodeRef<JITThunkPtrTag> VM::getCTIStub(ThunkGenerator generator)
> +{
> +    return jitStubs->ctiStub(*this, generator);
> +}

Optionally, this can go into VMInlines.h?
Comment 5 Keith Miller 2020-07-31 08:46:10 PDT
Comment on attachment 405673 [details]
Patch

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

>> Source/JavaScriptCore/runtime/VM.cpp:798
>> +}
> 
> Optionally, this can go into VMInlines.h?

Yeah, I don't think it's used anywhere really perf sensitive so I just put it here.
Comment 6 EWS 2020-07-31 09:00:31 PDT
Committed r265142: <https://trac.webkit.org/changeset/265142>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 405673 [details].
Comment 7 Radar WebKit Bug Importer 2020-07-31 09:01:22 PDT
<rdar://problem/66383243>
Comment 9 Yusuke Suzuki 2020-08-02 16:05:42 PDT
Committed r265189: <https://trac.webkit.org/changeset/265189>
Comment 10 Keith Miller 2020-08-03 16:48:58 PDT
(In reply to Yusuke Suzuki from comment #9)
> Committed r265189: <https://trac.webkit.org/changeset/265189>

Thanks for the fix!