1 /* Ravenscar x86-64 target support.
3 Copyright (C) 2020-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "amd64-tdep.h"
26 #include "ravenscar-thread.h"
27 #include "amd64-ravenscar-thread.h"
29 /* x86-64 Ravenscar stores registers as:
31 type Context_Buffer is record
44 static const int register_layout
[] =
66 /* The ravenscar_arch_ops vector for AMD64 targets. */
68 static struct ravenscar_arch_ops
amd64_ravenscar_ops (register_layout
);
70 /* Register amd64_ravenscar_ops in GDBARCH. */
73 register_amd64_ravenscar_ops (struct gdbarch
*gdbarch
)
75 set_gdbarch_ravenscar_ops (gdbarch
, &amd64_ravenscar_ops
);