LLVM 22.0.0git
CSKYAttributeParser.h
Go to the documentation of this file.
1//===---- CSKYAttributeParser.h - CSKY 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_CSKYATTRIBUTEPARSER_H
10#define LLVM_SUPPORT_CSKYATTRIBUTEPARSER_H
11
15
16namespace llvm {
18 struct DisplayHandler {
19 CSKYAttrs::AttrType attribute;
21 };
22 static const DisplayHandler displayRoutines[];
23
24 Error dspVersion(unsigned tag);
25 Error vdspVersion(unsigned tag);
26 Error fpuVersion(unsigned tag);
27 Error fpuABI(unsigned tag);
28 Error fpuRounding(unsigned tag);
29 Error fpuDenormal(unsigned tag);
30 Error fpuException(unsigned tag);
31 Error fpuHardFP(unsigned tag);
32
33 Error handler(uint64_t tag, bool &handled) override;
34
35public:
37 : ELFCompactAttrParser(sw, CSKYAttrs::getCSKYAttributeTags(), "csky") {}
39 : ELFCompactAttrParser(CSKYAttrs::getCSKYAttributeTags(), "csky") {}
40};
41
42} // namespace llvm
43
44#endif
#define LLVM_ABI
Definition Compiler.h:213
CSKYAttributeParser(ScopedPrinter *sw)
ELFCompactAttrParser(ScopedPrinter *sw, TagNameMap tagNameMap, StringRef vendor)
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
This is an optimization pass for GlobalISel generic memory operations.