blob: e68c46e6383b2aea45c129524c0c867ca908516f [file] [log] [blame]
// Copyright 2018 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.analysis;
import com.google.devtools.build.lib.util.CpuResourceConverter;
import com.google.devtools.build.lib.util.RegexFilter;
import com.google.devtools.build.lib.util.ResourceConverter;
import com.google.devtools.common.options.Option;
import com.google.devtools.common.options.OptionDocumentationCategory;
import com.google.devtools.common.options.OptionEffectTag;
import com.google.devtools.common.options.OptionMetadataTag;
import com.google.devtools.common.options.OptionsBase;
/**
* Options that affect the <i>mechanism</i> of analysis. These are distinct from {@link
* com.google.devtools.build.lib.analysis.config.BuildOptions}, which affect the <i>value</i> of a
* BuildConfigurationValue.
*/
public class AnalysisOptions extends OptionsBase {
@Option(
name = "discard_analysis_cache",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
effectTags = {OptionEffectTag.UNKNOWN},
help =
"Discard the analysis cache immediately after the analysis phase completes."
+ " Reduces memory usage by ~10%, but makes further incremental builds slower."
)
public boolean discardAnalysisCache;
@Option(
name = "allow_analysis_cache_discard",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
effectTags = {OptionEffectTag.EAGERNESS_TO_EXIT},
help =
"""
If discarding the analysis cache due to a change in the build system, setting this
option to false will cause bazel to exit, rather than continuing with the build.
This option has no effect when `--discard_analysis_cache` is also set.
""")
public boolean allowAnalysisCacheDiscards;
@Option(
name = "max_config_changes_to_show",
defaultValue = "3",
documentationCategory = OptionDocumentationCategory.LOGGING,
effectTags = {OptionEffectTag.TERMINAL_OUTPUT},
help =
"When discarding the analysis cache due to a change in the build options, "
+ "displays up to the given number of changed option names. "
+ "If the number given is -1, all changed options will be displayed."
)
public int maxConfigChangesToShow;
@Option(
name = "skip_incompatible_explicit_targets",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.EXECUTION_STRATEGY,
effectTags = {OptionEffectTag.LOADING_AND_ANALYSIS},
help =
"""
Skip incompatible targets that are explicitly listed on the command line.
By default, building such targets results in an error but they are
silently skipped when this option is enabled. See: [Skipping incompatible targets]
[Skipping incompatible targets]: https://bazel.build/extending/platforms#skipping-incompatible-targets
""")
public boolean skipIncompatibleExplicitTargets;
@Option(
name = "experimental_extra_action_filter",
defaultValue = "",
converter = RegexFilter.RegexFilterConverter.class,
documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
effectTags = {OptionEffectTag.UNKNOWN},
help =
"Deprecated in favor of aspects. Filters set of targets to schedule extra_actions for.")
public RegexFilter extraActionFilter;
@Option(
name = "experimental_extra_action_top_level_only",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
effectTags = {OptionEffectTag.UNKNOWN},
help = "Deprecated in favor of aspects. Only schedules extra_actions for top level targets.")
public boolean extraActionTopLevelOnly;
@Option(
name = "version_window_for_dirty_node_gc",
defaultValue = "0",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {OptionEffectTag.UNKNOWN},
help =
"Nodes that have been dirty for more than this many versions will be deleted"
+ " from the graph upon the next update. Values must be non-negative long integers,"
+ " or -1 indicating the maximum possible window."
)
public long versionWindowForDirtyNodeGc;
@Option(
name = "experimental_skyframe_cpu_heavy_skykeys_thread_pool_size",
defaultValue = ResourceConverter.HOST_CPUS_KEYWORD,
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
metadataTags = OptionMetadataTag.EXPERIMENTAL,
effectTags = {
OptionEffectTag.LOADING_AND_ANALYSIS,
OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION
},
help =
"If set to a positive value (e.g. `"
+ ResourceConverter.HOST_CPUS_KEYWORD
+ "*1.5`),"
+ " Skyframe will run the loading/analysis phase with 2 separate thread pools:"
+ " 1 with `<value>` threads (ideally close to `"
+ ResourceConverter.HOST_CPUS_KEYWORD
+ "`) reserved for CPU-heavy SkyKeys, and 1 \"standard\" thread pool (whose size is"
+ " controlled by `--loading_phase_threads`) for the rest.",
converter = CpuResourceConverter.class)
public int cpuHeavySkyKeysThreadPoolSize;
@Option(
name = "experimental_oom_sensitive_skyfunctions_semaphore_size",
defaultValue = ResourceConverter.HOST_CPUS_KEYWORD,
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
metadataTags = OptionMetadataTag.EXPERIMENTAL,
effectTags = {
OptionEffectTag.LOADING_AND_ANALYSIS,
OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION
},
help =
"Sets the size of the semaphore used to prevent SkyFunctions with large peak memory"
+ " requirement from OOM-ing blaze. A value of 0 indicates that no semaphore should"
+ " be used. Example value: `"
+ ResourceConverter.HOST_CPUS_KEYWORD
+ "*0.5`.",
converter = CpuResourceConverter.class)
public int oomSensitiveSkyFunctionsSemaphoreSize;
}