//===-- RISCVAttributeParser.cpp - RISCV Attribute Parser -----------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/Support/RISCVAttributeParser.h" #include "llvm/ADT/StringExtras.h" usingnamespacellvm; const RISCVAttributeParser::DisplayHandler RISCVAttributeParser::displayRoutines[] = …; Error RISCVAttributeParser::atomicAbi(unsigned Tag) { … } Error RISCVAttributeParser::unalignedAccess(unsigned tag) { … } Error RISCVAttributeParser::stackAlign(unsigned tag) { … } Error RISCVAttributeParser::handler(uint64_t tag, bool &handled) { … }