RISCVAttributeParser.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //===-- RISCVAttributeParser.h - RISCV Attribute Parser ---------*- C++ -*-===//
  7. //
  8. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  9. // See https://llvm.org/LICENSE.txt for license information.
  10. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #ifndef LLVM_SUPPORT_RISCVATTRIBUTEPARSER_H
  14. #define LLVM_SUPPORT_RISCVATTRIBUTEPARSER_H
  15. #include "llvm/Support/ELFAttributeParser.h"
  16. #include "llvm/Support/RISCVAttributes.h"
  17. namespace llvm {
  18. class RISCVAttributeParser : public ELFAttributeParser {
  19. struct DisplayHandler {
  20. RISCVAttrs::AttrType attribute;
  21. Error (RISCVAttributeParser::*routine)(unsigned);
  22. };
  23. static const DisplayHandler displayRoutines[];
  24. Error handler(uint64_t tag, bool &handled) override;
  25. Error unalignedAccess(unsigned tag);
  26. Error stackAlign(unsigned tag);
  27. public:
  28. RISCVAttributeParser(ScopedPrinter *sw)
  29. : ELFAttributeParser(sw, RISCVAttrs::getRISCVAttributeTags(), "riscv") {}
  30. RISCVAttributeParser()
  31. : ELFAttributeParser(RISCVAttrs::getRISCVAttributeTags(), "riscv") {}
  32. };
  33. } // namespace llvm
  34. #endif
  35. #ifdef __GNUC__
  36. #pragma GCC diagnostic pop
  37. #endif