DebugServer2
Loading...
Searching...
No Matches
Registers.h
1//
2// Copyright (c) 2014-present, Facebook, Inc.
3// All rights reserved.
4//
5// This source code is licensed under the University of Illinois/NCSA Open
6// Source License found in the LICENSE file in the root directory of this
7// source tree. An additional grant of patent rights can be found in the
8// PATENTS file in the same directory.
9//
10
11#pragma once
12
13#include "DebugServer2/Base.h"
14
15#if defined(ARCH_ARM)
16#include "DebugServer2/Architecture/ARM/Registers.h"
17#elif defined(ARCH_ARM64)
18#include "DebugServer2/Architecture/ARM/Registers.h"
19#include "DebugServer2/Architecture/ARM64/Registers.h"
20#elif defined(ARCH_X86)
21#include "DebugServer2/Architecture/I386/Registers.h"
22#elif defined(ARCH_X86_64)
23#include "DebugServer2/Architecture/I386/Registers.h"
24#include "DebugServer2/Architecture/X86_64/Registers.h"
25#else
26#error "Architecture not supported."
27#endif