Path: blob/main/contrib/llvm-project/llvm/lib/Support/AArch64AttributeParser.cpp
213766 views
//===-- AArch64AttributeParser.cpp - AArch64 Build Attributes PArser------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with3// LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===---------------------------------------------------------------------===//89#include "llvm/Support/AArch64AttributeParser.h"1011std::vector<llvm::SubsectionAndTagToTagName> &12llvm::AArch64AttributeParser::returnTagsNamesMap() {13static std::vector<SubsectionAndTagToTagName> TagsNamesMap = {14{"aeabi_pauthabi", 1, "Tag_PAuth_Platform"},15{"aeabi_pauthabi", 2, "Tag_PAuth_Schema"},16{"aeabi_feature_and_bits", 0, "Tag_Feature_BTI"},17{"aeabi_feature_and_bits", 1, "Tag_Feature_PAC"},18{"aeabi_feature_and_bits", 2, "Tag_Feature_GCS"}};19return TagsNamesMap;20}212223