llvm-project/llvm/lib/Support/AArch64AttributeParser.cpp
Mark Murray d52675e0a7
[lld][AArch64][Build Attributes] Add support for AArch64 Build Attributes (#147970)
This patch enables lld to read AArch64 Build Attributes and convert them
into GNU Properties.

Changes:
    - Parses AArch64 Build Attributes from input object files.
    - Converts known attributes into corresponding GNU Properties.
    - Merges attributes when linking multiple objects.

Spec reference:
    https://github.com/ARM-software/abi-aa/pull/230/files#r1030

Co-authored-by: Sivan Shani <sivan.shani@arm.com>

---------

Co-authored-by: Sivan Shani <sivan.shani@arm.com>
2025-07-24 10:38:36 +01:00

49 lines
1.9 KiB
C++

//===-- AArch64AttributeParser.cpp - AArch64 Build Attributes PArser------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with
// LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------------------------------------------------===//
#include "llvm/Support/AArch64AttributeParser.h"
#include "llvm/Support/AArch64BuildAttributes.h"
std::vector<llvm::SubsectionAndTagToTagName> &
llvm::AArch64AttributeParser::returnTagsNamesMap() {
static std::vector<SubsectionAndTagToTagName> TagsNamesMap = {
{"aeabi_pauthabi", 1, "Tag_PAuth_Platform"},
{"aeabi_pauthabi", 2, "Tag_PAuth_Schema"},
{"aeabi_feature_and_bits", 0, "Tag_Feature_BTI"},
{"aeabi_feature_and_bits", 1, "Tag_Feature_PAC"},
{"aeabi_feature_and_bits", 2, "Tag_Feature_GCS"}};
return TagsNamesMap;
}
llvm::AArch64BuildAttrSubsections llvm::extractBuildAttributesSubsections(
const llvm::AArch64AttributeParser &Attributes) {
llvm::AArch64BuildAttrSubsections SubSections;
auto GetPauthValue = [&Attributes](unsigned Tag) {
return Attributes.getAttributeValue("aeabi_pauthabi", Tag).value_or(0);
};
SubSections.Pauth.TagPlatform =
GetPauthValue(llvm::AArch64BuildAttributes::TAG_PAUTH_PLATFORM);
SubSections.Pauth.TagSchema =
GetPauthValue(llvm::AArch64BuildAttributes::TAG_PAUTH_SCHEMA);
auto GetFeatureValue = [&Attributes](unsigned Tag) {
return Attributes.getAttributeValue("aeabi_feature_and_bits", Tag)
.value_or(0);
};
SubSections.AndFeatures |=
GetFeatureValue(llvm::AArch64BuildAttributes::TAG_FEATURE_BTI);
SubSections.AndFeatures |=
GetFeatureValue(llvm::AArch64BuildAttributes::TAG_FEATURE_PAC) << 1;
SubSections.AndFeatures |=
GetFeatureValue(llvm::AArch64BuildAttributes::TAG_FEATURE_GCS) << 2;
return SubSections;
}