mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 19:06:05 +00:00

Refactor readobj to integrate AArch64 Build Attributes under ELFAttributeParser. ELFAttributeParser now serves as a base class for: - ELFCompactAttrParser, handling Arm-style attributes with a single build attribute subsection. - ELFExtendedAttrParser, handling AArch64-style attributes with multiple build attribute subsections. This improves code organization and better aligns with the attribute parsing model. Add support for parsing AArch64 Build Attributes.
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
//===-- HexagonAttributeParser.cpp - Hexagon 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/HexagonAttributeParser.h"
|
|
|
|
using namespace llvm;
|
|
|
|
const HexagonAttributeParser::DisplayHandler
|
|
HexagonAttributeParser::DisplayRoutines[] = {
|
|
{
|
|
HexagonAttrs::ARCH,
|
|
&ELFCompactAttrParser::integerAttribute,
|
|
},
|
|
{
|
|
HexagonAttrs::HVXARCH,
|
|
&ELFCompactAttrParser::integerAttribute,
|
|
},
|
|
{
|
|
HexagonAttrs::HVXIEEEFP,
|
|
&ELFCompactAttrParser::integerAttribute,
|
|
},
|
|
{
|
|
HexagonAttrs::HVXQFLOAT,
|
|
&ELFCompactAttrParser::integerAttribute,
|
|
},
|
|
{
|
|
HexagonAttrs::ZREG,
|
|
&ELFCompactAttrParser::integerAttribute,
|
|
},
|
|
{
|
|
HexagonAttrs::AUDIO,
|
|
&ELFCompactAttrParser::integerAttribute,
|
|
},
|
|
{
|
|
HexagonAttrs::CABAC,
|
|
&ELFCompactAttrParser::integerAttribute,
|
|
}};
|
|
|
|
Error HexagonAttributeParser::handler(uint64_t Tag, bool &Handled) {
|
|
Handled = false;
|
|
for (const auto &R : DisplayRoutines) {
|
|
if (uint64_t(R.Attribute) == Tag) {
|
|
if (Error E = (this->*R.Routine)(Tag))
|
|
return E;
|
|
Handled = true;
|
|
break;
|
|
}
|
|
}
|
|
return Error::success();
|
|
}
|