// Copyright 2014 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.rules.cpp; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Function; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterables; import com.google.devtools.build.lib.actions.Action; import com.google.devtools.build.lib.actions.Artifact; import com.google.devtools.build.lib.actions.ExecutionRequirements; import com.google.devtools.build.lib.actions.ParameterFile.ParameterFileType; import com.google.devtools.build.lib.analysis.ConfiguredTarget; import com.google.devtools.build.lib.analysis.MakeVariableSupplier.MapBackedMakeVariableSupplier; import com.google.devtools.build.lib.analysis.OutputGroupInfo; import com.google.devtools.build.lib.analysis.RuleConfiguredTargetBuilder; import com.google.devtools.build.lib.analysis.RuleConfiguredTargetFactory; import com.google.devtools.build.lib.analysis.RuleContext; import com.google.devtools.build.lib.analysis.Runfiles; import com.google.devtools.build.lib.analysis.RunfilesProvider; import com.google.devtools.build.lib.analysis.RunfilesSupport; import com.google.devtools.build.lib.analysis.TransitiveInfoCollection; import com.google.devtools.build.lib.analysis.actions.CustomCommandLine; import com.google.devtools.build.lib.analysis.actions.FileWriteAction; import com.google.devtools.build.lib.analysis.actions.ParamFileInfo; import com.google.devtools.build.lib.analysis.actions.SpawnAction; import com.google.devtools.build.lib.analysis.actions.SymlinkAction; import com.google.devtools.build.lib.analysis.configuredtargets.RuleConfiguredTarget.Mode; import com.google.devtools.build.lib.analysis.test.ExecutionInfo; import com.google.devtools.build.lib.analysis.test.InstrumentedFilesProvider; import com.google.devtools.build.lib.collect.nestedset.NestedSet; import com.google.devtools.build.lib.collect.nestedset.NestedSetBuilder; import com.google.devtools.build.lib.collect.nestedset.Order; import com.google.devtools.build.lib.packages.TargetUtils; import com.google.devtools.build.lib.rules.apple.ApplePlatform; import com.google.devtools.build.lib.rules.cpp.CcCommon.CcFlagsSupplier; import com.google.devtools.build.lib.rules.cpp.CcCompilationHelper.CompilationInfo; import com.google.devtools.build.lib.rules.cpp.CcToolchainFeatures.FeatureConfiguration; import com.google.devtools.build.lib.rules.cpp.CppConfiguration.DynamicMode; import com.google.devtools.build.lib.rules.cpp.CppConfiguration.Tool; import com.google.devtools.build.lib.rules.cpp.Link.LinkStaticness; import com.google.devtools.build.lib.rules.cpp.Link.LinkTargetType; import com.google.devtools.build.lib.rules.cpp.LinkerInputs.LibraryToLink; import com.google.devtools.build.lib.syntax.Type; import com.google.devtools.build.lib.util.OsUtils; import com.google.devtools.build.lib.vfs.FileSystemUtils; import com.google.devtools.build.lib.vfs.PathFragment; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; /** * A ConfiguredTarget for cc_binary rules. */ public abstract class CcBinary implements RuleConfiguredTargetFactory { private final CppSemantics semantics; protected CcBinary(CppSemantics semantics) { this.semantics = semantics; } /** * The maximum number of inputs for any single .dwp generating action. For cases where * this value is exceeded, the action is split up into "batches" that fall under the limit. * See {@link #createDebugPackagerActions} for details. */ @VisibleForTesting public static final int MAX_INPUTS_PER_DWP_ACTION = 100; /** * Intermediate dwps are written to this subdirectory under the main dwp's output path. */ @VisibleForTesting public static final String INTERMEDIATE_DWP_DIR = "_dwps"; private static Runfiles collectRunfiles( RuleContext context, CcToolchainProvider toolchain, CcLinkingOutputs linkingOutputs, CcLinkingOutputs ccLibraryLinkingOutputs, CppCompilationContext cppCompilationContext, LinkStaticness linkStaticness, NestedSet filesToBuild, Iterable fakeLinkerInputs, boolean fake, ImmutableSet cAndCppSources, boolean linkCompileOutputSeparately) { Runfiles.Builder builder = new Runfiles.Builder( context.getWorkspaceName(), context.getConfiguration().legacyExternalRunfiles()); Function runfilesMapping = CppRunfilesProvider.runfilesFunction(linkStaticness != LinkStaticness.DYNAMIC); builder.addTransitiveArtifacts(filesToBuild); // Add the shared libraries to the runfiles. This adds any shared libraries that are in the // srcs of this target. builder.addArtifacts(linkingOutputs.getLibrariesForRunfiles(true)); builder.addRunfiles(context, RunfilesProvider.DEFAULT_RUNFILES); builder.add(context, runfilesMapping); // Add the C++ runtime libraries if linking them dynamically. if (linkStaticness == LinkStaticness.DYNAMIC) { builder.addTransitiveArtifacts(toolchain.getDynamicRuntimeLinkInputs()); } if (linkCompileOutputSeparately) { builder.addArtifacts( LinkerInputs.toLibraryArtifacts(ccLibraryLinkingOutputs.getExecutionDynamicLibraries())); } // For cc_binary and cc_test rules, there is an implicit dependency on // the malloc library package, which is specified by the "malloc" attribute. // As the BUILD encyclopedia says, the "malloc" attribute should be ignored // if linkshared=1. boolean linkshared = isLinkShared(context); if (!linkshared) { TransitiveInfoCollection malloc = CppHelper.mallocForTarget(context); builder.addTarget(malloc, RunfilesProvider.DEFAULT_RUNFILES); builder.addTarget(malloc, runfilesMapping); } if (fake) { // Add the object files, libraries, and linker scripts that are used to // link this executable. builder.addSymlinksToArtifacts(Iterables.filter(fakeLinkerInputs, Artifact.MIDDLEMAN_FILTER)); // The crosstool inputs for the link action are not sufficient; we also need the crosstool // inputs for compilation. Node that these cannot be middlemen because Runfiles does not // know how to expand them. builder.addTransitiveArtifacts(toolchain.getCrosstool()); builder.addTransitiveArtifacts(toolchain.getLibcLink()); // Add the sources files that are used to compile the object files. // We add the headers in the transitive closure and our own sources in the srcs // attribute. We do not provide the auxiliary inputs, because they are only used when we // do FDO compilation, and cc_fake_binary does not support FDO. ImmutableSet.Builder sourcesBuilder = ImmutableSet.builder(); for (CppSource cppSource : cAndCppSources) { sourcesBuilder.add(cppSource.getSource()); } builder.addSymlinksToArtifacts(sourcesBuilder.build()); builder.addSymlinksToArtifacts(cppCompilationContext.getDeclaredIncludeSrcs()); // Add additional files that are referenced from the compile command, like module maps // or header modules. builder.addSymlinksToArtifacts(cppCompilationContext.getAdditionalInputs()); builder.addSymlinksToArtifacts( cppCompilationContext.getTransitiveModules( CppHelper.usePic(context, toolchain, !isLinkShared(context)))); } return builder.build(); } @Override public ConfiguredTarget create(RuleContext context) throws InterruptedException, RuleErrorException { return CcBinary.init(semantics, context, /*fake =*/ false); } public static ConfiguredTarget init(CppSemantics semantics, RuleContext ruleContext, boolean fake) throws InterruptedException, RuleErrorException { ruleContext.checkSrcsSamePackage(true); CcCommon common = new CcCommon(ruleContext); CcToolchainProvider ccToolchain = common.getToolchain(); if (CppHelper.shouldUseToolchainForMakeVariables(ruleContext)) { ImmutableMap.Builder toolchainMakeVariables = ImmutableMap.builder(); ccToolchain.addGlobalMakeVariables(toolchainMakeVariables); ruleContext.initConfigurationMakeVariableContext( new MapBackedMakeVariableSupplier(toolchainMakeVariables.build()), new CcFlagsSupplier(ruleContext)); } else { ruleContext.initConfigurationMakeVariableContext(new CcFlagsSupplier(ruleContext)); } FdoSupportProvider fdoSupport = common.getFdoSupport(); FeatureConfiguration featureConfiguration = CcCommon.configureFeatures(ruleContext, ccToolchain); CppConfiguration cppConfiguration = ruleContext.getFragment(CppConfiguration.class); PrecompiledFiles precompiledFiles = new PrecompiledFiles(ruleContext); LinkTargetType linkType = isLinkShared(ruleContext) ? LinkTargetType.DYNAMIC_LIBRARY : LinkTargetType.EXECUTABLE; semantics.validateAttributes(ruleContext); if (ruleContext.hasErrors()) { return null; } // if cc_binary includes "linkshared=1", then gcc will be invoked with // linkopt "-shared", which causes the result of linking to be a shared // library. In this case, the name of the executable target should end // in ".so" or "dylib" or ".dll". PathFragment binaryPath = PathFragment.create(ruleContext.getTarget().getName()); if (!isLinkShared(ruleContext)) { binaryPath = PathFragment.create(binaryPath.getPathString() + OsUtils.executableExtension()); } Artifact binary = ruleContext.getBinArtifact(binaryPath); if (isLinkShared(ruleContext) && !CppFileTypes.SHARED_LIBRARY.matches(binary.getFilename()) && !CppFileTypes.VERSIONED_SHARED_LIBRARY.matches(binary.getFilename())) { ruleContext.attributeError("linkshared", "'linkshared' used in non-shared library"); return null; } CcCompilationHelper compilationHelper = new CcCompilationHelper( ruleContext, semantics, featureConfiguration, ccToolchain, fdoSupport) .fromCommon(common) .addSources(common.getSources()) .addDeps(ImmutableList.of(CppHelper.mallocForTarget(ruleContext))) .setFake(fake) .addPrecompiledFiles(precompiledFiles); CompilationInfo compilationInfo = compilationHelper.compile(); CppCompilationContext cppCompilationContext = compilationInfo.getCppCompilationContext(); CcCompilationOutputs ccCompilationOutputs = compilationInfo.getCcCompilationOutputs(); List linkopts = common.getLinkopts(); LinkStaticness linkStaticness = getLinkStaticness(ruleContext, linkopts, cppConfiguration, ccToolchain); // We currently only want link the dynamic library generated for test code separately. boolean linkCompileOutputSeparately = ruleContext.isTestTarget() && cppConfiguration.getLinkCompileOutputSeparately() && linkStaticness == LinkStaticness.DYNAMIC; // When linking the object files directly into the resulting binary, we do not need // library-level link outputs; thus, we do not let CcCompilationHelper produce link outputs // (either shared object files or archives) for a non-library link type [*], and add // the object files explicitly in determineLinkerArguments. // // When linking the object files into their own library, we want CcCompilationHelper to // take care of creating the library link outputs for us, so we need to set the link // type to STATIC_LIBRARY. // // [*] The only library link type is STATIC_LIBRARY. EXECUTABLE specifies a normal // cc_binary output, while DYNAMIC_LIBRARY is a cc_binary rules that produces an // output matching a shared object, for example cc_binary(name="foo.so", ...) on linux. CcLinkingOutputs ccLinkingOutputs = CcLinkingOutputs.EMPTY; if (linkCompileOutputSeparately) { CcLinkingHelper linkingHelper = new CcLinkingHelper( ruleContext, semantics, featureConfiguration, ccToolchain, fdoSupport, ruleContext.getConfiguration()) .fromCommon(common) .addDeps(ImmutableList.of(CppHelper.mallocForTarget(ruleContext))) .setFake(fake) .enableInterfaceSharedObjects(); linkingHelper.setStaticLinkType(LinkTargetType.STATIC_LIBRARY); ccLinkingOutputs = linkingHelper.link(ccCompilationOutputs, cppCompilationContext).getCcLinkingOutputs(); } CcLinkParams linkParams = collectCcLinkParams( ruleContext, linkStaticness != LinkStaticness.DYNAMIC, isLinkShared(ruleContext), linkopts); CppLinkActionBuilder linkActionBuilder = determineLinkerArguments( ruleContext, ccToolchain, featureConfiguration, fdoSupport, common, precompiledFiles, ccCompilationOutputs, ccLinkingOutputs, cppCompilationContext.getTransitiveCompilationPrerequisites(), fake, binary, linkParams, linkCompileOutputSeparately, semantics); linkActionBuilder.setUseTestOnlyFlags(ruleContext.isTestTarget()); if (linkStaticness == LinkStaticness.DYNAMIC) { linkActionBuilder.setRuntimeInputs( ArtifactCategory.DYNAMIC_LIBRARY, ccToolchain.getDynamicRuntimeLinkMiddleman(), ccToolchain.getDynamicRuntimeLinkInputs()); } else { linkActionBuilder.setRuntimeInputs( ArtifactCategory.STATIC_LIBRARY, ccToolchain.getStaticRuntimeLinkMiddleman(), ccToolchain.getStaticRuntimeLinkInputs()); // Only force a static link of libgcc if static runtime linking is enabled (which // can't be true if runtimeInputs is empty). // TODO(bazel-team): Move this to CcToolchain. if (!ccToolchain.getStaticRuntimeLinkInputs().isEmpty()) { linkActionBuilder.addLinkopt("-static-libgcc"); } } linkActionBuilder.setLinkType(linkType); linkActionBuilder.setLinkStaticness(linkStaticness); linkActionBuilder.setFake(fake); if (CppLinkAction.enableSymbolsCounts( cppConfiguration, ccToolchain.supportsGoldLinker(), fake, linkType)) { linkActionBuilder.setSymbolCountsOutput(ruleContext.getBinArtifact( CppLinkAction.symbolCountsFileName(binaryPath))); } Artifact generatedDefFile = null; Artifact interfaceLibrary = null; if (isLinkShared(ruleContext)) { linkActionBuilder.setLibraryIdentifier(CcLinkingOutputs.libraryIdentifierOf(binary)); if (featureConfiguration.isEnabled(CppRuleClasses.TARGETS_WINDOWS)) { ImmutableList.Builder objectFiles = ImmutableList.builder(); objectFiles.addAll(ccCompilationOutputs.getObjectFiles(false)); for (LibraryToLink library : linkParams.getLibraries()) { if (library.containsObjectFiles() && library.getArtifactCategory() != ArtifactCategory.DYNAMIC_LIBRARY && library.getArtifactCategory() != ArtifactCategory.INTERFACE_LIBRARY) { objectFiles.addAll(library.getObjectFiles()); } } generatedDefFile = CppHelper.createDefFileActions( ruleContext, ruleContext.getPrerequisiteArtifact("$def_parser", Mode.HOST), objectFiles.build(), binary.getFilename()); if (CppHelper.shouldUseGeneratedDefFile(ruleContext, featureConfiguration)) { linkActionBuilder.setDefFile(generatedDefFile); } Artifact customDefFile = common.getWinDefFile(); if (customDefFile != null) { linkActionBuilder.setDefFile(customDefFile); } // If we are using a toolchain supporting interface library and targeting Windows, we build // the interface library with the link action and add it to `interface_output` output group. if (CppHelper.useInterfaceSharedObjects(cppConfiguration, ccToolchain)) { interfaceLibrary = ruleContext.getRelatedArtifact(binary.getRootRelativePath(), ".ifso"); linkActionBuilder.setInterfaceOutput(interfaceLibrary); linkActionBuilder.addActionOutput(interfaceLibrary); } } } // Store immutable context for use in other *_binary rules that are implemented by // linking the interpreter (Java, Python, etc.) together with native deps. CppLinkAction.Context linkContext = new CppLinkAction.Context(linkActionBuilder); boolean usePic = CppHelper.usePic(ruleContext, ccToolchain, !isLinkShared(ruleContext)); if (linkActionBuilder.hasLtoBitcodeInputs() && featureConfiguration.isEnabled(CppRuleClasses.THIN_LTO)) { linkActionBuilder.setLtoIndexing(true); linkActionBuilder.setUsePicForLtoBackendActions(usePic); CppLinkAction indexAction = linkActionBuilder.build(); if (indexAction != null) { ruleContext.registerAction(indexAction); } linkActionBuilder.setLtoIndexing(false); } // On Windows, if GENERATE_PDB_FILE feature is enabled // then a pdb file will be built along with the executable. Artifact pdbFile = null; if (featureConfiguration.isEnabled(CppRuleClasses.GENERATE_PDB_FILE)) { pdbFile = ruleContext.getRelatedArtifact(binary.getRootRelativePath(), ".pdb"); linkActionBuilder.addActionOutput(pdbFile); } CppLinkAction linkAction = linkActionBuilder.build(); Iterable ltoBackendArtifacts = linkActionBuilder.getAllLtoBackendArtifacts(); ruleContext.registerAction(linkAction); LibraryToLink outputLibrary = linkAction.getOutputLibrary(); Iterable fakeLinkerInputs = fake ? linkAction.getInputs() : ImmutableList.of(); Artifact executable = linkAction.getLinkOutput(); CcLinkingOutputs.Builder linkingOutputsBuilder = new CcLinkingOutputs.Builder(); if (isLinkShared(ruleContext)) { linkingOutputsBuilder.addDynamicLibrary(outputLibrary); linkingOutputsBuilder.addExecutionDynamicLibrary(outputLibrary); } // Also add all shared libraries from srcs. for (Artifact library : precompiledFiles.getSharedLibraries()) { Artifact symlink = common.getDynamicLibrarySymlink(library, true); LibraryToLink symlinkLibrary = LinkerInputs.solibLibraryToLink( symlink, library, CcLinkingOutputs.libraryIdentifierOf(library)); linkingOutputsBuilder.addDynamicLibrary(symlinkLibrary); linkingOutputsBuilder.addExecutionDynamicLibrary(symlinkLibrary); } CcLinkingOutputs linkingOutputs = linkingOutputsBuilder.build(); NestedSet filesToBuild = NestedSetBuilder.create(Order.STABLE_ORDER, executable); // Create the stripped binary, but don't add it to filesToBuild; it's only built when requested. Artifact strippedFile = ruleContext.getImplicitOutputArtifact( CppRuleClasses.CC_BINARY_STRIPPED); CppHelper.createStripAction( ruleContext, ccToolchain, cppConfiguration, executable, strippedFile, featureConfiguration); DwoArtifactsCollector dwoArtifacts = collectTransitiveDwoArtifacts( ruleContext, ccCompilationOutputs, linkStaticness, CppHelper.useFission(cppConfiguration, ccToolchain), usePic, ltoBackendArtifacts); Artifact dwpFile = ruleContext.getImplicitOutputArtifact(CppRuleClasses.CC_BINARY_DEBUG_PACKAGE); createDebugPackagerActions(ruleContext, ccToolchain, dwpFile, dwoArtifacts); // The debug package should include the dwp file only if it was explicitly requested. Artifact explicitDwpFile = dwpFile; if (!CppHelper.useFission(cppConfiguration, ccToolchain)) { explicitDwpFile = null; } else { // For cc_test rules, include the dwp in the runfiles if Fission is enabled and the test was // built statically. if (TargetUtils.isTestRule(ruleContext.getRule()) && linkStaticness != LinkStaticness.DYNAMIC && CppHelper.useFission(cppConfiguration, ccToolchain) && cppConfiguration.buildTestDwpIsActivated()) { filesToBuild = NestedSetBuilder.fromNestedSet(filesToBuild).add(dwpFile).build(); } } // If the binary is linked dynamically and COPY_DYNAMIC_LIBRARIES_TO_BINARY is enabled, collect // all the dynamic libraries we need at runtime. Then copy these libraries next to the binary. if (featureConfiguration.isEnabled(CppRuleClasses.COPY_DYNAMIC_LIBRARIES_TO_BINARY)) { filesToBuild = NestedSetBuilder.fromNestedSet(filesToBuild) .addAll( createDynamicLibrariesCopyActions( ruleContext, linkParams.getExecutionDynamicLibraries())) .build(); } // TODO(bazel-team): Do we need to put original shared libraries (along with // mangled symlinks) into the RunfilesSupport object? It does not seem // logical since all symlinked libraries will be linked anyway and would // not require manual loading but if we do, then we would need to collect // their names and use a different constructor below. Runfiles runfiles = collectRunfiles( ruleContext, ccToolchain, linkingOutputs, ccLinkingOutputs, cppCompilationContext, linkStaticness, filesToBuild, fakeLinkerInputs, fake, compilationHelper.getCompilationUnitSources(), linkCompileOutputSeparately); RunfilesSupport runfilesSupport = RunfilesSupport.withExecutable( ruleContext, runfiles, executable); TransitiveLipoInfoProvider transitiveLipoInfo; if (cppConfiguration.isLipoContextCollector()) { transitiveLipoInfo = common.collectTransitiveLipoLabels(ccCompilationOutputs); } else { transitiveLipoInfo = TransitiveLipoInfoProvider.EMPTY; } RuleConfiguredTargetBuilder ruleBuilder = new RuleConfiguredTargetBuilder(ruleContext); addTransitiveInfoProviders( ruleContext, ccToolchain, cppConfiguration, common, ruleBuilder, filesToBuild, ccCompilationOutputs, cppCompilationContext, linkingOutputs, dwoArtifacts, transitiveLipoInfo, fake); Map scannableMap = new LinkedHashMap<>(); Map sourceFileMap = new LinkedHashMap<>(); if (cppConfiguration.isLipoContextCollector()) { for (IncludeScannable scannable : transitiveLipoInfo.getTransitiveIncludeScannables()) { // These should all be CppCompileActions, which should have only one source file. // This is also checked when they are put into the nested set. Artifact source = Iterables.getOnlyElement(scannable.getIncludeScannerSources()); scannableMap.put(source, scannable); sourceFileMap.put(source.getExecPath(), source); } } // Support test execution on darwin. if (ApplePlatform.isApplePlatform(ccToolchain.getTargetCpu()) && TargetUtils.isTestRule(ruleContext.getRule())) { ruleBuilder.addNativeDeclaredProvider( new ExecutionInfo(ImmutableMap.of(ExecutionRequirements.REQUIRES_DARWIN, ""))); } // If PDB file is generated by the link action, we add it to pdb_file output group if (pdbFile != null) { ruleBuilder.addOutputGroup("pdb_file", pdbFile); } if (generatedDefFile != null) { ruleBuilder.addOutputGroup("def_file", generatedDefFile); } if (interfaceLibrary != null) { ruleBuilder.addOutputGroup("interface_library", interfaceLibrary); } return ruleBuilder .addProvider(RunfilesProvider.class, RunfilesProvider.simple(runfiles)) .addProvider( CppDebugPackageProvider.class, new CppDebugPackageProvider( ruleContext.getLabel(), strippedFile, executable, explicitDwpFile)) .setRunfilesSupport(runfilesSupport, executable) .addProvider( LipoContextProvider.class, new LipoContextProvider( cppCompilationContext, ImmutableMap.copyOf(scannableMap), ImmutableMap.copyOf(sourceFileMap))) .addProvider(CppLinkAction.Context.class, linkContext) .addSkylarkTransitiveInfo(CcSkylarkApiProvider.NAME, new CcSkylarkApiProvider()) .build(); } /** * Given 'temps', traverse this target and its dependencies and collect up all the object files, * libraries, linker options, linkstamps attributes and linker scripts. */ private static CppLinkActionBuilder determineLinkerArguments( RuleContext context, CcToolchainProvider toolchain, FeatureConfiguration featureConfiguration, FdoSupportProvider fdoSupport, CcCommon common, PrecompiledFiles precompiledFiles, CcCompilationOutputs compilationOutputs, CcLinkingOutputs linkingOutputs, ImmutableSet compilationPrerequisites, boolean fake, Artifact binary, CcLinkParams linkParams, boolean linkCompileOutputSeparately, CppSemantics cppSemantics) throws InterruptedException { CppLinkActionBuilder builder = new CppLinkActionBuilder( context, binary, toolchain, fdoSupport, featureConfiguration, cppSemantics) .setCrosstoolInputs(toolchain.getLink()) .addNonCodeInputs(compilationPrerequisites); // Either link in the .o files generated for the sources of this target or link in the // generated dynamic library they are compiled into. if (linkCompileOutputSeparately) { for (LibraryToLink library : linkingOutputs.getDynamicLibraries()) { builder.addLibrary(library); } } else { boolean usePic = CppHelper.usePic(context, toolchain, !isLinkShared(context)); Iterable objectFiles = compilationOutputs.getObjectFiles(usePic); if (fake) { builder.addFakeObjectFiles(objectFiles); } else { builder.addObjectFiles(objectFiles); } } builder.addLtoBitcodeFiles(compilationOutputs.getLtoBitcodeFiles()); builder.addNonCodeInputs(common.getLinkerScripts()); // Determine the libraries to link in. // First libraries from srcs. Shared library artifacts here are substituted with mangled symlink // artifacts generated by getDynamicLibraryLink(). This is done to minimize number of -rpath // entries during linking process. for (Artifact library : precompiledFiles.getLibraries()) { if (Link.SHARED_LIBRARY_FILETYPES.matches(library.getFilename())) { builder.addLibrary(LinkerInputs.solibLibraryToLink( common.getDynamicLibrarySymlink(library, true), library, CcLinkingOutputs.libraryIdentifierOf(library))); } else if (Link.LINK_LIBRARY_FILETYPES.matches(library.getFilename())) { builder.addLibrary(LinkerInputs.precompiledLibraryToLink( library, ArtifactCategory.ALWAYSLINK_STATIC_LIBRARY)); } else if (Link.ARCHIVE_FILETYPES.matches(library.getFilename())) { builder.addLibrary(LinkerInputs.precompiledLibraryToLink( library, ArtifactCategory.STATIC_LIBRARY)); } else { throw new IllegalStateException(); } } // Then the link params from the closure of deps. builder.addLinkParams(linkParams, context); return builder; } /** * Returns "true" if the {@code linkshared} attribute exists and is set. */ private static final boolean isLinkShared(RuleContext context) { return context.attributes().has("linkshared", Type.BOOLEAN) && context.attributes().get("linkshared", Type.BOOLEAN); } private static final boolean dashStaticInLinkopts(List linkopts, CppConfiguration cppConfiguration) { return linkopts.contains("-static") || cppConfiguration.hasStaticLinkOption(); } private static final LinkStaticness getLinkStaticness( RuleContext context, List linkopts, CppConfiguration cppConfiguration, CcToolchainProvider toolchain) { if (CppHelper.getDynamicMode(cppConfiguration, toolchain) == DynamicMode.FULLY) { return LinkStaticness.DYNAMIC; } else if (dashStaticInLinkopts(linkopts, cppConfiguration)) { return LinkStaticness.FULLY_STATIC; } else if (CppHelper.getDynamicMode(cppConfiguration, toolchain) == DynamicMode.OFF || context.attributes().get("linkstatic", Type.BOOLEAN)) { return LinkStaticness.MOSTLY_STATIC; } else { return LinkStaticness.DYNAMIC; } } /** * Collects .dwo artifacts either transitively or directly, depending on the link type. * *

