Title: [279977] trunk/Source/_javascript_Core
Revision
279977
Author
[email protected]
Date
2021-07-15 22:02:05 -0700 (Thu, 15 Jul 2021)

Log Message

Alias JSC graph dumping options
https://bugs.webkit.org/show_bug.cgi?id=228015

Reviewed by Yusuke Suzuki.

My brain seems to associate the phases with the tier we are compiling in
rather than the type of graph we are processing. At this point it's
probably easier to just add an alias rather than convince me otherwise.

* runtime/OptionsList.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (279976 => 279977)


--- trunk/Source/_javascript_Core/ChangeLog	2021-07-16 04:10:49 UTC (rev 279976)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-07-16 05:02:05 UTC (rev 279977)
@@ -1,3 +1,16 @@
+2021-07-15  Keith Miller  <[email protected]>
+
+        Alias JSC graph dumping options
+        https://bugs.webkit.org/show_bug.cgi?id=228015
+
+        Reviewed by Yusuke Suzuki.
+
+        My brain seems to associate the phases with the tier we are compiling in
+        rather than the type of graph we are processing. At this point it's
+        probably easier to just add an alias rather than convince me otherwise.
+
+        * runtime/OptionsList.h:
+
 2021-07-15  Yusuke Suzuki  <[email protected]>
 
         [JSC] SamplingProfiler should recognize RegExp execution

Modified: trunk/Source/_javascript_Core/runtime/OptionsList.h (279976 => 279977)


--- trunk/Source/_javascript_Core/runtime/OptionsList.h	2021-07-16 04:10:49 UTC (rev 279976)
+++ trunk/Source/_javascript_Core/runtime/OptionsList.h	2021-07-16 05:02:05 UTC (rev 279977)
@@ -565,6 +565,10 @@
     v(showDisassembly, dumpDisassembly, SameOption) \
     v(showDFGDisassembly, dumpDFGDisassembly, SameOption) \
     v(showFTLDisassembly, dumpFTLDisassembly, SameOption) \
+    v(dumpGraphAtEachDFGFTLPhase, dumpDFGFTLGraphAtEachPhase, SameOption) \
+    v(dumpGraphAtEachDFGPhase, dumpDFGGraphAtEachPhase, SameOption) \
+    v(dumpGraphAtEachB3Phase, dumpB3GraphAtEachPhase, SameOption) \
+    v(dumpGraphAtEachAirPhase, dumpAirGraphAtEachPhase, SameOption) \
     v(alwaysDoFullCollection, useGenerationalGC, InvertedOption) \
     v(enableOSREntryToDFG, useOSREntryToDFG, SameOption) \
     v(enableOSREntryToFTL, useOSREntryToFTL, SameOption) \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to