LLDB mainline
ABISysV_s390x.h
Go to the documentation of this file.
1//===-- ABISysV_s390x.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_SYSTEMZ_ABISYSV_S390X_H
10#define LLDB_SOURCE_PLUGINS_ABI_SYSTEMZ_ABISYSV_S390X_H
11
12#include "lldb/Target/ABI.h"
13#include "lldb/lldb-private.h"
14
16public:
17 ~ABISysV_s390x() 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
37 bool
39
40 bool CreateDefaultUnwindPlan(lldb_private::UnwindPlan &unwind_plan) override;
41
42 bool RegisterIsVolatile(const lldb_private::RegisterInfo *reg_info) override;
43
45 const lldb_private::RegisterInfo *reg_info,
47 override;
48
50 // Make sure the stack call frame addresses are 8 byte aligned
51 if (cfa & (8ull - 1ull))
52 return false; // Not 8 byte aligned
53 if (cfa == 0)
54 return false; // Zero is not a valid stack address
55 return true;
56 }
57
59 // Code addressed must be 2 byte aligned
60 return (pc & 1ull) == 0;
61 }
62
64 GetRegisterInfoArray(uint32_t &count) override;
65
66 // Static Functions
67
68 static void Initialize();
69
70 static void Terminate();
71
73
74 static llvm::StringRef GetPluginNameStatic() { return "sysv-s390x"; }
75
76 // PluginInterface protocol
77
78 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
79
80protected:
82
85 lldb_private::CompilerType &ast_type) const;
86
88
89private:
90 using lldb_private::RegInfoBasedABI::RegInfoBasedABI; // Call CreateInstance instead.
91};
92
93#endif // LLDB_SOURCE_PLUGINS_ABI_SYSTEMZ_ABISYSV_S390X_H
~ABISysV_s390x() override=default
llvm::StringRef GetPluginName() override
Definition: ABISysV_s390x.h:78
lldb_private::Status SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override
bool CreateFunctionEntryUnwindPlan(lldb_private::UnwindPlan &unwind_plan) override
bool RegisterIsVolatile(const lldb_private::RegisterInfo *reg_info) override
bool GetFallbackRegisterLocation(const lldb_private::RegisterInfo *reg_info, lldb_private::UnwindPlan::Row::AbstractRegisterLocation &unwind_regloc) override
lldb::ValueObjectSP GetReturnValueObjectSimple(lldb_private::Thread &thread, lldb_private::CompilerType &ast_type) const
bool CreateDefaultUnwindPlan(lldb_private::UnwindPlan &unwind_plan) override
bool CodeAddressIsValid(lldb::addr_t pc) override
Definition: ABISysV_s390x.h:58
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
Definition: ABISysV_s390x.h:49
lldb::ValueObjectSP GetReturnValueObjectImpl(lldb_private::Thread &thread, lldb_private::CompilerType &type) const override
bool RegisterIsCalleeSaved(const lldb_private::RegisterInfo *reg_info)
static void Terminate()
static void Initialize()
bool GetArgumentValues(lldb_private::Thread &thread, lldb_private::ValueList &values) const override
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
void CreateRegisterMapIfNeeded()
static llvm::StringRef GetPluginNameStatic()
Definition: ABISysV_s390x.h:74
size_t GetRedZoneSize() const override
An architecture specification class.
Definition: ArchSpec.h:31
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
An error handling class.
Definition: Status.h:118
std::shared_ptr< lldb_private::ABI > ABISP
Definition: lldb-forward.h:317
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
Definition: lldb-forward.h:424
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
Definition: lldb-forward.h:484
std::shared_ptr< lldb_private::Process > ProcessSP
Definition: lldb-forward.h:389
uint64_t addr_t
Definition: lldb-types.h:80
Every register is described in detail including its name, alternate name (optional),...