Loading...
Searching...
No Matches
11#ifndef __DebugServer2_Architecture_RegistersDescriptors_h
12#define __DebugServer2_Architecture_RegistersDescriptors_h
14#include "DebugServer2/Base.h"
16#define USE_DESCRIPTORS(ARCH) \
18 namespace Architecture { \
19 using ds2::Architecture::ARCH::GDB; \
20 using ds2::Architecture::ARCH::LLDB; \
25#include "DebugServer2/Architecture/ARM/RegistersDescriptors.h"
27#elif defined(ARCH_ARM64)
28#include "DebugServer2/Architecture/ARM64/RegistersDescriptors.h"
29USE_DESCRIPTORS(ARM64);
30#elif defined(ARCH_X86)
31#include "DebugServer2/Architecture/X86/RegistersDescriptors.h"
33#elif defined(ARCH_X86_64)
34#include "DebugServer2/Architecture/X86_64/RegistersDescriptors.h"
35USE_DESCRIPTORS(X86_64);
37#error "Architecture not supported."