1 //===-- RISCVAttributes.cpp - RISCV Attributes ----------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/Support/RISCVAttributes.h"
12 using namespace llvm::RISCVAttrs
;
14 static constexpr TagNameItem tagData
[] = {
15 {STACK_ALIGN
, "Tag_stack_align"},
17 {UNALIGNED_ACCESS
, "Tag_unaligned_access"},
18 {PRIV_SPEC
, "Tag_priv_spec"},
19 {PRIV_SPEC_MINOR
, "Tag_priv_spec_minor"},
20 {PRIV_SPEC_REVISION
, "Tag_priv_spec_revision"},
21 {ATOMIC_ABI
, "Tag_atomic_abi"},
24 constexpr TagNameMap RISCVAttributeTags
{tagData
};
25 const TagNameMap
&llvm::RISCVAttrs::getRISCVAttributeTags() {
26 return RISCVAttributeTags
;