]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Plugins / ABI / SysV-mips64 / ABISysV_mips64.h
1 //===-- ABISysV_mips64.h ----------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_ABISysV_mips64_h_
11 #define liblldb_ABISysV_mips64_h_
12
13 #include "lldb/Target/ABI.h"
14 #include "lldb/lldb-private.h"
15
16 class ABISysV_mips64 : public lldb_private::ABI {
17 public:
18   ~ABISysV_mips64() override = default;
19
20   size_t GetRedZoneSize() const override;
21
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;
26
27   bool GetArgumentValues(lldb_private::Thread &thread,
28                          lldb_private::ValueList &values) const override;
29
30   lldb_private::Status
31   SetReturnValueObject(lldb::StackFrameSP &frame_sp,
32                        lldb::ValueObjectSP &new_value) override;
33
34   lldb::ValueObjectSP
35   GetReturnValueObjectImpl(lldb_private::Thread &thread,
36                            lldb_private::CompilerType &type) const override;
37
38   bool
39   CreateFunctionEntryUnwindPlan(lldb_private::UnwindPlan &unwind_plan) override;
40
41   bool CreateDefaultUnwindPlan(lldb_private::UnwindPlan &unwind_plan) override;
42
43   bool RegisterIsVolatile(const lldb_private::RegisterInfo *reg_info) override;
44
45   bool IsSoftFloat(uint32_t fp_flag) const;
46
47   // The SysV mips ABI requires that stack frames be 16 byte aligned.
48   // When there is a trap handler on the stack, e.g. _sigtramp in userland
49   // code, we've seen that the stack pointer is often not aligned properly
50   // before the handler is invoked.  This means that lldb will stop the unwind
51   // early -- before the function which caused the trap.
52   //
53   // To work around this, we relax that alignment to be just word-size
54   // (8-bytes).
55   // Whitelisting the trap handlers for user space would be easy (_sigtramp) but
56   // in other environments there can be a large number of different functions
57   // involved in async traps.
58   bool CallFrameAddressIsValid(lldb::addr_t cfa) override {
59     // Make sure the stack call frame addresses are 8 byte aligned
60     if (cfa & (8ull - 1ull))
61       return false; // Not 8 byte aligned
62     if (cfa == 0)
63       return false; // Zero is not a valid stack address
64     return true;
65   }
66
67   bool CodeAddressIsValid(lldb::addr_t pc) override {
68     if (pc & (4ull - 1ull))
69       return false; // Not 4 byte aligned
70
71     // Anything else if fair game..
72     return true;
73   }
74
75   const lldb_private::RegisterInfo *
76   GetRegisterInfoArray(uint32_t &count) override;
77
78   //------------------------------------------------------------------
79   // Static Functions
80   //------------------------------------------------------------------
81
82   static void Initialize();
83
84   static void Terminate();
85
86   static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch);
87
88   static lldb_private::ConstString GetPluginNameStatic();
89
90   //------------------------------------------------------------------
91   // PluginInterface protocol
92   //------------------------------------------------------------------
93
94   lldb_private::ConstString GetPluginName() override;
95
96   uint32_t GetPluginVersion() override;
97
98 protected:
99   void CreateRegisterMapIfNeeded();
100
101   lldb::ValueObjectSP
102   GetReturnValueObjectSimple(lldb_private::Thread &thread,
103                              lldb_private::CompilerType &ast_type) const;
104
105   bool RegisterIsCalleeSaved(const lldb_private::RegisterInfo *reg_info);
106
107 private:
108   ABISysV_mips64(lldb::ProcessSP process_sp) : lldb_private::ABI(process_sp) {
109     // Call CreateInstance instead.
110   }
111 };
112
113 #endif // liblldb_ABISysV_mips64_h_