LLVM 22.0.0git
RISCVAttributeParser.h
Go to the documentation of this file.
1//===-- RISCVAttributeParser.h - RISCV Attribute Parser ---------*- C++ -*-===//
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#ifndef LLVM_SUPPORT_RISCVATTRIBUTEPARSER_H
10#define LLVM_SUPPORT_RISCVATTRIBUTEPARSER_H
11
15
16namespace llvm {
18 struct DisplayHandler {
19 RISCVAttrs::AttrType attribute;
21 };
22 static const DisplayHandler displayRoutines[];
23
24 Error handler(uint64_t tag, bool &handled) override;
25
26 Error unalignedAccess(unsigned tag);
27 Error stackAlign(unsigned tag);
28 Error atomicAbi(unsigned tag);
29
30public:
32 : ELFCompactAttrParser(sw, RISCVAttrs::getRISCVAttributeTags(), "riscv") {
33 }
35 : ELFCompactAttrParser(RISCVAttrs::getRISCVAttributeTags(), "riscv") {}
36};
37
38} // namespace llvm
39
40#endif
#define LLVM_ABI
Definition Compiler.h:213
ELFCompactAttrParser(ScopedPrinter *sw, TagNameMap tagNameMap, StringRef vendor)
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
RISCVAttributeParser(ScopedPrinter *sw)
This is an optimization pass for GlobalISel generic memory operations.