blob: 09489bac4e15b3e5a0f42374f7b3fa3f971ab571 [file] [log] [blame]
// 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.collect.Interner;
import com.google.devtools.build.lib.concurrent.BlazeInterners;
import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec;
import com.google.devtools.build.lib.vfs.Path;
import com.google.devtools.build.lib.vfs.PathFragment;
import com.google.devtools.build.skyframe.SkyFunction;
import com.google.devtools.build.skyframe.SkyFunctionName;
import com.google.devtools.build.skyframe.SkyKey;
import com.google.devtools.build.skyframe.SkyValue;
import java.util.Objects;
/**
* A container for the path to the FDO profile.
*
* <p>{@link CcSkyframeFdoSupportValue} is created from {@link CcSkyframeFdoSupportFunction} (a
* {@link SkyFunction}), which is requested from Skyframe by the {@code cc_toolchain}/{@code
* cc_toolchain_suite} rules. It's done this way because the path depends on both a command line
* argument and the location of the workspace and the latter is not available either during
* configuration creation or during the analysis phase.
*/
@AutoCodec
@Immutable
public class CcSkyframeFdoSupportValue implements SkyValue {
public static final SkyFunctionName SKYFUNCTION = SkyFunctionName.createHermetic("FDO_SUPPORT");
/** {@link SkyKey} for {@link CcSkyframeFdoSupportValue}. */
@Immutable
@AutoCodec
public static class Key implements SkyKey {
private static final Interner<Key> interner = BlazeInterners.newWeakInterner();
private final PathFragment fdoZipPath;
private Key(PathFragment fdoZipPath) {
this.fdoZipPath = fdoZipPath;
}
@AutoCodec.Instantiator
@AutoCodec.VisibleForSerialization
static Key of(PathFragment fdoZipPath) {
return interner.intern(new Key(fdoZipPath));
}
public PathFragment getFdoZipPath() {
return fdoZipPath;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof Key)) {
return false;
}
Key key = (Key) o;
return Objects.equals(fdoZipPath, key.fdoZipPath);
}
@Override
public int hashCode() {
return Objects.hash(fdoZipPath);
}
@Override
public SkyFunctionName functionName() {
return SKYFUNCTION;
}
}
/** Path of the profile file passed to {@code --fdo_optimize} */
// TODO(lberki): This should be a PathFragment.
// Except that CcProtoProfileProvider#getProfile() calls #exists() on it,
// This is all ridiculously incorrect and should be removed asap.
private final Path fdoZipPath;
CcSkyframeFdoSupportValue(Path fdoZipPath) {
this.fdoZipPath = fdoZipPath;
}
public Path getFdoZipPath() {
return fdoZipPath;
}
public static SkyKey key(PathFragment fdoZipPath) {
return Key.of(fdoZipPath);
}
}