blob: 3d292766d93d08694655cc4d11da0314db40ba84 [file] [log] [blame]
# Copyright 2024 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.
"""Starlark implementation of fdo_prefetch_hints rule."""
load(":common/paths.bzl", "paths")
FdoPrefetchHintsInfo = provider(
doc = "Contains the profile used for prefetch hints",
fields = ["artifact", "absolute_path"],
)
def _impl(ctx):
if bool(ctx.file.profile) == bool(ctx.attr.absolute_path_profile):
fail("exactly one of profile and absolute_path_profile should be specified")
if ctx.attr.profile:
return FdoPrefetchHintsInfo(artifact = ctx.file.profile)
else:
if not ctx.fragments.cpp.enable_fdo_profile_absolute_path():
fail("absolute_path_profile cannot be used when --enable_fdo_profile_absolute_path is false")
if not paths.is_absolute(ctx.attr.absolute_path_profile):
fail("Attribute: absolute_path_profile: %s is not an absolute path" % ctx.attr.absolute_path_profile)
return FdoPrefetchHintsInfo(absolute_path = ctx.attr.absolute_path_profile)
fdo_prefetch_hints = rule(
implementation = _impl,
doc = """
<p>Represents an FDO prefetch hints profile that is either in the workspace or at a specified
absolute path.
Examples:</p>
<pre><code class="lang-starlark">
fdo_prefetch_hints(
name = "hints",
profile = "//path/to/hints:profile.afdo",
)
fdo_profile(
name = "hints_abs",
absolute_path_profile = "/absolute/path/profile.afdo",
)
</code></pre>""",
attrs = {
"profile": attr.label(
allow_single_file = [".afdo"],
doc = """
Label of the hints profile. The hints file has the .afdo extension
The label can also point to an fdo_absolute_path_profile rule.""",
),
"absolute_path_profile": attr.string(
doc = """
Absolute path to the FDO profile. The FDO file may only have the .afdo extension.""",
),
},
provides = [FdoPrefetchHintsInfo],
fragments = ["cpp"],
)