LLDB mainline
ABISysV_mips.h
Go to the documentation of this file.
1//===-- ABISysV_mips.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_MIPS_H
10#define LLDB_SOURCE_PLUGINS_ABI_MIPS_ABISYSV_MIPS_H
11
12#include "lldb/Target/ABI.h"
13#include "lldb/lldb-private.h"
14
16public:
17 ~ABISysV_mips() 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
46 // Make sure the stack call frame addresses are 8 byte aligned
47 if (cfa & (8ull - 1ull))
48 return false; // Not 8 byte aligned
49 if (cfa == 0)
50 return false; // Zero is not a valid stack address
51 return true;
52 }
53
55 // Just make sure the address is a valid 32 bit address. Bit zero
56 // might be set due to MicroMIPS function calls, so don't enforce alignment.
57 return (pc <= UINT32_MAX);
58 }
59
61 GetRegisterInfoArray(uint32_t &count) override;
62
63 // Static Functions
64
65 static void Initialize();
66
67 static void Terminate();
68
70
71 static llvm::StringRef GetPluginNameStatic() { return "sysv-mips"; }
72
73 // PluginInterface protocol
74
75 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
76
77protected:
79
82 lldb_private::CompilerType &ast_type) const;
83
85
86private:
87 using lldb_private::RegInfoBasedABI::RegInfoBasedABI; // Call CreateInstance instead.
88};
89
90#endif // LLDB_SOURCE_PLUGINS_ABI_MIPS_ABISYSV_MIPS_H
bool RegisterIsVolatile(const lldb_private::RegisterInfo *reg_info) override
static llvm::StringRef GetPluginNameStatic()
lldb_private::Status SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override
static void Initialize()
bool CodeAddressIsValid(lldb::addr_t pc) override
lldb::ValueObjectSP GetReturnValueObjectImpl(lldb_private::Thread &thread, lldb_private::CompilerType &type) const override
bool IsSoftFloat(uint32_t fp_flag) const
const lldb_private::RegisterInfo * GetRegisterInfoArray(uint32_t &count) override
static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch)
bool CallFrameAddressIsValid(lldb::addr_t cfa) override
void CreateRegisterMapIfNeeded()
bool GetArgumentValues(lldb_private::Thread &thread, lldb_private::ValueList &values) const override
llvm::StringRef GetPluginName() override
lldb::ValueObjectSP GetReturnValueObjectSimple(lldb_private::Thread &thread, lldb_private::CompilerType &ast_type) const
static void Terminate()
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::UnwindPlanSP CreateDefaultUnwindPlan() override
size_t GetRedZoneSize() const override
bool RegisterIsCalleeSaved(const lldb_private::RegisterInfo *reg_info)
lldb::UnwindPlanSP CreateFunctionEntryUnwindPlan() override
~ABISysV_mips() override=default
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
#define UINT32_MAX
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),...