For a cc_binary, we only include the .dwo files corresponding to the .o files that are * passed into the link. For static linking, this includes all transitive dependencies. But for * dynamic linking, dependencies are separately linked into their own shared libraries, so we * don't need them here. */ private static DwoArtifactsCollector collectTransitiveDwoArtifacts( RuleContext context, CcCompilationOutputs compilationOutputs, LinkStaticness linkStaticness, boolean generateDwo, boolean ltoBackendArtifactsUsePic, Iterable ltoBackendArtifacts) { if (linkStaticness == LinkStaticness.DYNAMIC) { return DwoArtifactsCollector.directCollector( compilationOutputs, generateDwo, ltoBackendArtifactsUsePic, ltoBackendArtifacts); } else { return CcCommon.collectTransitiveDwoArtifacts( context, compilationOutputs, generateDwo, ltoBackendArtifactsUsePic, ltoBackendArtifacts); } } @VisibleForTesting public static Iterable getDwpInputs( RuleContext context, CcToolchainProvider toolchain, NestedSet picDwoArtifacts, NestedSet dwoArtifacts) { return CppHelper.usePic(context, toolchain, !isLinkShared(context)) ? picDwoArtifacts : dwoArtifacts; } /** * Creates the actions needed to generate this target's "debug info package" (i.e. its .dwp file). */ private static void createDebugPackagerActions( RuleContext context, CcToolchainProvider toolchain, Artifact dwpOutput, DwoArtifactsCollector dwoArtifactsCollector) { Iterable allInputs = getDwpInputs( context, toolchain, dwoArtifactsCollector.getPicDwoArtifacts(), dwoArtifactsCollector.getDwoArtifacts()); // No inputs? Just generate a trivially empty .dwp. // // Note this condition automatically triggers for any build where fission is disabled. // Because rules referencing .dwp targets may be invoked with or without fission, we need // to support .dwp generation even when fission is disabled. Since no actual functionality // is expected then, an empty file is appropriate. if (Iterables.isEmpty(allInputs)) { context.registerAction(FileWriteAction.create(context, dwpOutput, "", false)); return; } // Get the tool inputs necessary to run the dwp command. NestedSet dwpTools = toolchain.getDwp(); Preconditions.checkState(!dwpTools.isEmpty()); // We apply a hierarchical action structure to limit the maximum number of inputs to any // single action. // // While the dwp tool consumes .dwo files, it can also consume intermediate .dwp files, // allowing us to split a large input set into smaller batches of arbitrary size and order. // Aside from the parallelism performance benefits this offers, this also reduces input // size requirements: if a.dwo, b.dwo, c.dwo, and e.dwo are each 1 KB files, we can apply // two intermediate actions DWP(a.dwo, b.dwo) --> i1.dwp and DWP(c.dwo, e.dwo) --> i2.dwp. // When we then apply the final action DWP(i1.dwp, i2.dwp) --> finalOutput.dwp, the inputs // to this action will usually total far less than 4 KB. // // The actions form an n-ary tree with n == MAX_INPUTS_PER_DWP_ACTION. The tree is fuller // at the leaves than the root, but that both increases parallelism and reduces the final // action's input size. Packager packager = createIntermediateDwpPackagers(context, dwpOutput, toolchain, dwpTools, allInputs, 1); packager.spawnAction.setMnemonic("CcGenerateDwp").addOutput(dwpOutput); packager.commandLine.addExecPath("-o", dwpOutput); context.registerAction(packager.build(context)); } private static class Packager { SpawnAction.Builder spawnAction = new SpawnAction.Builder(); CustomCommandLine.Builder commandLine = CustomCommandLine.builder(); Action[] build(RuleContext context) { spawnAction.addCommandLine( commandLine.build(), ParamFileInfo.builder(ParameterFileType.UNQUOTED).build()); return spawnAction.build(context); } } /** * Creates the intermediate actions needed to generate this target's "debug info package" (i.e. * its .dwp file). */ private static Packager createIntermediateDwpPackagers( RuleContext context, Artifact dwpOutput, CcToolchainProvider toolchain, NestedSet dwpTools, Iterable inputs, int intermediateDwpCount) { List packagers = new ArrayList<>(); // Step 1: generate our batches. We currently break into arbitrary batches of fixed maximum // input counts, but we can always apply more intelligent heuristics if the need arises. Packager currentPackager = newDwpAction(toolchain, dwpTools); int inputsForCurrentPackager = 0; for (Artifact dwoInput : inputs) { if (inputsForCurrentPackager == MAX_INPUTS_PER_DWP_ACTION) { packagers.add(currentPackager); currentPackager = newDwpAction(toolchain, dwpTools); inputsForCurrentPackager = 0; } currentPackager.spawnAction.addInput(dwoInput); currentPackager.commandLine.addExecPath(dwoInput); inputsForCurrentPackager++; } packagers.add(currentPackager); // Step 2: given the batches, create the actions. if (packagers.size() > 1) { // If we have multiple batches, make them all intermediate actions, then pipe their outputs // into an additional level. List intermediateOutputs = new ArrayList<>(); for (Packager packager : packagers) { Artifact intermediateOutput = getIntermediateDwpFile(context, dwpOutput, intermediateDwpCount++); packager.spawnAction.setMnemonic("CcGenerateIntermediateDwp").addOutput(intermediateOutput); packager.commandLine.addExecPath("-o", intermediateOutput); context.registerAction(packager.build(context)); intermediateOutputs.add(intermediateOutput); } return createIntermediateDwpPackagers( context, dwpOutput, toolchain, dwpTools, intermediateOutputs, intermediateDwpCount); } return Iterables.getOnlyElement(packagers); } /** * Create the actions to symlink/copy execution dynamic libraries to binary directory so that they * are available at runtime. * * @param executionDynamicLibraries The libraries to be copied. * @return The result artifacts of the copies. */ private static ImmutableList createDynamicLibrariesCopyActions( RuleContext ruleContext, NestedSet executionDynamicLibraries) { ImmutableList.Builder result = ImmutableList.builder(); for (Artifact target : executionDynamicLibraries) { if (!ruleContext.getLabel().getPackageName().equals(target.getOwner().getPackageName())) { // SymlinkAction on file is actually copy on Windows. Artifact copy = ruleContext.getBinArtifact(target.getFilename()); ruleContext.registerAction( new SymlinkAction( ruleContext.getActionOwner(), target, copy, "Copying Execution Dynamic Library")); result.add(copy); } } return result.build(); } /** * Returns a new SpawnAction builder for generating dwp files, pre-initialized with standard * settings. */ private static Packager newDwpAction( CcToolchainProvider toolchain, NestedSet dwpTools) { Packager packager = new Packager(); packager .spawnAction .addTransitiveInputs(dwpTools) .setExecutable(toolchain.getToolPathFragment(Tool.DWP)); return packager; } /** * Creates an intermediate dwp file keyed off the name and path of the final output. */ private static Artifact getIntermediateDwpFile(RuleContext ruleContext, Artifact dwpOutput, int orderNumber) { PathFragment outputPath = dwpOutput.getRootRelativePath(); PathFragment intermediatePath = FileSystemUtils.appendWithoutExtension(outputPath, "-" + orderNumber); return ruleContext.getPackageRelativeArtifact( PathFragment.create(INTERMEDIATE_DWP_DIR + "/" + intermediatePath.getPathString()), dwpOutput.getRoot()); } /** * Collect link parameters from the transitive closure. */ private static CcLinkParams collectCcLinkParams(RuleContext context, boolean linkingStatically, boolean linkShared, List linkopts) { CcLinkParams.Builder builder = CcLinkParams.builder(linkingStatically, linkShared); builder.addCcLibrary(context); if (!isLinkShared(context)) { builder.addTransitiveTarget(CppHelper.mallocForTarget(context)); } builder.addLinkOpts(linkopts); return builder.build(); } private static void addTransitiveInfoProviders( RuleContext ruleContext, CcToolchainProvider toolchain, CppConfiguration cppConfiguration, CcCommon common, RuleConfiguredTargetBuilder builder, NestedSet filesToBuild, CcCompilationOutputs ccCompilationOutputs, CppCompilationContext cppCompilationContext, CcLinkingOutputs linkingOutputs, DwoArtifactsCollector dwoArtifacts, TransitiveLipoInfoProvider transitiveLipoInfo, boolean fake) { List instrumentedObjectFiles = new ArrayList<>(); instrumentedObjectFiles.addAll(ccCompilationOutputs.getObjectFiles(false)); instrumentedObjectFiles.addAll(ccCompilationOutputs.getObjectFiles(true)); InstrumentedFilesProvider instrumentedFilesProvider = common.getInstrumentedFilesProvider( instrumentedObjectFiles, !TargetUtils.isTestRule(ruleContext.getRule()) && !fake); NestedSet headerTokens = CcCompilationHelper.collectHeaderTokens(ruleContext, ccCompilationOutputs); NestedSet filesToCompile = ccCompilationOutputs.getFilesToCompile( cppConfiguration.isLipoContextCollector(), cppConfiguration.processHeadersInDependencies(), CppHelper.usePic(ruleContext, toolchain, false)); builder .setFilesToBuild(filesToBuild) .addProvider(CppCompilationContext.class, cppCompilationContext) .addProvider(TransitiveLipoInfoProvider.class, transitiveLipoInfo) .addProvider( CcExecutionDynamicLibrariesProvider.class, new CcExecutionDynamicLibrariesProvider( collectExecutionDynamicLibraryArtifacts( ruleContext, linkingOutputs.getExecutionDynamicLibraries()))) .addProvider( CcNativeLibraryProvider.class, new CcNativeLibraryProvider( collectTransitiveCcNativeLibraries( ruleContext, linkingOutputs.getDynamicLibraries()))) .addProvider(InstrumentedFilesProvider.class, instrumentedFilesProvider) .addProvider( CppDebugFileProvider.class, new CppDebugFileProvider( dwoArtifacts.getDwoArtifacts(), dwoArtifacts.getPicDwoArtifacts())) .addOutputGroup( OutputGroupInfo.TEMP_FILES, getTemps(cppConfiguration, ccCompilationOutputs)) .addOutputGroup(OutputGroupInfo.FILES_TO_COMPILE, filesToCompile) // For CcBinary targets, we only want to ensure that we process headers in dependencies and // thus only add header tokens to HIDDEN_TOP_LEVEL. If we add all HIDDEN_TOP_LEVEL artifacts // from dependent CcLibrary targets, we'd be building .pic.o files in nopic builds. .addOutputGroup(OutputGroupInfo.HIDDEN_TOP_LEVEL, headerTokens) .addOutputGroup( OutputGroupInfo.COMPILATION_PREREQUISITES, CcCommon.collectCompilationPrerequisites(ruleContext, cppCompilationContext)); CppHelper.maybeAddStaticLinkMarkerProvider(builder, ruleContext); } private static NestedSet collectExecutionDynamicLibraryArtifacts( RuleContext ruleContext, List executionDynamicLibraries) { Iterable artifacts = LinkerInputs.toLibraryArtifacts(executionDynamicLibraries); if (!Iterables.isEmpty(artifacts)) { return NestedSetBuilder.wrap(Order.STABLE_ORDER, artifacts); } Iterable deps = ruleContext .getPrerequisites("deps", Mode.TARGET, CcExecutionDynamicLibrariesProvider.class); NestedSetBuilder builder = NestedSetBuilder.stableOrder(); for (CcExecutionDynamicLibrariesProvider dep : deps) { builder.addTransitive(dep.getExecutionDynamicLibraryArtifacts()); } return builder.build(); } private static NestedSet collectTransitiveCcNativeLibraries( RuleContext ruleContext, List dynamicLibraries) { NestedSetBuilder builder = NestedSetBuilder.linkOrder(); builder.addAll(dynamicLibraries); for (CcNativeLibraryProvider dep : ruleContext.getPrerequisites("deps", Mode.TARGET, CcNativeLibraryProvider.class)) { builder.addTransitive(dep.getTransitiveCcNativeLibraries()); } return builder.build(); } private static NestedSet getTemps(CppConfiguration cppConfiguration, CcCompilationOutputs compilationOutputs) { return cppConfiguration.isLipoContextCollector() ? NestedSetBuilder.emptySet(Order.STABLE_ORDER) : compilationOutputs.getTemps(); } }