
This reapplies #152650 with a build fix for clang-11 (need explicit template parameters for ArrayRef construction) and avoiding the default-in-a-switch-covering-enum warning. It also adds two new tests. The original commit message was: The trickiest part here is that the FREs have a variable size, in two (or three?) dimensions: - the size of the StartAddress field. This determined by the FDE they are in, so it is uniform across all FREs in one FDE. - the number and sizes of offsets following the FRE. This can be different for each FRE. While vending this information through a template API would be possible, I believe such an approach would be very unwieldy, and it would still require a sequential scan through the FRE list. This is why I'm implementing this by reading the data into a common data structure using the fallible iterator pattern. For more information about the SFrame unwind format, see the [specification](https://sourceware.org/binutils/wiki/sframe) and the related [RFC](https://discourse.llvm.org/t/rfc-adding-sframe-support-to-llvm/86900).
79 lines
2.7 KiB
C++
79 lines
2.7 KiB
C++
//===-- SFrame.cpp -----------------------------------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/BinaryFormat/SFrame.h"
|
|
#include "llvm/Support/ScopedPrinter.h"
|
|
|
|
using namespace llvm;
|
|
|
|
ArrayRef<EnumEntry<sframe::Version>> sframe::getVersions() {
|
|
static constexpr EnumEntry<Version> Versions[] = {
|
|
#define HANDLE_SFRAME_VERSION(CODE, NAME) {#NAME, sframe::Version::NAME},
|
|
#include "llvm/BinaryFormat/SFrameConstants.def"
|
|
};
|
|
|
|
return ArrayRef(Versions);
|
|
}
|
|
|
|
ArrayRef<EnumEntry<sframe::Flags>> sframe::getFlags() {
|
|
static constexpr EnumEntry<sframe::Flags> Flags[] = {
|
|
#define HANDLE_SFRAME_FLAG(CODE, NAME) {#NAME, sframe::Flags::NAME},
|
|
#include "llvm/BinaryFormat/SFrameConstants.def"
|
|
};
|
|
return ArrayRef(Flags);
|
|
}
|
|
|
|
ArrayRef<EnumEntry<sframe::ABI>> sframe::getABIs() {
|
|
static constexpr EnumEntry<sframe::ABI> ABIs[] = {
|
|
#define HANDLE_SFRAME_ABI(CODE, NAME) {#NAME, sframe::ABI::NAME},
|
|
#include "llvm/BinaryFormat/SFrameConstants.def"
|
|
};
|
|
return ArrayRef(ABIs);
|
|
}
|
|
|
|
ArrayRef<EnumEntry<sframe::FREType>> sframe::getFRETypes() {
|
|
static constexpr EnumEntry<sframe::FREType> FRETypes[] = {
|
|
#define HANDLE_SFRAME_FRE_TYPE(CODE, NAME) {#NAME, sframe::FREType::NAME},
|
|
#include "llvm/BinaryFormat/SFrameConstants.def"
|
|
};
|
|
return ArrayRef(FRETypes);
|
|
}
|
|
|
|
ArrayRef<EnumEntry<sframe::FDEType>> sframe::getFDETypes() {
|
|
static constexpr EnumEntry<sframe::FDEType> FDETypes[] = {
|
|
#define HANDLE_SFRAME_FDE_TYPE(CODE, NAME) {#NAME, sframe::FDEType::NAME},
|
|
#include "llvm/BinaryFormat/SFrameConstants.def"
|
|
};
|
|
return ArrayRef(FDETypes);
|
|
}
|
|
|
|
ArrayRef<EnumEntry<sframe::AArch64PAuthKey>> sframe::getAArch64PAuthKeys() {
|
|
static constexpr EnumEntry<sframe::AArch64PAuthKey> AArch64PAuthKeys[] = {
|
|
#define HANDLE_SFRAME_AARCH64_PAUTH_KEY(CODE, NAME) \
|
|
{#NAME, sframe::AArch64PAuthKey::NAME},
|
|
#include "llvm/BinaryFormat/SFrameConstants.def"
|
|
};
|
|
return ArrayRef(AArch64PAuthKeys);
|
|
}
|
|
|
|
ArrayRef<EnumEntry<sframe::FREOffset>> sframe::getFREOffsets() {
|
|
static constexpr EnumEntry<sframe::FREOffset> FREOffsets[] = {
|
|
#define HANDLE_SFRAME_FRE_OFFSET(CODE, NAME) {#NAME, sframe::FREOffset::NAME},
|
|
#include "llvm/BinaryFormat/SFrameConstants.def"
|
|
};
|
|
return ArrayRef(FREOffsets);
|
|
}
|
|
|
|
ArrayRef<EnumEntry<sframe::BaseReg>> sframe::getBaseRegisters() {
|
|
static constexpr EnumEntry<sframe::BaseReg> BaseRegs[] = {
|
|
{"FP", sframe::BaseReg::FP},
|
|
{"SP", sframe::BaseReg::SP},
|
|
};
|
|
return ArrayRef(BaseRegs);
|
|
}
|