[lld] [llvm] [readobj][Arm][AArch64] Refactor Build Attributes parsing under ELFAtributeParser and add support for AArch64 Build Attributes (PR #128727)
Oliver Stannard via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 08:47:00 PST 2025
================
@@ -0,0 +1,51 @@
+//===- ELF AttributeParser.h - ELF Attribute Parser -------------*- C++ -*-===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_SUPPORT_ELFEXTENDEDATTRPARSER_H
+#define LLVM_SUPPORT_ELFEXTENDEDATTRPARSER_H
+
+#include "llvm/ADT/ArrayRef.h"
+#include "llvm/Support/DataExtractor.h"
+#include "llvm/Support/ELFAttributeParser.h"
+#include "llvm/Support/ELFAttributes.h"
+#include "llvm/Support/Error.h"
+#include <optional>
+#include <vector>
+
+namespace llvm {
+class StringRef;
+class ScopedPrinter;
+
+class ELFExtendedAttrParser : public ELFAttributeParser {
+protected:
+ ScopedPrinter *Sw;
+ DataExtractor De{ArrayRef<uint8_t>{}, true, 0};
+ DataExtractor::Cursor Cursor{0};
+
+ // Data structure for holding Extended ELF Build Attribute subsection
+ SmallVector<BuildAttributeSubSection, 64> SubSectionVec;
----------------
ostannard wrote:
That test case is a fairly extreme case, because it's trying to test lots of assembler/readobj behaviour, not representative of real usage. 8 isn't an unreasonable value though, so that would be fine too.
https://github.com/llvm/llvm-project/pull/128727
More information about the llvm-commits
mailing list