forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAArch64BuildAttributes.h
More file actions
88 lines (77 loc) · 3.04 KB
/
Copy pathAArch64BuildAttributes.h
File metadata and controls
88 lines (77 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//===-- AArch64BuildAttributes.h - AARch64 Build Attributes -----*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file contains enumerations and support routines for AArch64 build
// attributes as defined in Build Attributes for the AArch64 document.
//
// Build Attributes for the Arm® 64-bit Architecture (AArch64) 2024Q1
//
// https://github.com/ARM-software/abi-aa/blob/ada00cc8e04f421cce657e8d9f3a439c69437cf4/buildattr64/buildattr64.rst
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_SUPPORT_AARCH64BUILDATTRIBUTES_H
#define LLVM_SUPPORT_AARCH64BUILDATTRIBUTES_H
#include "llvm/ADT/StringRef.h"
namespace llvm {
namespace AArch64BuildAttributes {
// AArch64 build attributes
StringRef getSubsectionTag();
StringRef getAttrTag();
/// AArch64 build attributes vendors IDs (a.k.a subsection name)
enum VendorID : unsigned {
AEABI_FEATURE_AND_BITS = 0,
AEABI_PAUTHABI = 1,
VENDOR_UNKNOWN = 404 // Treated as a private subsection name
};
static const StringRef VendorName[] = {"aeabi_feature_and_bits",
"aeabi_pauthabi"};
StringRef getVendorName(unsigned const Vendor);
VendorID getVendorID(StringRef const Vendor);
enum SubsectionOptional : unsigned {
REQUIRED = 0,
OPTIONAL = 1,
OPTIONAL_NOT_FOUND = 404
};
static const StringRef OptionalStr[] = {"required", "optional"};
StringRef getOptionalStr(unsigned Optional);
SubsectionOptional getOptionalID(StringRef Optional);
StringRef getSubsectionOptionalUnknownError();
enum SubsectionType : unsigned { ULEB128 = 0, NTBS = 1, TYPE_NOT_FOUND = 404 };
static const StringRef TypeStr[] = {"uleb128", "ntbs"};
StringRef getTypeStr(unsigned Type);
SubsectionType getTypeID(StringRef Type);
StringRef getSubsectionTypeUnknownError();
enum PauthABITags : unsigned {
TAG_PAUTH_PLATFORM = 1,
TAG_PAUTH_SCHEMA = 2,
PAUTHABI_TAG_NOT_FOUND = 404
};
static const StringRef PauthABITagsStr[] = {"Tag_PAuth_Platform",
"Tag_PAuth_Schema"};
StringRef getPauthABITagsStr(unsigned PauthABITag);
PauthABITags getPauthABITagsID(StringRef PauthABITag);
StringRef getPauthabiTagError();
enum FeatureAndBitsTags : unsigned {
TAG_FEATURE_BTI = 0,
TAG_FEATURE_PAC = 1,
TAG_FEATURE_GCS = 2,
FEATURE_AND_BITS_TAG_NOT_FOUND = 404
};
static const StringRef FeatureAndBitsTagsStr[] = {
"Tag_Feature_BTI", "Tag_Feature_PAC", "Tag_Feature_GCS"};
StringRef getFeatureAndBitsTagsStr(unsigned FeatureAndBitsTag);
FeatureAndBitsTags getFeatureAndBitsTagsID(StringRef FeatureAndBitsTag);
StringRef getFeatureAndBitsTagError();
enum FeatureAndBitsFlag : unsigned {
Feature_BTI_Flag = 1 << 0,
Feature_PAC_Flag = 1 << 1,
Feature_GCS_Flag = 1 << 2
};
} // namespace AArch64BuildAttributes
} // namespace llvm
#endif // LLVM_SUPPORT_AARCH64BUILDATTRIBUTES_H