src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugOptions.java
author jwilhelm
Tue, 12 Mar 2019 19:17:42 +0100
changeset 54084 84f10bbf993f
parent 52910 583fd71c47d6
child 55509 d58442b8abc1
child 58678 9cf78a70fa4f
permissions -rw-r--r--
8218074: Update Graal Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     1
/*
52910
583fd71c47d6 8214023: Update Graal
dlong
parents: 52578
diff changeset
     2
 * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     4
 *
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     8
 *
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    13
 * accompanied this code).
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    14
 *
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    18
 *
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    21
 * questions.
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    22
 */
50858
2d3e99a72541 8205824: Update Graal
never
parents: 49873
diff changeset
    23
2d3e99a72541 8205824: Update Graal
never
parents: 49873
diff changeset
    24
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    25
package org.graalvm.compiler.debug;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    26
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    27
import java.io.IOException;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    28
import java.nio.file.Files;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    29
import java.nio.file.Path;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    30
import java.nio.file.Paths;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    31
49873
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
    32
import jdk.internal.vm.compiler.collections.EconomicMap;
54084
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    33
import org.graalvm.compiler.options.EnumOptionKey;
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    34
import org.graalvm.compiler.options.Option;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    35
import org.graalvm.compiler.options.OptionKey;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    36
import org.graalvm.compiler.options.OptionType;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    37
import org.graalvm.compiler.options.OptionValues;
49873
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
    38
