reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | //===-- RegisterInfoPOSIX_arm.h ---------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef liblldb_RegisterInfoPOSIX_arm_h_ #define liblldb_RegisterInfoPOSIX_arm_h_ #include "RegisterInfoInterface.h" #include "lldb/Target/RegisterContext.h" #include "lldb/lldb-private.h" class RegisterInfoPOSIX_arm : public lldb_private::RegisterInfoInterface { public: struct GPR { uint32_t r[16]; // R0-R15 uint32_t cpsr; // CPSR }; struct QReg { uint8_t bytes[16]; }; struct FPU { union { uint32_t s[32]; uint64_t d[32]; QReg q[16]; // the 128-bit NEON registers } floats; uint32_t fpscr; }; struct EXC { uint32_t exception; uint32_t fsr; /* Fault status */ uint32_t far; /* Virtual Fault Address */ }; struct DBG { uint32_t bvr[16]; uint32_t bcr[16]; uint32_t wvr[16]; uint32_t wcr[16]; }; RegisterInfoPOSIX_arm(const lldb_private::ArchSpec &target_arch); size_t GetGPRSize() const override; const lldb_private::RegisterInfo *GetRegisterInfo() const override; uint32_t GetRegisterCount() const override; private: const lldb_private::RegisterInfo *m_register_info_p; uint32_t m_register_info_count; }; #endif // liblldb_RegisterInfoPOSIX_arm_h_ |