Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class SubstrateOptions {
public static final HostedOptionKey<Boolean> ParseOnce = new HostedOptionKey<>(true);
@Option(help = "When true, each compiler graph version (DeoptTarget, AOT, JIT) needed for runtime compilation will be separately analyzed during static analysis." +
"When false, only one version of the compiler graph (AOT) will be used in static analysis, and then three new versions will be parsed for compilation.")//
public static final HostedOptionKey<Boolean> ParseOnceJIT = new HostedOptionKey<>(false);
public static final HostedOptionKey<Boolean> ParseOnceJIT = new HostedOptionKey<>(true);
@Option(help = "Preserve the local variable information for every Java source line to allow line-by-line stepping in the debugger. Allow the lookup of Java-level method information, e.g., in stack traces.")//
public static final HostedOptionKey<Boolean> SourceLevelDebug = new HostedOptionKey<>(false);
@Option(help = "Constrain debug info generation to the comma-separated list of package prefixes given to this option.")//
Expand Down
1 change: 1 addition & 0 deletions vm/mx.vm/mx_vm_gate.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,7 @@ def _collect_excludes(suite, suite_import, excludes):
'-H:+EnforceMaxRuntimeCompileMethods',
'-H:-InlineBeforeAnalysis',
'-H:-ParseOnceJIT', #GR-47163
'-H:-VerifyDeoptimizationEntryPoints', #GR-47163
'-cp',
cp,
'-H:-FoldSecurityManagerGetter',
Expand Down