1 | //===-- AArch64.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_AARCH64_ABIAARCH64_H |
10 | #define LLDB_SOURCE_PLUGINS_ABI_AARCH64_ABIAARCH64_H |
11 | |
12 | #include "lldb/Target/ABI.h" |
13 | |
14 | class ABIAArch64 : public lldb_private::MCBasedABI { |
15 | public: |
16 | static void Initialize(); |
17 | static void Terminate(); |
18 | |
19 | lldb::addr_t FixCodeAddress(lldb::addr_t pc) override; |
20 | lldb::addr_t FixDataAddress(lldb::addr_t pc) override; |
21 | |
22 | protected: |
23 | virtual lldb::addr_t FixAddress(lldb::addr_t pc, lldb::addr_t mask) { |
24 | return pc; |
25 | } |
26 | |
27 | std::pair<uint32_t, uint32_t> |
28 | GetEHAndDWARFNums(llvm::StringRef name) override; |
29 | |
30 | std::string GetMCName(std::string reg) override; |
31 | |
32 | uint32_t GetGenericNum(llvm::StringRef name) override; |
33 | |
34 | void AugmentRegisterInfo( |
35 | std::vector<lldb_private::DynamicRegisterInfo::Register> ®s) override; |
36 | |
37 | using lldb_private::MCBasedABI::MCBasedABI; |
38 | }; |
39 | #endif |
40 | |