1//===-- RISCVAttributes.cpp - RISCV Attributes ----------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/Support/RISCVAttributes.h"
10
11using namespace llvm;
12using namespace llvm::RISCVAttrs;
13
14static const TagNameItem tagData[] = {
15    {STACK_ALIGN, "Tag_stack_align"},
16    {ARCH, "Tag_arch"},
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};
22
23const TagNameMap llvm::RISCVAttrs::RISCVAttributeTags(tagData,
24                                                      sizeof(tagData) /
25                                                          sizeof(TagNameItem));
26