xref: /freebsd-src/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/ABIAArch64.h (revision 58f351825a371d1a3dd693d6f64a1245ea851a51)
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 protected:
20   std::pair<uint32_t, uint32_t>
21   GetEHAndDWARFNums(llvm::StringRef name) override;
22 
23   std::string GetMCName(std::string reg) override {
24     MapRegisterName(reg, "v", "q");
25     return reg;
26   }
27 
28   uint32_t GetGenericNum(llvm::StringRef name) override;
29 
30   using lldb_private::MCBasedABI::MCBasedABI;
31 };
32 #endif
33