import org.graalvm.compiler.serviceprovider.GraalServices;
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    39
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    40
/**
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    41
 * Options that configure a {@link DebugContext} and related functionality.
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    42
 */
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    43
public class DebugOptions {
54084
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    44
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    45
    /**
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    46
     * Values for the {@link DebugOptions#PrintGraph} option denoting where graphs dumped as a
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    47
     * result of the {@link DebugOptions#Dump} option are sent.
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    48
     */
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    49
    public enum PrintGraphTarget {
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    50
        /**
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    51
         * Dump graphs to files.
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    52
         */
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    53
        File,
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    54
54084
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    55
        /**
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    56
         * Dump graphs to the network. The network destination is specified by the
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    57
         * {@link DebugOptions#PrintGraphHost} and {@link DebugOptions#PrintGraphPort} options. If a
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    58
         * network connection cannot be opened, dumping falls back to {@link #File} dumping.
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    59
         */
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    60
        Network,
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    61
54084
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    62
        /**
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    63
         * Do not dump graphs.
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    64
         */
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
    65
        Disable;
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    66
    }
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    67
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    68
    // @formatter:off
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    69
    @Option(help = "Comma separated names of timers that are enabled irrespective of the value for Time option. " +
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    70
                   "An empty value enables all timers unconditionally.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    71
    public static final OptionKey<String> Timers = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    72
    @Option(help = "Comma separated names of counters that are enabled irrespective of the value for Count option. " +
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    73
                   "An empty value enables all counters unconditionally.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    74
    public static final OptionKey<String> Counters = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    75
    @Option(help = "Comma separated names of memory usage trackers that are enabled irrespective of the value for TrackMemUse option. " +
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    76
                   "An empty value enables all memory usage trackers unconditionally.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    77
    public static final OptionKey<String> MemUseTrackers = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    78
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    79
    @Option(help = "Pattern for specifying scopes in which counters are enabled. " +
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    80
                   "See the Dump option for the pattern syntax. " +
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    81
                   "An empty value enables all counters unconditionally.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    82
    public static final OptionKey<String> Count = new OptionKey<>(null);
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    83
    @Option(help = "Pattern for specifying scopes in which memory use tracking is enabled. " +
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    84
                   "See the Dump option for the pattern syntax. " +
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    85
                   "An empty value enables all memory use trackers unconditionally.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    86
    public static final OptionKey<String> TrackMemUse = new OptionKey<>(null);
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    87
    @Option(help = "Pattern for specifying scopes in which timing is enabled. " +
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    88
                   "See the Dump option for the pattern syntax. " +
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    89
                   "An empty value enables all timers unconditionally.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    90
    public static final OptionKey<String> Time = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    91
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    92
    @Option(help = "Pattern for specifying scopes in which logging is enabled. " +
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    93
                   "See the Dump option for the pattern syntax.", type = OptionType.Debug)
46762
f7defa99f173 8185829: Update Graal
dlong
parents: 46680
diff changeset
    94
    public static final OptionKey<String> Verify = new OptionKey<>(null);
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    95
    @Option(help = "file:doc-files/DumpHelp.txt", type = OptionType.Debug)
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    96
    public static final OptionKey<String> Dump = new OptionKey<>(null);
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    97
    @Option(help = "Pattern for specifying scopes in which logging is enabled. " +
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
    98
                   "See the Dump option for the pattern syntax.", type = OptionType.Debug)
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
    99
    public static final OptionKey<String> Log = new OptionKey<>(null);
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
   100
    @Option(help = "file:doc-files/MethodFilterHelp.txt")
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   101
    public static final OptionKey<String> MethodFilter = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   102
    @Option(help = "Only check MethodFilter against the root method in the context if true, otherwise check all methods", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   103
    public static final OptionKey<Boolean> MethodFilterRootOnly = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   104
    @Option(help = "Dump a before and after graph if the named phase changes the graph.%n" +
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   105
                   "The argument is substring matched against the simple name of the phase class", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   106
    public static final OptionKey<String> DumpOnPhaseChange = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   107
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
   108
    @Option(help = "Lists on the console at VM shutdown the metric names available to the Timers, Counters and MemUseTrackers options. " +
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   109
                   "Note that this only lists the metrics that were initialized during the VM execution and so " +
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   110
                   "will not include metrics for compiler code that is not executed.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   111
    public static final OptionKey<Boolean> ListMetrics = new OptionKey<>(false);
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
   112
    @Option(help = "file:doc-files/MetricsFileHelp.txt", type = OptionType.Debug)
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   113
     public static final OptionKey<String> MetricsFile = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   114
    @Option(help = "File to which aggregated metrics are dumped at shutdown. A CSV format is used if the file ends with .csv " +
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   115
                    "otherwise a more human readable format is used. If not specified, metrics are dumped to the console.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   116
    public static final OptionKey<String> AggregatedMetricsFile = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   117
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   118
    @Option(help = "Only report metrics for threads whose name matches the regular expression.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   119
    public static final OptionKey<String> MetricsThreadFilter = new OptionKey<>(null);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   120
    @Option(help = "Enable debug output for stub code generation and snippet preparation.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   121
    public static final OptionKey<Boolean> DebugStubsAndSnippets = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   122
    @Option(help = "Send Graal compiler IR to dump handlers on error.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   123
    public static final OptionKey<Boolean> DumpOnError = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   124
    @Option(help = "Intercept also bailout exceptions", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   125
    public static final OptionKey<Boolean> InterceptBailout = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   126
    @Option(help = "Enable more verbose log output when available", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   127
    public static final OptionKey<Boolean> LogVerbose = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   128
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   129
    @Option(help = "The directory where various Graal dump files are written.")
54084
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   130
    public static final OptionKey<String> DumpPath = new OptionKey<>("graal_dumps");
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   131
    @Option(help = "Print the name of each dump file path as it's created.")
46762
f7defa99f173 8185829: Update Graal
dlong
parents: 46680
diff changeset
   132
    public static final OptionKey<Boolean> ShowDumpFiles = new OptionKey<>(false);
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   133
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   134
    @Option(help = "Enable dumping to the C1Visualizer. Enabling this option implies PrintBackendCFG.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   135
    public static final OptionKey<Boolean> PrintCFG = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   136
    @Option(help = "Enable dumping LIR, register allocation and code generation info to the C1Visualizer.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   137
    public static final OptionKey<Boolean> PrintBackendCFG = new OptionKey<>(true);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   138
54084
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   139
    @Option(help = "file:doc-files/PrintGraphHelp.txt", type = OptionType.Debug)
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   140
    public static final EnumOptionKey<PrintGraphTarget> PrintGraph = new EnumOptionKey<>(PrintGraphTarget.File);
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   141
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   142
    @Option(help = "Setting to true sets PrintGraph=file, setting to false sets PrintGraph=network", type = OptionType.Debug)
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   143
    public static final OptionKey<Boolean> PrintGraphFile = new OptionKey<Boolean>(true) {
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   144
        @Override
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   145
        protected void onValueUpdate(EconomicMap<OptionKey<?>, Object> values, Boolean oldValue, Boolean newValue) {
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   146
            PrintGraphTarget v = PrintGraph.getValueOrDefault(values);
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   147
            if (newValue.booleanValue()) {
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   148
                if (v != PrintGraphTarget.File) {
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   149
                    PrintGraph.update(values, PrintGraphTarget.File);
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   150
                }
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   151
            } else {
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   152
                if (v != PrintGraphTarget.Network) {
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   153
                    PrintGraph.update(values, PrintGraphTarget.Network);
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   154
                }
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   155
            }
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   156
        }
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   157
    };
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   158
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   159
    @Option(help = "Host part of the address to which graphs are dumped.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   160
    public static final OptionKey<String> PrintGraphHost = new OptionKey<>("127.0.0.1");
49873
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
   161
    @Option(help = "Port part of the address to which graphs are dumped in binary format.", type = OptionType.Debug)
54084
84f10bbf993f 8218074: Update Graal
jwilhelm
parents: 52910
diff changeset
   162
    public static final OptionKey<Integer> PrintGraphPort = new OptionKey<>(4445);
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   163
    @Option(help = "Schedule graphs as they are dumped.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   164
    public static final OptionKey<Boolean> PrintGraphWithSchedule = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   165
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   166
    @Option(help = "Enable dumping Truffle ASTs to the IdealGraphVisualizer.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   167
    public static final OptionKey<Boolean> PrintTruffleTrees = new OptionKey<>(true);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   168
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   169
    @Option(help = "Treat any exceptions during dumping as fatal.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   170
    public static final OptionKey<Boolean> DumpingErrorsAreFatal = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   171
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   172
    @Option(help = "Enable dumping canonical text from for graphs.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   173
    public static final OptionKey<Boolean> PrintCanonicalGraphStrings = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   174
    @Option(help = "Choose format used when dumping canonical text for graphs: " +
46963
089674d9949b 8186681: Update Graal
iveresov
parents: 46762
diff changeset
   175
            "0 gives a scheduled graph (better for spotting changes involving the schedule) " +
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   176
            "while 1 gives a CFG containing expressions rooted at fixed nodes (better for spotting small structure differences)", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   177
    public static final OptionKey<Integer> PrintCanonicalGraphStringFlavor = new OptionKey<>(0);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   178
    @Option(help = "Exclude virtual nodes when dumping canonical text for graphs.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   179
    public static final OptionKey<Boolean> CanonicalGraphStringsExcludeVirtuals = new OptionKey<>(true);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   180
    @Option(help = "Exclude virtual nodes when dumping canonical text for graphs.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   181
    public static final OptionKey<Boolean> CanonicalGraphStringsCheckConstants = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   182
    @Option(help = "Attempts to remove object identity hashes when dumping canonical text for graphs.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   183
    public static final OptionKey<Boolean> CanonicalGraphStringsRemoveIdentities = new OptionKey<>(true);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   184
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   185
    @Option(help = "Clear the debug metrics after bootstrap.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   186
    public static final OptionKey<Boolean> ClearMetricsAfterBootstrap = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   187
    @Option(help = "Do not compile anything on bootstrap but just initialize the compiler.", type = OptionType.Debug)
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   188
    public static final OptionKey<Boolean> BootstrapInitializeOnly = new OptionKey<>(false);
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   189
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   190
    /**
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   191
     * Gets the directory in which {@link DebugDumpHandler}s can generate output. This will be the
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   192
     * directory specified by {@link #DumpPath} if it has been set otherwise it will be derived from
49873
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
   193
     * the default value of {@link #DumpPath} and {@link GraalServices#getGlobalTimeStamp()}.
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   194
     *
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   195
     * This method will ensure the returned directory exists, printing a message to {@link TTY} if
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   196
     * it creates it.
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   197
     *
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   198
     * @return a path as described above whose directories are guaranteed to exist
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   199
     * @throws IOException if there was an error in {@link Files#createDirectories}
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   200
     */
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   201
    public static Path getDumpDirectory(OptionValues options) throws IOException {
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   202
        Path dumpDir;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   203
        if (DumpPath.hasBeenSet(options)) {
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   204
            dumpDir = Paths.get(DumpPath.getValue(options));
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   205
        } else {
49873
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
   206
            dumpDir = Paths.get(DumpPath.getValue(options), String.valueOf(GraalServices.getGlobalTimeStamp()));
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   207
        }
46680
2894e4262fd6 8184768: Update Graal
iveresov
parents: 46640
diff changeset
   208
        dumpDir = dumpDir.toAbsolutePath();
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   209
        if (!Files.exists(dumpDir)) {
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   210
            synchronized (DebugConfigImpl.class) {
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   211
                if (!Files.exists(dumpDir)) {
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   212
                    Files.createDirectories(dumpDir);
49873
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
   213
                    if (ShowDumpFiles.getValue(options)) {
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
   214
                        TTY.println("Dumping debug output in %s", dumpDir.toString());
26ebfe8ce852 8199755: Update Graal
dlong
parents: 48861
diff changeset
   215
                    }
46640
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   216
                }
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   217
            }
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   218
        }
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   219
        return dumpDir;
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   220
    }
70bdce04c59b 8183991: Update Graal
iveresov
parents:
diff changeset
   221
}