| Summary: | Enhance ability to dump JSC Options | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Mark Lam <mark.lam> | ||||
| Component: | JavaScriptCore | Assignee: | Mark Lam <mark.lam> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | benjamin, fpizlo, ggaren, mhahnenb, mmirman, msaboff, oliver | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Mark Lam
2015-04-02 20:04:08 PDT
Created attachment 250033 [details]
the patch.
Comment on attachment 250033 [details] the patch. View in context: https://bugs.webkit.org/attachment.cgi?id=250033&action=review > Source/JavaScriptCore/runtime/Options.cpp:397 > + fprintf(stream, "%s", m_entry.boolVal?"true":"false"); Missing spaces around the part of the operator. > Source/JavaScriptCore/runtime/Options.h:275 > + v(unsigned, slowPathAllocsBetweenGCs, 0, "debugging option to trigger a GC for every count of this number of slow path allocs") \ The description is a bit hard to process. (In reply to comment #2) > Comment on attachment 250033 [details] > the patch. > > View in context: > https://bugs.webkit.org/attachment.cgi?id=250033&action=review > > > Source/JavaScriptCore/runtime/Options.cpp:397 > > + fprintf(stream, "%s", m_entry.boolVal?"true":"false"); > > Missing spaces around the part of the operator. Fixed locally. > > Source/JavaScriptCore/runtime/Options.h:275 > > + v(unsigned, slowPathAllocsBetweenGCs, 0, "debugging option to trigger a GC for every count of this number of slow path allocs") \ > > The description is a bit hard to process. I changed this string to "force a GC on every Nth slow path alloc, where N is specified by this option". Thanks for the review. Landed in r182304: <http://trac.webkit.org/r182304>. |