llvm-project/llvm/lib/Support/HexagonAttributeParser.cpp
quic-areg 31f4b329c8
[Hexagon] ELF attributes for Hexagon (#85359)
Defines a subset of attributes and emits them to a section called
.hexagon.attributes.

The current attributes recorded are the attributes needed by
llvm-objdump to automatically determine target features and eliminate
the need to manually pass features.
2024-03-19 16:22:30 -05:00

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,
&ELFAttributeParser::integerAttribute,
},
{
HexagonAttrs::HVXARCH,
&ELFAttributeParser::integerAttribute,
},
{
HexagonAttrs::HVXIEEEFP,
&ELFAttributeParser::integerAttribute,
},
{
HexagonAttrs::HVXQFLOAT,
&ELFAttributeParser::integerAttribute,
},
{
HexagonAttrs::ZREG,
&ELFAttributeParser::integerAttribute,
},
{
HexagonAttrs::AUDIO,
&ELFAttributeParser::integerAttribute,
},
{
HexagonAttrs::CABAC,
&ELFAttributeParser::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();
}