Bug 1354560 - Fix IONFLAGS=help message draft
authorTed Campbell <tcampbell@mozilla.com>
Fri, 07 Apr 2017 10:51:28 -0400
changeset 558371 7610da714354a888bc356a832d4c7ad5d8552fd7
parent 556265 3854bcf837a729374b4d345910c274fed12cffe4
child 559746 5ac1dd62f0fe3ea5960a6c076c1975ef6ab9c492
push id52869
push userbmo:tcampbell@mozilla.com
push dateFri, 07 Apr 2017 14:51:52 +0000
bugs1354560
milestone55.0a1
Bug 1354560 - Fix IONFLAGS=help message MozReview-Commit-ID: 8O5vDfuxpaa
js/src/jit/JitSpewer.cpp
--- a/js/src/jit/JitSpewer.cpp
+++ b/js/src/jit/JitSpewer.cpp
@@ -439,31 +439,33 @@ jit::CheckLogging()
             "  cacheflush    Instruction Cache flushes (ARM only for now)\n"
             "  range         Range Analysis\n"
             "  unroll        Loop unrolling\n"
             "  logs          C1 and JSON visualization logging\n"
             "  logs-sync     Same as logs, but flushes between each pass (sync. compiled functions only).\n"
             "  profiling     Profiling-related information\n"
             "  trackopts     Optimization tracking information gathered by the Gecko profiler. "
                             "(Note: call enableGeckoProfiling() in your script to enable it).\n"
-            "  trackopts-ext Encoding information about optimization tracking"
+            "  trackopts-ext Encoding information about optimization tracking\n"
             "  dump-mir-expr Dump the MIR expressions\n"
             "  cfg           Control flow graph generation\n"
             "  all           Everything\n"
             "\n"
             "  bl-aborts     Baseline compiler abort messages\n"
             "  bl-scripts    Baseline script-compilation\n"
             "  bl-op         Baseline compiler detailed op-specific messages\n"
             "  bl-ic         Baseline inline-cache messages\n"
             "  bl-ic-fb      Baseline IC fallback stub messages\n"
             "  bl-osr        Baseline IC OSR messages\n"
             "  bl-bails      Baseline bailouts\n"
             "  bl-dbg-osr    Baseline debug mode on stack recompile messages\n"
             "  bl-all        All baseline spew\n"
             "\n"
+            "  cacheir-logs  CacheIR IC attach logging\n"
+            "\n"
         );
         exit(0);
         /*NOTREACHED*/
     }
     if (ContainsFlag(env, "aborts"))
         EnableChannel(JitSpew_IonAbort);
     if (ContainsFlag(env, "prune"))
         EnableChannel(JitSpew_Prune);