1 //===-- ABISysV_hexagon.h ----------------------------------------*- C++
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef LLDB_SOURCE_PLUGINS_ABI_HEXAGON_ABISYSV_HEXAGON_H
11 #define LLDB_SOURCE_PLUGINS_ABI_HEXAGON_ABISYSV_HEXAGON_H
13 #include "lldb/Target/ABI.h"
14 #include "lldb/lldb-private.h"
16 class ABISysV_hexagon
: public lldb_private::RegInfoBasedABI
{
18 ~ABISysV_hexagon() override
= default;
20 size_t GetRedZoneSize() const override
;
22 bool PrepareTrivialCall(lldb_private::Thread
&thread
, lldb::addr_t sp
,
23 lldb::addr_t functionAddress
,
24 lldb::addr_t returnAddress
,
25 llvm::ArrayRef
<lldb::addr_t
> args
) const override
;
27 // special thread plan for GDB style non-jit function calls
29 PrepareTrivialCall(lldb_private::Thread
&thread
, lldb::addr_t sp
,
30 lldb::addr_t functionAddress
, lldb::addr_t returnAddress
,
31 llvm::Type
&prototype
,
32 llvm::ArrayRef
<ABI::CallArgument
> args
) const override
;
34 bool GetArgumentValues(lldb_private::Thread
&thread
,
35 lldb_private::ValueList
&values
) const override
;
38 SetReturnValueObject(lldb::StackFrameSP
&frame_sp
,
39 lldb::ValueObjectSP
&new_value
) override
;
42 GetReturnValueObjectImpl(lldb_private::Thread
&thread
,
43 lldb_private::CompilerType
&type
) const override
;
45 // specialized to work with llvm IR types
46 lldb::ValueObjectSP
GetReturnValueObjectImpl(lldb_private::Thread
&thread
,
47 llvm::Type
&type
) const override
;
50 CreateFunctionEntryUnwindPlan(lldb_private::UnwindPlan
&unwind_plan
) override
;
52 bool CreateDefaultUnwindPlan(lldb_private::UnwindPlan
&unwind_plan
) override
;
54 bool RegisterIsVolatile(const lldb_private::RegisterInfo
*reg_info
) override
;
56 bool CallFrameAddressIsValid(lldb::addr_t cfa
) override
{
57 // Make sure the stack call frame addresses are 8 byte aligned
59 return false; // Not 8 byte aligned
61 return false; // Zero is not a valid stack address
65 bool CodeAddressIsValid(lldb::addr_t pc
) override
{
66 // We have a 64 bit address space, so anything is valid as opcodes
67 // aren't fixed width...
71 const lldb_private::RegisterInfo
*
72 GetRegisterInfoArray(uint32_t &count
) override
;
76 static void Initialize();
78 static void Terminate();
80 static lldb::ABISP
CreateInstance(lldb::ProcessSP process_sp
, const lldb_private::ArchSpec
&arch
);
82 static llvm::StringRef
GetPluginNameStatic() { return "sysv-hexagon"; }
84 // PluginInterface protocol
86 llvm::StringRef
GetPluginName() override
{ return GetPluginNameStatic(); }
89 void CreateRegisterMapIfNeeded();
92 GetReturnValueObjectSimple(lldb_private::Thread
&thread
,
93 lldb_private::CompilerType
&ast_type
) const;
95 bool RegisterIsCalleeSaved(const lldb_private::RegisterInfo
*reg_info
);
98 using lldb_private::RegInfoBasedABI::RegInfoBasedABI
; // Call CreateInstance instead.
101 #endif // LLDB_SOURCE_PLUGINS_ABI_HEXAGON_ABISYSV_HEXAGON_H