LLDB mainline
ABISysV_mips64.h
Go to the documentation of this file.
1//===-- ABISysV_mips64.h ----------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_ABI_MIPS_ABISYSV_MIPS64_H
10#define LLDB_SOURCE_PLUGINS_ABI_MIPS_ABISYSV_MIPS64_H
11
12#include "lldb/Target/ABI.h"
13#include "lldb/lldb-private.h"
14
16public:
17 ~ABISysV_mips64() override = default;
18
19 size_t GetRedZoneSize() const override;
20
22 lldb::addr_t functionAddress,
23 lldb::addr_t returnAddress,
24 llvm::ArrayRef<lldb::addr_t> args) const override;
25
27 lldb_private::ValueList &values) const override;
28
31 lldb::ValueObjectSP &new_value) override;
32
35 lldb_private::CompilerType &type) const override;
36
38
40
41 bool RegisterIsVolatile(const lldb_private::RegisterInfo *reg_info) override;
42
43 bool IsSoftFloat(uint32_t fp_flag) const;
44
45 // The SysV mips ABI requires that stack frames be 16 byte aligned.
46 // When there is a trap handler on the stack, e.g. _sigtramp in userland
47 // code, we've seen that the stack pointer is often not aligned properly
48 // before the handler is invoked. This means that lldb will stop the unwind
49 // early -- before the function which caused the trap.
50 //
51 // To work around this, we relax that alignment to be just word-size
52 // (8-bytes).
53 // Allowing the trap handlers for user space would be easy (_sigtramp) but
54 // in other environments there can be a large number of different functions
55 // involved in async traps.
57 // Make sure the stack call frame addresses are 8 byte aligned
58 if (cfa & (8ull - 1ull))
59 return false; // Not 8 byte aligned
60 if (cfa == 0)
61 return false; // Zero is not a valid stack address
62 return true;
63 }
64
66 if (pc & (4ull - 1ull))
67 return false; // Not 4 byte aligned
68
69 // Anything else if fair game..
70 return true;
71 }
72
74 GetRegisterInfoArray(uint32_t &count) override;
75
76 // Static Functions
77
78 static void Initialize();
79
80 static void Terminate();
81
83
84 static llvm::StringRef GetPluginNameStatic() { return "sysv-mips64"; }
85
86 // PluginInterface protocol
87
88 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
89
90protected:
92
95 lldb_private::CompilerType &ast_type) const;
96
98
99private:
100 using lldb_private::RegInfoBasedABI::RegInfoBasedABI; // Call CreateInstance instead.
101};
102
103#endif // LLDB_SOURCE_PLUGINS_ABI_MIPS_ABISYSV_MIPS64_H
static llvm::StringRef GetPluginNameStatic()
bool RegisterIsCalleeSaved(const lldb_private::RegisterInfo *reg_info)
bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp, lldb::addr_t functionAddress, lldb::addr_t returnAddress, llvm::ArrayRef< lldb::addr_t > args) const override
lldb_private::Status SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override
bool RegisterIsVolatile(const lldb_private::RegisterInfo *reg_info) override
static void Initialize()
bool CodeAddressIsValid(lldb::addr_t pc) override
const lldb_private::RegisterInfo * GetRegisterInfoArray(uint32_t &count) override
static void Terminate()
lldb::ValueObjectSP GetReturnValueObjectSimple(lldb_private::Thread &thread, lldb_private::CompilerType &ast_type) const
bool GetArgumentValues(lldb_private::Thread &thread, lldb_private::ValueList &values) const override
lldb::UnwindPlanSP CreateFunctionEntryUnwindPlan() override
lldb::ValueObjectSP GetReturnValueObjectImpl(lldb_private::Thread &thread, lldb_private::CompilerType &type) const override
lldb::UnwindPlanSP CreateDefaultUnwindPlan() override
~ABISysV_mips64() override=default
bool CallFrameAddressIsValid(lldb::addr_t cfa) override
llvm::StringRef GetPluginName() override
bool IsSoftFloat(uint32_t fp_flag) const
size_t GetRedZoneSize() const override
void CreateRegisterMapIfNeeded()
static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch)
An architecture specification class.
Definition ArchSpec.h:31
Generic representation of a type in a programming language.
An error handling class.
Definition Status.h:118
std::shared_ptr< lldb_private::ABI > ABISP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::UnwindPlan > UnwindPlanSP
uint64_t addr_t
Definition lldb-types.h:80
Every register is described in detail including its name, alternate name (optional),...