The PR adds the support optionally enabled/disabled FP-registers to LLDB `RegisterInfoPOSIX_riscv64`. This situation might take place for RISC-V builds having no FP-registers, like RV64IMAC or RV64IMACV. To aim this, patch adds `opt_regsets` flags mechanism. It re-works RegisterInfo class to work with flexibly allocated (depending on `opt_regsets` flag) `m_register_sets` and `m_register_infos` vectors instead of statically defined structures. The registration of regsets is being arranged by `m_per_regset_regnum_range` map. The patch flows are spread to `NativeRegisterContextLinux_riscv64` and `RegisterContextCorePOSIX_riscv64` classes, that were tested on: - x86_64 host working with coredumps - RV64GC and RV64IMAC targets working with coredumps and natively in run-time with binaries `EmulateInstructionRISCV` is out of scope of this patch, and its behavior did not change, using maximum set of registers. According testcase built for RV64IMAC (no-FPR) was added to `TestLinuxCore.py`.
95 lines
2.6 KiB
C++
95 lines
2.6 KiB
C++
//===-- NativeRegisterContextLinux_riscv64.h -------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#if defined(__riscv) && __riscv_xlen == 64
|
|
|
|
#ifndef lldb_NativeRegisterContextLinux_riscv64_h
|
|
#define lldb_NativeRegisterContextLinux_riscv64_h
|
|
|
|
#include "Plugins/Process/Linux/NativeRegisterContextLinux.h"
|
|
#include "Plugins/Process/Utility/RegisterInfoPOSIX_riscv64.h"
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
namespace lldb_private {
|
|
namespace process_linux {
|
|
|
|
class NativeProcessLinux;
|
|
|
|
class NativeRegisterContextLinux_riscv64 : public NativeRegisterContextLinux {
|
|
public:
|
|
NativeRegisterContextLinux_riscv64(
|
|
const ArchSpec &target_arch, NativeThreadProtocol &native_thread,
|
|
std::unique_ptr<RegisterInfoPOSIX_riscv64> register_info_up);
|
|
|
|
uint32_t GetRegisterSetCount() const override;
|
|
|
|
uint32_t GetUserRegisterCount() const override;
|
|
|
|
const RegisterSet *GetRegisterSet(uint32_t set_index) const override;
|
|
|
|
Status ReadRegister(const RegisterInfo *reg_info,
|
|
RegisterValue ®_value) override;
|
|
|
|
Status WriteRegister(const RegisterInfo *reg_info,
|
|
const RegisterValue ®_value) override;
|
|
|
|
Status ReadAllRegisterValues(lldb::WritableDataBufferSP &data_sp) override;
|
|
|
|
Status WriteAllRegisterValues(const lldb::DataBufferSP &data_sp) override;
|
|
|
|
void InvalidateAllRegisters() override;
|
|
|
|
std::vector<uint32_t>
|
|
GetExpeditedRegisters(ExpeditedRegs expType) const override;
|
|
|
|
bool RegisterOffsetIsDynamic() const override { return true; }
|
|
|
|
protected:
|
|
Status ReadGPR() override;
|
|
|
|
Status WriteGPR() override;
|
|
|
|
Status ReadFPR() override;
|
|
|
|
Status WriteFPR() override;
|
|
|
|
void *GetGPRBuffer() override { return &m_gpr; }
|
|
|
|
void *GetFPRBuffer() override { return &m_fpr; }
|
|
|
|
size_t GetGPRSize() const override { return GetRegisterInfo().GetGPRSize(); }
|
|
|
|
size_t GetFPRSize() override { return GetRegisterInfo().GetFPRSize(); }
|
|
|
|
private:
|
|
bool m_gpr_is_valid;
|
|
bool m_fpu_is_valid;
|
|
|
|
RegisterInfoPOSIX_riscv64::GPR m_gpr;
|
|
|
|
RegisterInfoPOSIX_riscv64::FPR m_fpr;
|
|
|
|
size_t GetRegContextSize();
|
|
|
|
bool IsGPR(unsigned reg) const;
|
|
|
|
bool IsFPR(unsigned reg) const;
|
|
|
|
uint32_t CalculateFprOffset(const RegisterInfo *reg_info) const;
|
|
|
|
const RegisterInfoPOSIX_riscv64 &GetRegisterInfo() const;
|
|
};
|
|
|
|
} // namespace process_linux
|
|
} // namespace lldb_private
|
|
|
|
#endif // #ifndef lldb_NativeRegisterContextLinux_riscv64_h
|
|
|
|
#endif // defined(__riscv) && __riscv_xlen == 64
|