Error in build_executable_own_libs for non-native target
[deliverable/binutils-gdb.git] / gdb / amd64-linux-tdep.c
CommitLineData
51433e4b 1/* Target-dependent code for GNU/Linux x86-64.
a4b6fc86 2
ecd75fc8 3 Copyright (C) 2001-2014 Free Software Foundation, Inc.
53e95fcf
JS
4 Contributed by Jiri Smid, SuSE Labs.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
53e95fcf
JS
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
53e95fcf
JS
20
21#include "defs.h"
35669430 22#include "arch-utils.h"
187e21d1 23#include "frame.h"
53e95fcf
JS
24#include "gdbcore.h"
25#include "regcache.h"
84dc46cb 26#include "osabi.h"
911bc6ee 27#include "symtab.h"
8695c747
DJ
28#include "gdbtypes.h"
29#include "reggroups.h"
a055a187 30#include "regset.h"
8695c747 31#include "amd64-linux-tdep.h"
a055a187 32#include "i386-linux-tdep.h"
4aa995e1 33#include "linux-tdep.h"
df7e5265 34#include "x86-xstate.h"
53e95fcf 35
9c1488cb 36#include "amd64-tdep.h"
187e21d1 37#include "solib-svr4.h"
a96d9b2e 38#include "xml-syscall.h"
545c08b4 39#include "glibc-tdep.h"
a96d9b2e 40
90884b2b 41#include "features/i386/amd64-linux.c"
a055a187 42#include "features/i386/amd64-avx-linux.c"
e43e105e 43#include "features/i386/amd64-mpx-linux.c"
01f9f808
MS
44#include "features/i386/amd64-avx512-linux.c"
45
f6537a2c
L
46#include "features/i386/x32-linux.c"
47#include "features/i386/x32-avx-linux.c"
01f9f808 48#include "features/i386/x32-avx512-linux.c"
90884b2b 49
a96d9b2e
SDJ
50/* The syscall's XML filename for i386. */
51#define XML_SYSCALL_FILENAME_AMD64 "syscalls/amd64-linux.xml"
eba29c8c 52
d02ed0bb 53#include "record-full.h"
952b2d63
HZ
54#include "linux-record.h"
55
a055a187
L
56/* Supported register note sections. */
57static struct core_regset_section amd64_linux_regset_sections[] =
58{
2f2241f1 59 { ".reg", 27 * 8, "general-purpose" },
a055a187 60 { ".reg2", 512, "floating-point" },
df7e5265 61 { ".reg-xstate", X86_XSTATE_MAX_SIZE, "XSAVE extended state" },
a055a187
L
62 { NULL, 0 }
63};
64
eba29c8c 65/* Mapping between the general-purpose registers in `struct user'
187e21d1 66 format and GDB's register cache layout. */
eba29c8c 67
187e21d1 68/* From <sys/reg.h>. */
6cd6a2ae 69int amd64_linux_gregset_reg_offset[] =
eba29c8c 70{
187e21d1
MK
71 10 * 8, /* %rax */
72 5 * 8, /* %rbx */
73 11 * 8, /* %rcx */
74 12 * 8, /* %rdx */
75 13 * 8, /* %rsi */
76 14 * 8, /* %rdi */
77 4 * 8, /* %rbp */
78 19 * 8, /* %rsp */
0963b4bd 79 9 * 8, /* %r8 ... */
187e21d1
MK
80 8 * 8,
81 7 * 8,
82 6 * 8,
83 3 * 8,
84 2 * 8,
85 1 * 8,
86 0 * 8, /* ... %r15 */
87 16 * 8, /* %rip */
88 18 * 8, /* %eflags */
89 17 * 8, /* %cs */
90 20 * 8, /* %ss */
91 23 * 8, /* %ds */
92 24 * 8, /* %es */
93 25 * 8, /* %fs */
ed41462c
L
94 26 * 8, /* %gs */
95 -1, -1, -1, -1, -1, -1, -1, -1,
96 -1, -1, -1, -1, -1, -1, -1, -1,
97 -1, -1, -1, -1, -1, -1, -1, -1,
98 -1, -1, -1, -1, -1, -1, -1, -1, -1,
99 -1, -1, -1, -1, -1, -1, -1, -1,
100 -1, -1, -1, -1, -1, -1, -1, -1,
e43e105e
WT
101 -1, -1, -1, -1, /* MPX registers BND0 ... BND3. */
102 -1, -1, /* MPX registers BNDCFGU and BNDSTATUS. */
01f9f808
MS
103 -1, -1, -1, -1, -1, -1, -1, -1, /* xmm16 ... xmm31 (AVX512) */
104 -1, -1, -1, -1, -1, -1, -1, -1,
105 -1, -1, -1, -1, -1, -1, -1, -1, /* ymm16 ... ymm31 (AVX512) */
106 -1, -1, -1, -1, -1, -1, -1, -1,
107 -1, -1, -1, -1, -1, -1, -1, -1, /* k0 ... k7 (AVX512) */
108 -1, -1, -1, -1, -1, -1, -1, -1, /* zmm0 ... zmm31 (AVX512) */
109 -1, -1, -1, -1, -1, -1, -1, -1,
110 -1, -1, -1, -1, -1, -1, -1, -1,
111 -1, -1, -1, -1, -1, -1, -1, -1,
112 15 * 8 /* "orig_rax" */
eba29c8c 113};
187e21d1 114\f
eba29c8c 115
187e21d1 116/* Support for signal handlers. */
c4f35dd8
MK
117
118#define LINUX_SIGTRAMP_INSN0 0x48 /* mov $NNNNNNNN, %rax */
119#define LINUX_SIGTRAMP_OFFSET0 0
120#define LINUX_SIGTRAMP_INSN1 0x0f /* syscall */
121#define LINUX_SIGTRAMP_OFFSET1 7
122
1e55e04f 123static const gdb_byte amd64_linux_sigtramp_code[] =
c4f35dd8
MK
124{
125 /* mov $__NR_rt_sigreturn, %rax */
baed091b
ML
126 LINUX_SIGTRAMP_INSN0, 0xc7, 0xc0, 0x0f, 0x00, 0x00, 0x00,
127 /* syscall */
128 LINUX_SIGTRAMP_INSN1, 0x05
53e95fcf
JS
129};
130
1e55e04f
L
131static const gdb_byte amd64_x32_linux_sigtramp_code[] =
132{
133 /* mov $__NR_rt_sigreturn, %rax. */
134 LINUX_SIGTRAMP_INSN0, 0xc7, 0xc0, 0x01, 0x02, 0x00, 0x40,
135 /* syscall */
136 LINUX_SIGTRAMP_INSN1, 0x05
137};
138
139#define LINUX_SIGTRAMP_LEN (sizeof amd64_linux_sigtramp_code)
53e95fcf
JS
140
141/* If PC is in a sigtramp routine, return the address of the start of
142 the routine. Otherwise, return 0. */
143
144static CORE_ADDR
10458914 145amd64_linux_sigtramp_start (struct frame_info *this_frame)
53e95fcf 146{
1e55e04f
L
147 struct gdbarch *gdbarch;
148 const gdb_byte *sigtramp_code;
10458914 149 CORE_ADDR pc = get_frame_pc (this_frame);
4252dc94 150 gdb_byte buf[LINUX_SIGTRAMP_LEN];
c4f35dd8
MK
151
152 /* We only recognize a signal trampoline if PC is at the start of
153 one of the two instructions. We optimize for finding the PC at
154 the start, as will be the case when the trampoline is not the
155 first frame on the stack. We assume that in the case where the
156 PC is not at the start of the instruction sequence, there will be
157 a few trailing readable bytes on the stack. */
158
10458914 159 if (!safe_frame_unwind_memory (this_frame, pc, buf, sizeof buf))
53e95fcf
JS
160 return 0;
161
162 if (buf[0] != LINUX_SIGTRAMP_INSN0)
163 {
164 if (buf[0] != LINUX_SIGTRAMP_INSN1)
165 return 0;
166
167 pc -= LINUX_SIGTRAMP_OFFSET1;
10458914 168 if (!safe_frame_unwind_memory (this_frame, pc, buf, sizeof buf))
53e95fcf
JS
169 return 0;
170 }
171
1e55e04f
L
172 gdbarch = get_frame_arch (this_frame);
173 if (gdbarch_ptr_bit (gdbarch) == 32)
174 sigtramp_code = amd64_x32_linux_sigtramp_code;
175 else
176 sigtramp_code = amd64_linux_sigtramp_code;
177 if (memcmp (buf, sigtramp_code, LINUX_SIGTRAMP_LEN) != 0)
53e95fcf
JS
178 return 0;
179
180 return pc;
181}
182
10458914
DJ
183/* Return whether THIS_FRAME corresponds to a GNU/Linux sigtramp
184 routine. */
baed091b 185
c4f35dd8 186static int
10458914 187amd64_linux_sigtramp_p (struct frame_info *this_frame)
baed091b 188{
10458914 189 CORE_ADDR pc = get_frame_pc (this_frame);
2c02bd72 190 const char *name;
911bc6ee
MK
191
192 find_pc_partial_function (pc, &name, NULL, NULL);
193
c4f35dd8
MK
194 /* If we have NAME, we can optimize the search. The trampoline is
195 named __restore_rt. However, it isn't dynamically exported from
196 the shared C library, so the trampoline may appear to be part of
197 the preceding function. This should always be sigaction,
198 __sigaction, or __libc_sigaction (all aliases to the same
199 function). */
200 if (name == NULL || strstr (name, "sigaction") != NULL)
10458914 201 return (amd64_linux_sigtramp_start (this_frame) != 0);
c4f35dd8
MK
202
203 return (strcmp ("__restore_rt", name) == 0);
baed091b
ML
204}
205
c4f35dd8 206/* Offset to struct sigcontext in ucontext, from <asm/ucontext.h>. */
51433e4b 207#define AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET 40
b64bbf8c 208
10458914
DJ
209/* Assuming THIS_FRAME is a GNU/Linux sigtramp routine, return the
210 address of the associated sigcontext structure. */
baed091b 211
c4f35dd8 212static CORE_ADDR
10458914 213amd64_linux_sigcontext_addr (struct frame_info *this_frame)
baed091b 214{
e17a4113
UW
215 struct gdbarch *gdbarch = get_frame_arch (this_frame);
216 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
c4f35dd8 217 CORE_ADDR sp;
4252dc94 218 gdb_byte buf[8];
c4f35dd8 219
10458914 220 get_frame_register (this_frame, AMD64_RSP_REGNUM, buf);
e17a4113 221 sp = extract_unsigned_integer (buf, 8, byte_order);
c4f35dd8
MK
222
223 /* The sigcontext structure is part of the user context. A pointer
224 to the user context is passed as the third argument to the signal
225 handler, i.e. in %rdx. Unfortunately %rdx isn't preserved across
226 function calls so we can't use it. Fortunately the user context
227 is part of the signal frame and the unwound %rsp directly points
228 at it. */
51433e4b 229 return sp + AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET;
baed091b 230}
2213a65d
MK
231\f
232
a96d9b2e
SDJ
233static LONGEST
234amd64_linux_get_syscall_number (struct gdbarch *gdbarch,
235 ptid_t ptid)
236{
237 struct regcache *regcache = get_thread_regcache (ptid);
238 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
239 /* The content of a register. */
240 gdb_byte buf[8];
241 /* The result. */
242 LONGEST ret;
243
244 /* Getting the system call number from the register.
245 When dealing with x86_64 architecture, this information
246 is stored at %rax register. */
247 regcache_cooked_read (regcache, AMD64_LINUX_ORIG_RAX_REGNUM, buf);
248
249 ret = extract_signed_integer (buf, 8, byte_order);
250
251 return ret;
252}
253
254
2b5e0749 255/* From <asm/sigcontext.h>. */
51433e4b 256static int amd64_linux_sc_reg_offset[] =
2b5e0749
MK
257{
258 13 * 8, /* %rax */
259 11 * 8, /* %rbx */
260 14 * 8, /* %rcx */
261 12 * 8, /* %rdx */
262 9 * 8, /* %rsi */
263 8 * 8, /* %rdi */
264 10 * 8, /* %rbp */
265 15 * 8, /* %rsp */
266 0 * 8, /* %r8 */
267 1 * 8, /* %r9 */
268 2 * 8, /* %r10 */
269 3 * 8, /* %r11 */
270 4 * 8, /* %r12 */
271 5 * 8, /* %r13 */
272 6 * 8, /* %r14 */
273 7 * 8, /* %r15 */
274 16 * 8, /* %rip */
275 17 * 8, /* %eflags */
2b5e0749 276
af233647 277 /* FIXME: kettenis/2002030531: The registers %cs, %fs and %gs are
2b5e0749
MK
278 available in `struct sigcontext'. However, they only occupy two
279 bytes instead of four, which makes using them here rather
280 difficult. Leave them out for now. */
af233647
MK
281 -1, /* %cs */
282 -1, /* %ss */
283 -1, /* %ds */
284 -1, /* %es */
2b5e0749
MK
285 -1, /* %fs */
286 -1 /* %gs */
287};
288
8695c747
DJ
289static int
290amd64_linux_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
291 struct reggroup *group)
292{
293 if (regnum == AMD64_LINUX_ORIG_RAX_REGNUM)
294 return (group == system_reggroup
295 || group == save_reggroup
296 || group == restore_reggroup);
84d90c10 297 return i386_register_reggroup_p (gdbarch, regnum, group);
8695c747
DJ
298}
299
300/* Set the program counter for process PTID to PC. */
301
302static void
61a1198a 303amd64_linux_write_pc (struct regcache *regcache, CORE_ADDR pc)
8695c747 304{
61a1198a 305 regcache_cooked_write_unsigned (regcache, AMD64_RIP_REGNUM, pc);
8695c747
DJ
306
307 /* We must be careful with modifying the program counter. If we
308 just interrupted a system call, the kernel might try to restart
309 it when we resume the inferior. On restarting the system call,
310 the kernel will try backing up the program counter even though it
311 no longer points at the system call. This typically results in a
312 SIGSEGV or SIGILL. We can prevent this by writing `-1' in the
313 "orig_rax" pseudo-register.
314
315 Note that "orig_rax" is saved when setting up a dummy call frame.
316 This means that it is properly restored when that frame is
317 popped, and that the interrupted system call will be restarted
318 when we resume the inferior on return from a function call from
319 within GDB. In all other cases the system call will not be
320 restarted. */
61a1198a 321 regcache_cooked_write_unsigned (regcache, AMD64_LINUX_ORIG_RAX_REGNUM, -1);
8695c747
DJ
322}
323
cdfbdf30 324/* Record all registers but IP register for process-record. */
952b2d63 325
cdfbdf30
HZ
326static int
327amd64_all_but_ip_registers_record (struct regcache *regcache)
328{
25ea693b 329 if (record_full_arch_list_add_reg (regcache, AMD64_RAX_REGNUM))
cdfbdf30 330 return -1;
25ea693b 331 if (record_full_arch_list_add_reg (regcache, AMD64_RCX_REGNUM))
cdfbdf30 332 return -1;
25ea693b 333 if (record_full_arch_list_add_reg (regcache, AMD64_RDX_REGNUM))
cdfbdf30 334 return -1;
25ea693b 335 if (record_full_arch_list_add_reg (regcache, AMD64_RBX_REGNUM))
cdfbdf30 336 return -1;
25ea693b 337 if (record_full_arch_list_add_reg (regcache, AMD64_RSP_REGNUM))
cdfbdf30 338 return -1;
25ea693b 339 if (record_full_arch_list_add_reg (regcache, AMD64_RBP_REGNUM))
cdfbdf30 340 return -1;
25ea693b 341 if (record_full_arch_list_add_reg (regcache, AMD64_RSI_REGNUM))
cdfbdf30 342 return -1;
25ea693b 343 if (record_full_arch_list_add_reg (regcache, AMD64_RDI_REGNUM))
cdfbdf30 344 return -1;
25ea693b 345 if (record_full_arch_list_add_reg (regcache, AMD64_R8_REGNUM))
cdfbdf30 346 return -1;
25ea693b 347 if (record_full_arch_list_add_reg (regcache, AMD64_R9_REGNUM))
cdfbdf30 348 return -1;
25ea693b 349 if (record_full_arch_list_add_reg (regcache, AMD64_R10_REGNUM))
cdfbdf30 350 return -1;
25ea693b 351 if (record_full_arch_list_add_reg (regcache, AMD64_R11_REGNUM))
cdfbdf30 352 return -1;
25ea693b 353 if (record_full_arch_list_add_reg (regcache, AMD64_R12_REGNUM))
cdfbdf30 354 return -1;
25ea693b 355 if (record_full_arch_list_add_reg (regcache, AMD64_R13_REGNUM))
cdfbdf30 356 return -1;
25ea693b 357 if (record_full_arch_list_add_reg (regcache, AMD64_R14_REGNUM))
cdfbdf30 358 return -1;
25ea693b 359 if (record_full_arch_list_add_reg (regcache, AMD64_R15_REGNUM))
cdfbdf30 360 return -1;
25ea693b 361 if (record_full_arch_list_add_reg (regcache, AMD64_EFLAGS_REGNUM))
cdfbdf30 362 return -1;
952b2d63 363
cdfbdf30
HZ
364 return 0;
365}
952b2d63 366
13b6d1d4
MS
367/* amd64_canonicalize_syscall maps from the native amd64 Linux set
368 of syscall ids into a canonical set of syscall ids used by
369 process record. */
370
371static enum gdb_syscall
9ed936ec 372amd64_canonicalize_syscall (enum amd64_syscall syscall_number)
13b6d1d4 373{
9ed936ec 374 switch (syscall_number) {
13b6d1d4 375 case amd64_sys_read:
8ee5199a 376 case amd64_x32_sys_read:
13b6d1d4
MS
377 return gdb_sys_read;
378
379 case amd64_sys_write:
8ee5199a 380 case amd64_x32_sys_write:
13b6d1d4
MS
381 return gdb_sys_write;
382
383 case amd64_sys_open:
8ee5199a 384 case amd64_x32_sys_open:
13b6d1d4
MS
385 return gdb_sys_open;
386
387 case amd64_sys_close:
8ee5199a 388 case amd64_x32_sys_close:
13b6d1d4
MS
389 return gdb_sys_close;
390
391 case amd64_sys_newstat:
8ee5199a 392 case amd64_x32_sys_newstat:
13b6d1d4
MS
393 return gdb_sys_newstat;
394
395 case amd64_sys_newfstat:
8ee5199a 396 case amd64_x32_sys_newfstat:
13b6d1d4
MS
397 return gdb_sys_newfstat;
398
399 case amd64_sys_newlstat:
8ee5199a 400 case amd64_x32_sys_newlstat:
13b6d1d4
MS
401 return gdb_sys_newlstat;
402
403 case amd64_sys_poll:
8ee5199a 404 case amd64_x32_sys_poll:
13b6d1d4
MS
405 return gdb_sys_poll;
406
407 case amd64_sys_lseek:
8ee5199a 408 case amd64_x32_sys_lseek:
13b6d1d4
MS
409 return gdb_sys_lseek;
410
411 case amd64_sys_mmap:
8ee5199a 412 case amd64_x32_sys_mmap:
13b6d1d4
MS
413 return gdb_sys_mmap2;
414
415 case amd64_sys_mprotect:
8ee5199a 416 case amd64_x32_sys_mprotect:
13b6d1d4
MS
417 return gdb_sys_mprotect;
418
419 case amd64_sys_munmap:
8ee5199a 420 case amd64_x32_sys_munmap:
13b6d1d4
MS
421 return gdb_sys_munmap;
422
423 case amd64_sys_brk:
8ee5199a 424 case amd64_x32_sys_brk:
13b6d1d4
MS
425 return gdb_sys_brk;
426
427 case amd64_sys_rt_sigaction:
8ee5199a 428 case amd64_x32_sys_rt_sigaction:
13b6d1d4
MS
429 return gdb_sys_rt_sigaction;
430
431 case amd64_sys_rt_sigprocmask:
8ee5199a 432 case amd64_x32_sys_rt_sigprocmask:
13b6d1d4
MS
433 return gdb_sys_rt_sigprocmask;
434
435 case amd64_sys_rt_sigreturn:
8ee5199a 436 case amd64_x32_sys_rt_sigreturn:
13b6d1d4
MS
437 return gdb_sys_rt_sigreturn;
438
439 case amd64_sys_ioctl:
8ee5199a 440 case amd64_x32_sys_ioctl:
13b6d1d4
MS
441 return gdb_sys_ioctl;
442
443 case amd64_sys_pread64:
8ee5199a 444 case amd64_x32_sys_pread64:
13b6d1d4
MS
445 return gdb_sys_pread64;
446
447 case amd64_sys_pwrite64:
8ee5199a 448 case amd64_x32_sys_pwrite64:
13b6d1d4
MS
449 return gdb_sys_pwrite64;
450
451 case amd64_sys_readv:
8ee5199a 452 case amd64_x32_sys_readv:
13b6d1d4
MS
453 return gdb_sys_readv;
454
455 case amd64_sys_writev:
8ee5199a 456 case amd64_x32_sys_writev:
13b6d1d4
MS
457 return gdb_sys_writev;
458
459 case amd64_sys_access:
8ee5199a 460 case amd64_x32_sys_access:
13b6d1d4
MS
461 return gdb_sys_access;
462
463 case amd64_sys_pipe:
8ee5199a 464 case amd64_x32_sys_pipe:
13b6d1d4
MS
465 return gdb_sys_pipe;
466
467 case amd64_sys_select:
8ee5199a 468 case amd64_x32_sys_select:
13b6d1d4
MS
469 return gdb_sys_select;
470
471 case amd64_sys_sched_yield:
8ee5199a 472 case amd64_x32_sys_sched_yield:
13b6d1d4
MS
473 return gdb_sys_sched_yield;
474
475 case amd64_sys_mremap:
8ee5199a 476 case amd64_x32_sys_mremap:
13b6d1d4
MS
477 return gdb_sys_mremap;
478
479 case amd64_sys_msync:
8ee5199a 480 case amd64_x32_sys_msync:
13b6d1d4
MS
481 return gdb_sys_msync;
482
483 case amd64_sys_mincore:
8ee5199a 484 case amd64_x32_sys_mincore:
13b6d1d4
MS
485 return gdb_sys_mincore;
486
487 case amd64_sys_madvise:
8ee5199a 488 case amd64_x32_sys_madvise:
13b6d1d4
MS
489 return gdb_sys_madvise;
490
491 case amd64_sys_shmget:
8ee5199a 492 case amd64_x32_sys_shmget:
13b6d1d4
MS
493 return gdb_sys_shmget;
494
495 case amd64_sys_shmat:
8ee5199a 496 case amd64_x32_sys_shmat:
13b6d1d4
MS
497 return gdb_sys_shmat;
498
499 case amd64_sys_shmctl:
8ee5199a 500 case amd64_x32_sys_shmctl:
13b6d1d4
MS
501 return gdb_sys_shmctl;
502
503 case amd64_sys_dup:
8ee5199a 504 case amd64_x32_sys_dup:
13b6d1d4
MS
505 return gdb_sys_dup;
506
507 case amd64_sys_dup2:
8ee5199a 508 case amd64_x32_sys_dup2:
13b6d1d4
MS
509 return gdb_sys_dup2;
510
511 case amd64_sys_pause:
8ee5199a 512 case amd64_x32_sys_pause:
13b6d1d4
MS
513 return gdb_sys_pause;
514
515 case amd64_sys_nanosleep:
8ee5199a 516 case amd64_x32_sys_nanosleep:
13b6d1d4
MS
517 return gdb_sys_nanosleep;
518
519 case amd64_sys_getitimer:
8ee5199a 520 case amd64_x32_sys_getitimer:
13b6d1d4
MS
521 return gdb_sys_getitimer;
522
523 case amd64_sys_alarm:
8ee5199a 524 case amd64_x32_sys_alarm:
13b6d1d4
MS
525 return gdb_sys_alarm;
526
527 case amd64_sys_setitimer:
8ee5199a 528 case amd64_x32_sys_setitimer:
13b6d1d4
MS
529 return gdb_sys_setitimer;
530
531 case amd64_sys_getpid:
8ee5199a 532 case amd64_x32_sys_getpid:
13b6d1d4
MS
533 return gdb_sys_getpid;
534
535 case amd64_sys_sendfile64:
8ee5199a 536 case amd64_x32_sys_sendfile64:
13b6d1d4
MS
537 return gdb_sys_sendfile64;
538
539 case amd64_sys_socket:
8ee5199a 540 case amd64_x32_sys_socket:
13b6d1d4
MS
541 return gdb_sys_socket;
542
543 case amd64_sys_connect:
8ee5199a 544 case amd64_x32_sys_connect:
13b6d1d4
MS
545 return gdb_sys_connect;
546
547 case amd64_sys_accept:
8ee5199a 548 case amd64_x32_sys_accept:
13b6d1d4
MS
549 return gdb_sys_accept;
550
551 case amd64_sys_sendto:
8ee5199a 552 case amd64_x32_sys_sendto:
13b6d1d4
MS
553 return gdb_sys_sendto;
554
555 case amd64_sys_recvfrom:
8ee5199a 556 case amd64_x32_sys_recvfrom:
13b6d1d4
MS
557 return gdb_sys_recvfrom;
558
559 case amd64_sys_sendmsg:
8ee5199a 560 case amd64_x32_sys_sendmsg:
13b6d1d4
MS
561 return gdb_sys_sendmsg;
562
563 case amd64_sys_recvmsg:
8ee5199a 564 case amd64_x32_sys_recvmsg:
13b6d1d4
MS
565 return gdb_sys_recvmsg;
566
567 case amd64_sys_shutdown:
8ee5199a 568 case amd64_x32_sys_shutdown:
13b6d1d4
MS
569 return gdb_sys_shutdown;
570
571 case amd64_sys_bind:
8ee5199a 572 case amd64_x32_sys_bind:
13b6d1d4
MS
573 return gdb_sys_bind;
574
575 case amd64_sys_listen:
8ee5199a 576 case amd64_x32_sys_listen:
13b6d1d4
MS
577 return gdb_sys_listen;
578
579 case amd64_sys_getsockname:
8ee5199a 580 case amd64_x32_sys_getsockname:
13b6d1d4
MS
581 return gdb_sys_getsockname;
582
583 case amd64_sys_getpeername:
8ee5199a 584 case amd64_x32_sys_getpeername:
13b6d1d4
MS
585 return gdb_sys_getpeername;
586
587 case amd64_sys_socketpair:
8ee5199a 588 case amd64_x32_sys_socketpair:
13b6d1d4
MS
589 return gdb_sys_socketpair;
590
591 case amd64_sys_setsockopt:
8ee5199a 592 case amd64_x32_sys_setsockopt:
13b6d1d4
MS
593 return gdb_sys_setsockopt;
594
595 case amd64_sys_getsockopt:
8ee5199a 596 case amd64_x32_sys_getsockopt:
13b6d1d4
MS
597 return gdb_sys_getsockopt;
598
599 case amd64_sys_clone:
8ee5199a 600 case amd64_x32_sys_clone:
13b6d1d4
MS
601 return gdb_sys_clone;
602
603 case amd64_sys_fork:
8ee5199a 604 case amd64_x32_sys_fork:
13b6d1d4
MS
605 return gdb_sys_fork;
606
607 case amd64_sys_vfork:
8ee5199a 608 case amd64_x32_sys_vfork:
13b6d1d4
MS
609 return gdb_sys_vfork;
610
611 case amd64_sys_execve:
8ee5199a 612 case amd64_x32_sys_execve:
13b6d1d4
MS
613 return gdb_sys_execve;
614
615 case amd64_sys_exit:
8ee5199a 616 case amd64_x32_sys_exit:
13b6d1d4
MS
617 return gdb_sys_exit;
618
619 case amd64_sys_wait4:
8ee5199a 620 case amd64_x32_sys_wait4:
13b6d1d4
MS
621 return gdb_sys_wait4;
622
623 case amd64_sys_kill:
8ee5199a 624 case amd64_x32_sys_kill:
13b6d1d4
MS
625 return gdb_sys_kill;
626
627 case amd64_sys_uname:
8ee5199a 628 case amd64_x32_sys_uname:
13b6d1d4
MS
629 return gdb_sys_uname;
630
631 case amd64_sys_semget:
8ee5199a 632 case amd64_x32_sys_semget:
13b6d1d4
MS
633 return gdb_sys_semget;
634
635 case amd64_sys_semop:
8ee5199a 636 case amd64_x32_sys_semop:
13b6d1d4
MS
637 return gdb_sys_semop;
638
639 case amd64_sys_semctl:
8ee5199a 640 case amd64_x32_sys_semctl:
13b6d1d4
MS
641 return gdb_sys_semctl;
642
643 case amd64_sys_shmdt:
8ee5199a 644 case amd64_x32_sys_shmdt:
13b6d1d4
MS
645 return gdb_sys_shmdt;
646
647 case amd64_sys_msgget:
8ee5199a 648 case amd64_x32_sys_msgget:
13b6d1d4
MS
649 return gdb_sys_msgget;
650
651 case amd64_sys_msgsnd:
8ee5199a 652 case amd64_x32_sys_msgsnd:
13b6d1d4
MS
653 return gdb_sys_msgsnd;
654
655 case amd64_sys_msgrcv:
8ee5199a 656 case amd64_x32_sys_msgrcv:
13b6d1d4
MS
657 return gdb_sys_msgrcv;
658
659 case amd64_sys_msgctl:
8ee5199a 660 case amd64_x32_sys_msgctl:
13b6d1d4
MS
661 return gdb_sys_msgctl;
662
663 case amd64_sys_fcntl:
8ee5199a 664 case amd64_x32_sys_fcntl:
13b6d1d4
MS
665 return gdb_sys_fcntl;
666
667 case amd64_sys_flock:
8ee5199a 668 case amd64_x32_sys_flock:
13b6d1d4
MS
669 return gdb_sys_flock;
670
671 case amd64_sys_fsync:
8ee5199a 672 case amd64_x32_sys_fsync:
13b6d1d4
MS
673 return gdb_sys_fsync;
674
675 case amd64_sys_fdatasync:
8ee5199a 676 case amd64_x32_sys_fdatasync:
13b6d1d4
MS
677 return gdb_sys_fdatasync;
678
679 case amd64_sys_truncate:
8ee5199a 680 case amd64_x32_sys_truncate:
13b6d1d4
MS
681 return gdb_sys_truncate;
682
683 case amd64_sys_ftruncate:
8ee5199a 684 case amd64_x32_sys_ftruncate:
13b6d1d4
MS
685 return gdb_sys_ftruncate;
686
687 case amd64_sys_getdents:
8ee5199a 688 case amd64_x32_sys_getdents:
13b6d1d4
MS
689 return gdb_sys_getdents;
690
691 case amd64_sys_getcwd:
8ee5199a 692 case amd64_x32_sys_getcwd:
13b6d1d4
MS
693 return gdb_sys_getcwd;
694
695 case amd64_sys_chdir:
8ee5199a 696 case amd64_x32_sys_chdir:
13b6d1d4
MS
697 return gdb_sys_chdir;
698
699 case amd64_sys_fchdir:
8ee5199a 700 case amd64_x32_sys_fchdir:
13b6d1d4
MS
701 return gdb_sys_fchdir;
702
703 case amd64_sys_rename:
8ee5199a 704 case amd64_x32_sys_rename:
13b6d1d4
MS
705 return gdb_sys_rename;
706
707 case amd64_sys_mkdir:
8ee5199a 708 case amd64_x32_sys_mkdir:
13b6d1d4
MS
709 return gdb_sys_mkdir;
710
711 case amd64_sys_rmdir:
8ee5199a 712 case amd64_x32_sys_rmdir:
13b6d1d4
MS
713 return gdb_sys_rmdir;
714
715 case amd64_sys_creat:
8ee5199a 716 case amd64_x32_sys_creat:
13b6d1d4
MS
717 return gdb_sys_creat;
718
719 case amd64_sys_link:
8ee5199a 720 case amd64_x32_sys_link:
13b6d1d4
MS
721 return gdb_sys_link;
722
723 case amd64_sys_unlink:
8ee5199a 724 case amd64_x32_sys_unlink:
13b6d1d4
MS
725 return gdb_sys_unlink;
726
727 case amd64_sys_symlink:
8ee5199a 728 case amd64_x32_sys_symlink:
13b6d1d4
MS
729 return gdb_sys_symlink;
730
731 case amd64_sys_readlink:
8ee5199a 732 case amd64_x32_sys_readlink:
13b6d1d4
MS
733 return gdb_sys_readlink;
734
735 case amd64_sys_chmod:
8ee5199a 736 case amd64_x32_sys_chmod:
13b6d1d4
MS
737 return gdb_sys_chmod;
738
739 case amd64_sys_fchmod:
8ee5199a 740 case amd64_x32_sys_fchmod:
13b6d1d4
MS
741 return gdb_sys_fchmod;
742
743 case amd64_sys_chown:
8ee5199a 744 case amd64_x32_sys_chown:
13b6d1d4
MS
745 return gdb_sys_chown;
746
747 case amd64_sys_fchown:
8ee5199a 748 case amd64_x32_sys_fchown:
13b6d1d4
MS
749 return gdb_sys_fchown;
750
751 case amd64_sys_lchown:
8ee5199a 752 case amd64_x32_sys_lchown:
13b6d1d4
MS
753 return gdb_sys_lchown;
754
755 case amd64_sys_umask:
8ee5199a 756 case amd64_x32_sys_umask:
13b6d1d4
MS
757 return gdb_sys_umask;
758
759 case amd64_sys_gettimeofday:
8ee5199a 760 case amd64_x32_sys_gettimeofday:
13b6d1d4
MS
761 return gdb_sys_gettimeofday;
762
763 case amd64_sys_getrlimit:
8ee5199a 764 case amd64_x32_sys_getrlimit:
13b6d1d4
MS
765 return gdb_sys_getrlimit;
766
767 case amd64_sys_getrusage:
8ee5199a 768 case amd64_x32_sys_getrusage:
13b6d1d4
MS
769 return gdb_sys_getrusage;
770
771 case amd64_sys_sysinfo:
8ee5199a 772 case amd64_x32_sys_sysinfo:
13b6d1d4
MS
773 return gdb_sys_sysinfo;
774
775 case amd64_sys_times:
8ee5199a 776 case amd64_x32_sys_times:
13b6d1d4
MS
777 return gdb_sys_times;
778
779 case amd64_sys_ptrace:
8ee5199a 780 case amd64_x32_sys_ptrace:
13b6d1d4
MS
781 return gdb_sys_ptrace;
782
783 case amd64_sys_getuid:
8ee5199a 784 case amd64_x32_sys_getuid:
13b6d1d4
MS
785 return gdb_sys_getuid;
786
787 case amd64_sys_syslog:
8ee5199a 788 case amd64_x32_sys_syslog:
13b6d1d4
MS
789 return gdb_sys_syslog;
790
791 case amd64_sys_getgid:
8ee5199a 792 case amd64_x32_sys_getgid:
13b6d1d4
MS
793 return gdb_sys_getgid;
794
795 case amd64_sys_setuid:
8ee5199a 796 case amd64_x32_sys_setuid:
13b6d1d4
MS
797 return gdb_sys_setuid;
798
799 case amd64_sys_setgid:
8ee5199a 800 case amd64_x32_sys_setgid:
13b6d1d4
MS
801 return gdb_sys_setgid;
802
803 case amd64_sys_geteuid:
8ee5199a 804 case amd64_x32_sys_geteuid:
13b6d1d4
MS
805 return gdb_sys_geteuid;
806
807 case amd64_sys_getegid:
8ee5199a 808 case amd64_x32_sys_getegid:
13b6d1d4
MS
809 return gdb_sys_getegid;
810
811 case amd64_sys_setpgid:
8ee5199a 812 case amd64_x32_sys_setpgid:
13b6d1d4
MS
813 return gdb_sys_setpgid;
814
815 case amd64_sys_getppid:
8ee5199a 816 case amd64_x32_sys_getppid:
13b6d1d4
MS
817 return gdb_sys_getppid;
818
819 case amd64_sys_getpgrp:
8ee5199a 820 case amd64_x32_sys_getpgrp:
13b6d1d4
MS
821 return gdb_sys_getpgrp;
822
823 case amd64_sys_setsid:
8ee5199a 824 case amd64_x32_sys_setsid:
13b6d1d4
MS
825 return gdb_sys_setsid;
826
827 case amd64_sys_setreuid:
8ee5199a 828 case amd64_x32_sys_setreuid:
13b6d1d4
MS
829 return gdb_sys_setreuid;
830
831 case amd64_sys_setregid:
8ee5199a 832 case amd64_x32_sys_setregid:
13b6d1d4
MS
833 return gdb_sys_setregid;
834
835 case amd64_sys_getgroups:
8ee5199a 836 case amd64_x32_sys_getgroups:
13b6d1d4
MS
837 return gdb_sys_getgroups;
838
839 case amd64_sys_setgroups:
8ee5199a 840 case amd64_x32_sys_setgroups:
13b6d1d4
MS
841 return gdb_sys_setgroups;
842
843 case amd64_sys_setresuid:
8ee5199a 844 case amd64_x32_sys_setresuid:
13b6d1d4
MS
845 return gdb_sys_setresuid;
846
847 case amd64_sys_getresuid:
8ee5199a 848 case amd64_x32_sys_getresuid:
13b6d1d4
MS
849 return gdb_sys_getresuid;
850
851 case amd64_sys_setresgid:
8ee5199a 852 case amd64_x32_sys_setresgid:
13b6d1d4
MS
853 return gdb_sys_setresgid;
854
855 case amd64_sys_getresgid:
8ee5199a 856 case amd64_x32_sys_getresgid:
13b6d1d4
MS
857 return gdb_sys_getresgid;
858
859 case amd64_sys_getpgid:
8ee5199a 860 case amd64_x32_sys_getpgid:
13b6d1d4
MS
861 return gdb_sys_getpgid;
862
863 case amd64_sys_setfsuid:
8ee5199a 864 case amd64_x32_sys_setfsuid:
13b6d1d4
MS
865 return gdb_sys_setfsuid;
866
867 case amd64_sys_setfsgid:
8ee5199a 868 case amd64_x32_sys_setfsgid:
13b6d1d4
MS
869 return gdb_sys_setfsgid;
870
871 case amd64_sys_getsid:
8ee5199a 872 case amd64_x32_sys_getsid:
13b6d1d4
MS
873 return gdb_sys_getsid;
874
875 case amd64_sys_capget:
8ee5199a 876 case amd64_x32_sys_capget:
13b6d1d4
MS
877 return gdb_sys_capget;
878
879 case amd64_sys_capset:
8ee5199a 880 case amd64_x32_sys_capset:
13b6d1d4
MS
881 return gdb_sys_capset;
882
883 case amd64_sys_rt_sigpending:
8ee5199a 884 case amd64_x32_sys_rt_sigpending:
13b6d1d4
MS
885 return gdb_sys_rt_sigpending;
886
887 case amd64_sys_rt_sigtimedwait:
8ee5199a 888 case amd64_x32_sys_rt_sigtimedwait:
13b6d1d4
MS
889 return gdb_sys_rt_sigtimedwait;
890
891 case amd64_sys_rt_sigqueueinfo:
8ee5199a 892 case amd64_x32_sys_rt_sigqueueinfo:
13b6d1d4
MS
893 return gdb_sys_rt_sigqueueinfo;
894
895 case amd64_sys_rt_sigsuspend:
8ee5199a 896 case amd64_x32_sys_rt_sigsuspend:
13b6d1d4
MS
897 return gdb_sys_rt_sigsuspend;
898
899 case amd64_sys_sigaltstack:
8ee5199a 900 case amd64_x32_sys_sigaltstack:
13b6d1d4
MS
901 return gdb_sys_sigaltstack;
902
903 case amd64_sys_utime:
8ee5199a 904 case amd64_x32_sys_utime:
13b6d1d4
MS
905 return gdb_sys_utime;
906
907 case amd64_sys_mknod:
8ee5199a 908 case amd64_x32_sys_mknod:
13b6d1d4
MS
909 return gdb_sys_mknod;
910
911 case amd64_sys_personality:
8ee5199a 912 case amd64_x32_sys_personality:
13b6d1d4
MS
913 return gdb_sys_personality;
914
915 case amd64_sys_ustat:
8ee5199a 916 case amd64_x32_sys_ustat:
13b6d1d4
MS
917 return gdb_sys_ustat;
918
919 case amd64_sys_statfs:
8ee5199a 920 case amd64_x32_sys_statfs:
13b6d1d4
MS
921 return gdb_sys_statfs;
922
923 case amd64_sys_fstatfs:
8ee5199a 924 case amd64_x32_sys_fstatfs:
13b6d1d4
MS
925 return gdb_sys_fstatfs;
926
927 case amd64_sys_sysfs:
8ee5199a 928 case amd64_x32_sys_sysfs:
13b6d1d4
MS
929 return gdb_sys_sysfs;
930
931 case amd64_sys_getpriority:
8ee5199a 932 case amd64_x32_sys_getpriority:
13b6d1d4
MS
933 return gdb_sys_getpriority;
934
935 case amd64_sys_setpriority:
8ee5199a 936 case amd64_x32_sys_setpriority:
13b6d1d4
MS
937 return gdb_sys_setpriority;
938
939 case amd64_sys_sched_setparam:
8ee5199a 940 case amd64_x32_sys_sched_setparam:
13b6d1d4
MS
941 return gdb_sys_sched_setparam;
942
943 case amd64_sys_sched_getparam:
8ee5199a 944 case amd64_x32_sys_sched_getparam:
13b6d1d4
MS
945 return gdb_sys_sched_getparam;
946
947 case amd64_sys_sched_setscheduler:
8ee5199a 948 case amd64_x32_sys_sched_setscheduler:
13b6d1d4
MS
949 return gdb_sys_sched_setscheduler;
950
951 case amd64_sys_sched_getscheduler:
8ee5199a 952 case amd64_x32_sys_sched_getscheduler:
13b6d1d4
MS
953 return gdb_sys_sched_getscheduler;
954
955 case amd64_sys_sched_get_priority_max:
8ee5199a 956 case amd64_x32_sys_sched_get_priority_max:
13b6d1d4
MS
957 return gdb_sys_sched_get_priority_max;
958
959 case amd64_sys_sched_get_priority_min:
8ee5199a 960 case amd64_x32_sys_sched_get_priority_min:
13b6d1d4
MS
961 return gdb_sys_sched_get_priority_min;
962
963 case amd64_sys_sched_rr_get_interval:
8ee5199a 964 case amd64_x32_sys_sched_rr_get_interval:
13b6d1d4
MS
965 return gdb_sys_sched_rr_get_interval;
966
967 case amd64_sys_mlock:
8ee5199a 968 case amd64_x32_sys_mlock:
13b6d1d4
MS
969 return gdb_sys_mlock;
970
971 case amd64_sys_munlock:
8ee5199a 972 case amd64_x32_sys_munlock:
13b6d1d4
MS
973 return gdb_sys_munlock;
974
975 case amd64_sys_mlockall:
8ee5199a 976 case amd64_x32_sys_mlockall:
13b6d1d4
MS
977 return gdb_sys_mlockall;
978
979 case amd64_sys_munlockall:
8ee5199a 980 case amd64_x32_sys_munlockall:
13b6d1d4
MS
981 return gdb_sys_munlockall;
982
983 case amd64_sys_vhangup:
8ee5199a 984 case amd64_x32_sys_vhangup:
13b6d1d4
MS
985 return gdb_sys_vhangup;
986
987 case amd64_sys_modify_ldt:
8ee5199a 988 case amd64_x32_sys_modify_ldt:
13b6d1d4
MS
989 return gdb_sys_modify_ldt;
990
991 case amd64_sys_pivot_root:
8ee5199a 992 case amd64_x32_sys_pivot_root:
13b6d1d4
MS
993 return gdb_sys_pivot_root;
994
995 case amd64_sys_sysctl:
8ee5199a 996 case amd64_x32_sys_sysctl:
13b6d1d4
MS
997 return gdb_sys_sysctl;
998
999 case amd64_sys_prctl:
8ee5199a 1000 case amd64_x32_sys_prctl:
13b6d1d4
MS
1001 return gdb_sys_prctl;
1002
1003 case amd64_sys_arch_prctl:
8ee5199a 1004 case amd64_x32_sys_arch_prctl:
13b6d1d4
MS
1005 return -1; /* Note */
1006
1007 case amd64_sys_adjtimex:
8ee5199a 1008 case amd64_x32_sys_adjtimex:
13b6d1d4
MS
1009 return gdb_sys_adjtimex;
1010
1011 case amd64_sys_setrlimit:
8ee5199a 1012 case amd64_x32_sys_setrlimit:
13b6d1d4
MS
1013 return gdb_sys_setrlimit;
1014
1015 case amd64_sys_chroot:
8ee5199a 1016 case amd64_x32_sys_chroot:
13b6d1d4
MS
1017 return gdb_sys_chroot;
1018
1019 case amd64_sys_sync:
8ee5199a 1020 case amd64_x32_sys_sync:
13b6d1d4
MS
1021 return gdb_sys_sync;
1022
1023 case amd64_sys_acct:
8ee5199a 1024 case amd64_x32_sys_acct:
13b6d1d4
MS
1025 return gdb_sys_acct;
1026
1027 case amd64_sys_settimeofday:
8ee5199a 1028 case amd64_x32_sys_settimeofday:
13b6d1d4
MS
1029 return gdb_sys_settimeofday;
1030
1031 case amd64_sys_mount:
8ee5199a 1032 case amd64_x32_sys_mount:
13b6d1d4
MS
1033 return gdb_sys_mount;
1034
1035 case amd64_sys_umount:
8ee5199a 1036 case amd64_x32_sys_umount:
13b6d1d4
MS
1037 return gdb_sys_umount;
1038
1039 case amd64_sys_swapon:
8ee5199a 1040 case amd64_x32_sys_swapon:
13b6d1d4
MS
1041 return gdb_sys_swapon;
1042
1043 case amd64_sys_swapoff:
8ee5199a 1044 case amd64_x32_sys_swapoff:
13b6d1d4
MS
1045 return gdb_sys_swapoff;
1046
1047 case amd64_sys_reboot:
8ee5199a 1048 case amd64_x32_sys_reboot:
13b6d1d4
MS
1049 return gdb_sys_reboot;
1050
1051 case amd64_sys_sethostname:
8ee5199a 1052 case amd64_x32_sys_sethostname:
13b6d1d4
MS
1053 return gdb_sys_sethostname;
1054
1055 case amd64_sys_setdomainname:
8ee5199a 1056 case amd64_x32_sys_setdomainname:
13b6d1d4
MS
1057 return gdb_sys_setdomainname;
1058
1059 case amd64_sys_iopl:
8ee5199a 1060 case amd64_x32_sys_iopl:
13b6d1d4
MS
1061 return gdb_sys_iopl;
1062
1063 case amd64_sys_ioperm:
8ee5199a 1064 case amd64_x32_sys_ioperm:
13b6d1d4
MS
1065 return gdb_sys_ioperm;
1066
1067 case amd64_sys_init_module:
8ee5199a 1068 case amd64_x32_sys_init_module:
13b6d1d4
MS
1069 return gdb_sys_init_module;
1070
1071 case amd64_sys_delete_module:
8ee5199a 1072 case amd64_x32_sys_delete_module:
13b6d1d4
MS
1073 return gdb_sys_delete_module;
1074
1075 case amd64_sys_quotactl:
8ee5199a 1076 case amd64_x32_sys_quotactl:
13b6d1d4
MS
1077 return gdb_sys_quotactl;
1078
1079 case amd64_sys_nfsservctl:
1080 return gdb_sys_nfsservctl;
1081
1082 case amd64_sys_gettid:
8ee5199a 1083 case amd64_x32_sys_gettid:
13b6d1d4
MS
1084 return gdb_sys_gettid;
1085
1086 case amd64_sys_readahead:
8ee5199a 1087 case amd64_x32_sys_readahead:
13b6d1d4
MS
1088 return gdb_sys_readahead;
1089
1090 case amd64_sys_setxattr:
8ee5199a 1091 case amd64_x32_sys_setxattr:
13b6d1d4
MS
1092 return gdb_sys_setxattr;
1093
1094 case amd64_sys_lsetxattr:
8ee5199a 1095 case amd64_x32_sys_lsetxattr:
13b6d1d4
MS
1096 return gdb_sys_lsetxattr;
1097
1098 case amd64_sys_fsetxattr:
8ee5199a 1099 case amd64_x32_sys_fsetxattr:
13b6d1d4
MS
1100 return gdb_sys_fsetxattr;
1101
1102 case amd64_sys_getxattr:
8ee5199a 1103 case amd64_x32_sys_getxattr:
13b6d1d4
MS
1104 return gdb_sys_getxattr;
1105
1106 case amd64_sys_lgetxattr:
8ee5199a 1107 case amd64_x32_sys_lgetxattr:
13b6d1d4
MS
1108 return gdb_sys_lgetxattr;
1109
1110 case amd64_sys_fgetxattr:
8ee5199a 1111 case amd64_x32_sys_fgetxattr:
13b6d1d4
MS
1112 return gdb_sys_fgetxattr;
1113
1114 case amd64_sys_listxattr:
8ee5199a 1115 case amd64_x32_sys_listxattr:
13b6d1d4
MS
1116 return gdb_sys_listxattr;
1117
1118 case amd64_sys_llistxattr:
8ee5199a 1119 case amd64_x32_sys_llistxattr:
13b6d1d4
MS
1120 return gdb_sys_llistxattr;
1121
1122 case amd64_sys_flistxattr:
8ee5199a 1123 case amd64_x32_sys_flistxattr:
13b6d1d4
MS
1124 return gdb_sys_flistxattr;
1125
1126 case amd64_sys_removexattr:
8ee5199a 1127 case amd64_x32_sys_removexattr:
13b6d1d4
MS
1128 return gdb_sys_removexattr;
1129
1130 case amd64_sys_lremovexattr:
8ee5199a 1131 case amd64_x32_sys_lremovexattr:
13b6d1d4
MS
1132 return gdb_sys_lremovexattr;
1133
1134 case amd64_sys_fremovexattr:
8ee5199a 1135 case amd64_x32_sys_fremovexattr:
13b6d1d4
MS
1136 return gdb_sys_fremovexattr;
1137
1138 case amd64_sys_tkill:
8ee5199a 1139 case amd64_x32_sys_tkill:
13b6d1d4
MS
1140 return gdb_sys_tkill;
1141
1142 case amd64_sys_time:
8ee5199a 1143 case amd64_x32_sys_time:
13b6d1d4
MS
1144 return gdb_sys_time;
1145
1146 case amd64_sys_futex:
8ee5199a 1147 case amd64_x32_sys_futex:
13b6d1d4
MS
1148 return gdb_sys_futex;
1149
1150 case amd64_sys_sched_setaffinity:
8ee5199a 1151 case amd64_x32_sys_sched_setaffinity:
13b6d1d4
MS
1152 return gdb_sys_sched_setaffinity;
1153
1154 case amd64_sys_sched_getaffinity:
8ee5199a 1155 case amd64_x32_sys_sched_getaffinity:
13b6d1d4
MS
1156 return gdb_sys_sched_getaffinity;
1157
1158 case amd64_sys_io_setup:
8ee5199a 1159 case amd64_x32_sys_io_setup:
13b6d1d4
MS
1160 return gdb_sys_io_setup;
1161
1162 case amd64_sys_io_destroy:
8ee5199a 1163 case amd64_x32_sys_io_destroy:
13b6d1d4
MS
1164 return gdb_sys_io_destroy;
1165
1166 case amd64_sys_io_getevents:
8ee5199a 1167 case amd64_x32_sys_io_getevents:
13b6d1d4
MS
1168 return gdb_sys_io_getevents;
1169
1170 case amd64_sys_io_submit:
8ee5199a 1171 case amd64_x32_sys_io_submit:
13b6d1d4
MS
1172 return gdb_sys_io_submit;
1173
1174 case amd64_sys_io_cancel:
8ee5199a 1175 case amd64_x32_sys_io_cancel:
13b6d1d4
MS
1176 return gdb_sys_io_cancel;
1177
1178 case amd64_sys_lookup_dcookie:
8ee5199a 1179 case amd64_x32_sys_lookup_dcookie:
13b6d1d4
MS
1180 return gdb_sys_lookup_dcookie;
1181
1182 case amd64_sys_epoll_create:
8ee5199a 1183 case amd64_x32_sys_epoll_create:
13b6d1d4
MS
1184 return gdb_sys_epoll_create;
1185
1186 case amd64_sys_remap_file_pages:
8ee5199a 1187 case amd64_x32_sys_remap_file_pages:
13b6d1d4
MS
1188 return gdb_sys_remap_file_pages;
1189
1190 case amd64_sys_getdents64:
8ee5199a 1191 case amd64_x32_sys_getdents64:
13b6d1d4
MS
1192 return gdb_sys_getdents64;
1193
1194 case amd64_sys_set_tid_address:
8ee5199a 1195 case amd64_x32_sys_set_tid_address:
13b6d1d4
MS
1196 return gdb_sys_set_tid_address;
1197
1198 case amd64_sys_restart_syscall:
8ee5199a 1199 case amd64_x32_sys_restart_syscall:
13b6d1d4
MS
1200 return gdb_sys_restart_syscall;
1201
1202 case amd64_sys_semtimedop:
8ee5199a 1203 case amd64_x32_sys_semtimedop:
13b6d1d4
MS
1204 return gdb_sys_semtimedop;
1205
1206 case amd64_sys_fadvise64:
8ee5199a 1207 case amd64_x32_sys_fadvise64:
13b6d1d4
MS
1208 return gdb_sys_fadvise64;
1209
1210 case amd64_sys_timer_create:
8ee5199a 1211 case amd64_x32_sys_timer_create:
13b6d1d4
MS
1212 return gdb_sys_timer_create;
1213
1214 case amd64_sys_timer_settime:
8ee5199a 1215 case amd64_x32_sys_timer_settime:
13b6d1d4
MS
1216 return gdb_sys_timer_settime;
1217
1218 case amd64_sys_timer_gettime:
8ee5199a 1219 case amd64_x32_sys_timer_gettime:
13b6d1d4
MS
1220 return gdb_sys_timer_gettime;
1221
1222 case amd64_sys_timer_getoverrun:
8ee5199a 1223 case amd64_x32_sys_timer_getoverrun:
13b6d1d4
MS
1224 return gdb_sys_timer_getoverrun;
1225
1226 case amd64_sys_timer_delete:
8ee5199a 1227 case amd64_x32_sys_timer_delete:
13b6d1d4
MS
1228 return gdb_sys_timer_delete;
1229
1230 case amd64_sys_clock_settime:
8ee5199a 1231 case amd64_x32_sys_clock_settime:
13b6d1d4
MS
1232 return gdb_sys_clock_settime;
1233
1234 case amd64_sys_clock_gettime:
8ee5199a 1235 case amd64_x32_sys_clock_gettime:
13b6d1d4
MS
1236 return gdb_sys_clock_gettime;
1237
1238 case amd64_sys_clock_getres:
8ee5199a 1239 case amd64_x32_sys_clock_getres:
13b6d1d4
MS
1240 return gdb_sys_clock_getres;
1241
1242 case amd64_sys_clock_nanosleep:
8ee5199a 1243 case amd64_x32_sys_clock_nanosleep:
13b6d1d4
MS
1244 return gdb_sys_clock_nanosleep;
1245
1246 case amd64_sys_exit_group:
8ee5199a 1247 case amd64_x32_sys_exit_group:
13b6d1d4
MS
1248 return gdb_sys_exit_group;
1249
1250 case amd64_sys_epoll_wait:
8ee5199a 1251 case amd64_x32_sys_epoll_wait:
13b6d1d4
MS
1252 return gdb_sys_epoll_wait;
1253
1254 case amd64_sys_epoll_ctl:
8ee5199a 1255 case amd64_x32_sys_epoll_ctl:
13b6d1d4
MS
1256 return gdb_sys_epoll_ctl;
1257
1258 case amd64_sys_tgkill:
8ee5199a 1259 case amd64_x32_sys_tgkill:
13b6d1d4
MS
1260 return gdb_sys_tgkill;
1261
1262 case amd64_sys_utimes:
8ee5199a 1263 case amd64_x32_sys_utimes:
13b6d1d4
MS
1264 return gdb_sys_utimes;
1265
1266 case amd64_sys_mbind:
8ee5199a 1267 case amd64_x32_sys_mbind:
13b6d1d4
MS
1268 return gdb_sys_mbind;
1269
1270 case amd64_sys_set_mempolicy:
8ee5199a 1271 case amd64_x32_sys_set_mempolicy:
13b6d1d4
MS
1272 return gdb_sys_set_mempolicy;
1273
1274 case amd64_sys_get_mempolicy:
8ee5199a 1275 case amd64_x32_sys_get_mempolicy:
13b6d1d4
MS
1276 return gdb_sys_get_mempolicy;
1277
1278 case amd64_sys_mq_open:
8ee5199a 1279 case amd64_x32_sys_mq_open:
13b6d1d4
MS
1280 return gdb_sys_mq_open;
1281
1282 case amd64_sys_mq_unlink:
8ee5199a 1283 case amd64_x32_sys_mq_unlink:
13b6d1d4
MS
1284 return gdb_sys_mq_unlink;
1285
1286 case amd64_sys_mq_timedsend:
8ee5199a 1287 case amd64_x32_sys_mq_timedsend:
13b6d1d4
MS
1288 return gdb_sys_mq_timedsend;
1289
1290 case amd64_sys_mq_timedreceive:
8ee5199a 1291 case amd64_x32_sys_mq_timedreceive:
13b6d1d4
MS
1292 return gdb_sys_mq_timedreceive;
1293
1294 case amd64_sys_mq_notify:
8ee5199a 1295 case amd64_x32_sys_mq_notify:
13b6d1d4
MS
1296 return gdb_sys_mq_notify;
1297
1298 case amd64_sys_mq_getsetattr:
8ee5199a 1299 case amd64_x32_sys_mq_getsetattr:
13b6d1d4
MS
1300 return gdb_sys_mq_getsetattr;
1301
1302 case amd64_sys_kexec_load:
8ee5199a 1303 case amd64_x32_sys_kexec_load:
13b6d1d4
MS
1304 return gdb_sys_kexec_load;
1305
1306 case amd64_sys_waitid:
8ee5199a 1307 case amd64_x32_sys_waitid:
13b6d1d4
MS
1308 return gdb_sys_waitid;
1309
1310 case amd64_sys_add_key:
8ee5199a 1311 case amd64_x32_sys_add_key:
13b6d1d4
MS
1312 return gdb_sys_add_key;
1313
1314 case amd64_sys_request_key:
8ee5199a 1315 case amd64_x32_sys_request_key:
13b6d1d4
MS
1316 return gdb_sys_request_key;
1317
1318 case amd64_sys_keyctl:
8ee5199a 1319 case amd64_x32_sys_keyctl:
13b6d1d4
MS
1320 return gdb_sys_keyctl;
1321
1322 case amd64_sys_ioprio_set:
8ee5199a 1323 case amd64_x32_sys_ioprio_set:
13b6d1d4
MS
1324 return gdb_sys_ioprio_set;
1325
1326 case amd64_sys_ioprio_get:
8ee5199a 1327 case amd64_x32_sys_ioprio_get:
13b6d1d4
MS
1328 return gdb_sys_ioprio_get;
1329
1330 case amd64_sys_inotify_init:
8ee5199a 1331 case amd64_x32_sys_inotify_init:
13b6d1d4
MS
1332 return gdb_sys_inotify_init;
1333
1334 case amd64_sys_inotify_add_watch:
8ee5199a 1335 case amd64_x32_sys_inotify_add_watch:
13b6d1d4
MS
1336 return gdb_sys_inotify_add_watch;
1337
1338 case amd64_sys_inotify_rm_watch:
8ee5199a 1339 case amd64_x32_sys_inotify_rm_watch:
13b6d1d4
MS
1340 return gdb_sys_inotify_rm_watch;
1341
1342 case amd64_sys_migrate_pages:
8ee5199a 1343 case amd64_x32_sys_migrate_pages:
13b6d1d4
MS
1344 return gdb_sys_migrate_pages;
1345
1346 case amd64_sys_openat:
8ee5199a 1347 case amd64_x32_sys_openat:
13b6d1d4
MS
1348 return gdb_sys_openat;
1349
1350 case amd64_sys_mkdirat:
8ee5199a 1351 case amd64_x32_sys_mkdirat:
13b6d1d4
MS
1352 return gdb_sys_mkdirat;
1353
1354 case amd64_sys_mknodat:
8ee5199a 1355 case amd64_x32_sys_mknodat:
13b6d1d4
MS
1356 return gdb_sys_mknodat;
1357
1358 case amd64_sys_fchownat:
8ee5199a 1359 case amd64_x32_sys_fchownat:
13b6d1d4
MS
1360 return gdb_sys_fchownat;
1361
1362 case amd64_sys_futimesat:
8ee5199a 1363 case amd64_x32_sys_futimesat:
13b6d1d4
MS
1364 return gdb_sys_futimesat;
1365
1366 case amd64_sys_newfstatat:
8ee5199a 1367 case amd64_x32_sys_newfstatat:
13b6d1d4
MS
1368 return gdb_sys_newfstatat;
1369
1370 case amd64_sys_unlinkat:
8ee5199a 1371 case amd64_x32_sys_unlinkat:
13b6d1d4
MS
1372 return gdb_sys_unlinkat;
1373
1374 case amd64_sys_renameat:
8ee5199a 1375 case amd64_x32_sys_renameat:
13b6d1d4
MS
1376 return gdb_sys_renameat;
1377
1378 case amd64_sys_linkat:
8ee5199a 1379 case amd64_x32_sys_linkat:
13b6d1d4
MS
1380 return gdb_sys_linkat;
1381
1382 case amd64_sys_symlinkat:
8ee5199a 1383 case amd64_x32_sys_symlinkat:
13b6d1d4
MS
1384 return gdb_sys_symlinkat;
1385
1386 case amd64_sys_readlinkat:
8ee5199a 1387 case amd64_x32_sys_readlinkat:
13b6d1d4
MS
1388 return gdb_sys_readlinkat;
1389
1390 case amd64_sys_fchmodat:
8ee5199a 1391 case amd64_x32_sys_fchmodat:
13b6d1d4
MS
1392 return gdb_sys_fchmodat;
1393
1394 case amd64_sys_faccessat:
8ee5199a 1395 case amd64_x32_sys_faccessat:
13b6d1d4
MS
1396 return gdb_sys_faccessat;
1397
1398 case amd64_sys_pselect6:
8ee5199a 1399 case amd64_x32_sys_pselect6:
13b6d1d4
MS
1400 return gdb_sys_pselect6;
1401
1402 case amd64_sys_ppoll:
8ee5199a 1403 case amd64_x32_sys_ppoll:
13b6d1d4
MS
1404 return gdb_sys_ppoll;
1405
1406 case amd64_sys_unshare:
8ee5199a 1407 case amd64_x32_sys_unshare:
13b6d1d4
MS
1408 return gdb_sys_unshare;
1409
1410 case amd64_sys_set_robust_list:
8ee5199a 1411 case amd64_x32_sys_set_robust_list:
13b6d1d4
MS
1412 return gdb_sys_set_robust_list;
1413
1414 case amd64_sys_get_robust_list:
8ee5199a 1415 case amd64_x32_sys_get_robust_list:
13b6d1d4
MS
1416 return gdb_sys_get_robust_list;
1417
1418 case amd64_sys_splice:
8ee5199a 1419 case amd64_x32_sys_splice:
13b6d1d4
MS
1420 return gdb_sys_splice;
1421
1422 case amd64_sys_tee:
8ee5199a 1423 case amd64_x32_sys_tee:
13b6d1d4
MS
1424 return gdb_sys_tee;
1425
1426 case amd64_sys_sync_file_range:
8ee5199a 1427 case amd64_x32_sys_sync_file_range:
13b6d1d4
MS
1428 return gdb_sys_sync_file_range;
1429
1430 case amd64_sys_vmsplice:
8ee5199a 1431 case amd64_x32_sys_vmsplice:
13b6d1d4
MS
1432 return gdb_sys_vmsplice;
1433
1434 case amd64_sys_move_pages:
8ee5199a 1435 case amd64_x32_sys_move_pages:
13b6d1d4
MS
1436 return gdb_sys_move_pages;
1437
1438 default:
1439 return -1;
1440 }
1441}
1442
cdfbdf30
HZ
1443/* Parse the arguments of current system call instruction and record
1444 the values of the registers and memory that will be changed into
25ea693b 1445 "record_full_arch_list". This instruction is "syscall".
cdfbdf30
HZ
1446
1447 Return -1 if something wrong. */
1448
1449static struct linux_record_tdep amd64_linux_record_tdep;
8ee5199a 1450static struct linux_record_tdep amd64_x32_linux_record_tdep;
cdfbdf30
HZ
1451
1452#define RECORD_ARCH_GET_FS 0x1003
1453#define RECORD_ARCH_GET_GS 0x1004
1454
952b2d63 1455static int
8ee5199a
L
1456amd64_linux_syscall_record_common (struct regcache *regcache,
1457 struct linux_record_tdep *linux_record_tdep_p)
952b2d63 1458{
13b6d1d4
MS
1459 int ret;
1460 ULONGEST syscall_native;
1461 enum gdb_syscall syscall_gdb = -1;
1462
1463 regcache_raw_read_unsigned (regcache, AMD64_RAX_REGNUM, &syscall_native);
952b2d63 1464
cdfbdf30 1465 switch (syscall_native)
952b2d63 1466 {
cdfbdf30 1467 case amd64_sys_rt_sigreturn:
8ee5199a 1468 case amd64_x32_sys_rt_sigreturn:
cdfbdf30
HZ
1469 if (amd64_all_but_ip_registers_record (regcache))
1470 return -1;
1471 return 0;
1472 break;
1473
1474 case amd64_sys_arch_prctl:
8ee5199a 1475 case amd64_x32_sys_arch_prctl:
f2c4ead5
MS
1476 {
1477 ULONGEST arg3;
8ee5199a 1478 regcache_raw_read_unsigned (regcache, linux_record_tdep_p->arg3,
f2c4ead5
MS
1479 &arg3);
1480 if (arg3 == RECORD_ARCH_GET_FS || arg3 == RECORD_ARCH_GET_GS)
1481 {
1482 CORE_ADDR addr;
1483
1484 regcache_raw_read_unsigned (regcache,
8ee5199a 1485 linux_record_tdep_p->arg2,
f2c4ead5 1486 &addr);
25ea693b 1487 if (record_full_arch_list_add_mem
8ee5199a 1488 (addr, linux_record_tdep_p->size_ulong))
f2c4ead5
MS
1489 return -1;
1490 }
1491 goto record_regs;
1492 }
cdfbdf30 1493 break;
13b6d1d4
MS
1494 }
1495
cdfbdf30
HZ
1496 syscall_gdb = amd64_canonicalize_syscall (syscall_native);
1497
13b6d1d4
MS
1498 if (syscall_gdb < 0)
1499 {
952b2d63 1500 printf_unfiltered (_("Process record and replay target doesn't "
13b6d1d4
MS
1501 "support syscall number %s\n"),
1502 pulongest (syscall_native));
952b2d63 1503 return -1;
952b2d63 1504 }
13b6d1d4 1505 else
952b2d63 1506 {
13b6d1d4 1507 ret = record_linux_system_call (syscall_gdb, regcache,
8ee5199a 1508 linux_record_tdep_p);
952b2d63
HZ
1509 if (ret)
1510 return ret;
1511 }
1512
13b6d1d4 1513 record_regs:
952b2d63 1514 /* Record the return value of the system call. */
25ea693b 1515 if (record_full_arch_list_add_reg (regcache, AMD64_RCX_REGNUM))
952b2d63 1516 return -1;
25ea693b 1517 if (record_full_arch_list_add_reg (regcache, AMD64_R11_REGNUM))
952b2d63
HZ
1518 return -1;
1519
cdfbdf30
HZ
1520 return 0;
1521}
1522
8ee5199a
L
1523static int
1524amd64_linux_syscall_record (struct regcache *regcache)
1525{
1526 return amd64_linux_syscall_record_common (regcache,
1527 &amd64_linux_record_tdep);
1528}
1529
1530static int
1531amd64_x32_linux_syscall_record (struct regcache *regcache)
1532{
1533 return amd64_linux_syscall_record_common (regcache,
1534 &amd64_x32_linux_record_tdep);
1535}
1536
cdfbdf30
HZ
1537#define AMD64_LINUX_redzone 128
1538#define AMD64_LINUX_xstate 512
1539#define AMD64_LINUX_frame_size 560
1540
70221824 1541static int
cdfbdf30
HZ
1542amd64_linux_record_signal (struct gdbarch *gdbarch,
1543 struct regcache *regcache,
2ea28649 1544 enum gdb_signal signal)
cdfbdf30
HZ
1545{
1546 ULONGEST rsp;
1547
1548 if (amd64_all_but_ip_registers_record (regcache))
1549 return -1;
1550
25ea693b 1551 if (record_full_arch_list_add_reg (regcache, AMD64_RIP_REGNUM))
cdfbdf30
HZ
1552 return -1;
1553
1554 /* Record the change in the stack. */
1555 regcache_raw_read_unsigned (regcache, AMD64_RSP_REGNUM, &rsp);
1556 /* redzone
1557 sp -= 128; */
1558 rsp -= AMD64_LINUX_redzone;
1559 /* This is for xstate.
1560 sp -= sizeof (struct _fpstate); */
1561 rsp -= AMD64_LINUX_xstate;
1562 /* This is for frame_size.
1563 sp -= sizeof (struct rt_sigframe); */
1564 rsp -= AMD64_LINUX_frame_size;
25ea693b 1565 if (record_full_arch_list_add_mem (rsp, AMD64_LINUX_redzone
cdfbdf30
HZ
1566 + AMD64_LINUX_xstate
1567 + AMD64_LINUX_frame_size))
1568 return -1;
1569
25ea693b 1570 if (record_full_arch_list_add_end ())
cdfbdf30 1571 return -1;
952b2d63
HZ
1572
1573 return 0;
1574}
1575
90884b2b
L
1576/* Get Linux/x86 target description from core dump. */
1577
1578static const struct target_desc *
1579amd64_linux_core_read_description (struct gdbarch *gdbarch,
1580 struct target_ops *target,
1581 bfd *abfd)
1582{
90884b2b 1583 /* Linux/x86-64. */
6df81a63 1584 uint64_t xcr0 = i386_linux_core_read_xcr0 (abfd);
e43e105e 1585
df7e5265 1586 switch (xcr0 & X86_XSTATE_ALL_MASK)
f335d1b3 1587 {
df7e5265
GB
1588 case X86_XSTATE_MPX_AVX512_MASK:
1589 case X86_XSTATE_AVX512_MASK:
01f9f808
MS
1590 if (gdbarch_ptr_bit (gdbarch) == 32)
1591 return tdesc_x32_avx512_linux;
1592 else
1593 return tdesc_amd64_avx512_linux;
df7e5265 1594 case X86_XSTATE_MPX_MASK:
e43e105e
WT
1595 if (gdbarch_ptr_bit (gdbarch) == 32)
1596 return tdesc_x32_avx_linux; /* No x32 MPX falling back to AVX. */
1597 else
1598 return tdesc_amd64_mpx_linux;
df7e5265 1599 case X86_XSTATE_AVX_MASK:
0288cee2
L
1600 if (gdbarch_ptr_bit (gdbarch) == 32)
1601 return tdesc_x32_avx_linux;
1602 else
1603 return tdesc_amd64_avx_linux;
f335d1b3 1604 default:
0288cee2
L
1605 if (gdbarch_ptr_bit (gdbarch) == 32)
1606 return tdesc_x32_linux;
1607 else
1608 return tdesc_amd64_linux;
f335d1b3 1609 }
90884b2b
L
1610}
1611
2213a65d 1612static void
5a83521a 1613amd64_linux_init_abi_common(struct gdbarch_info info, struct gdbarch *gdbarch)
2213a65d 1614{
c4f35dd8 1615 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
187e21d1 1616
a5ee0f0c
PA
1617 linux_init_abi (info, gdbarch);
1618
911bc6ee 1619 tdep->sigtramp_p = amd64_linux_sigtramp_p;
51433e4b
MK
1620 tdep->sigcontext_addr = amd64_linux_sigcontext_addr;
1621 tdep->sc_reg_offset = amd64_linux_sc_reg_offset;
1622 tdep->sc_num_regs = ARRAY_SIZE (amd64_linux_sc_reg_offset);
187e21d1 1623
a055a187
L
1624 tdep->xsave_xcr0_offset = I386_LINUX_XSAVE_XCR0_OFFSET;
1625
8695c747
DJ
1626 /* Add the %orig_rax register used for syscall restarting. */
1627 set_gdbarch_write_pc (gdbarch, amd64_linux_write_pc);
90884b2b
L
1628
1629 tdep->register_reggroup_p = amd64_linux_register_reggroup_p;
8695c747 1630
a96d9b2e
SDJ
1631 /* Functions for 'catch syscall'. */
1632 set_xml_syscall_file_name (XML_SYSCALL_FILENAME_AMD64);
1633 set_gdbarch_get_syscall_number (gdbarch,
1634 amd64_linux_get_syscall_number);
1635
b2756930
KB
1636 /* Enable TLS support. */
1637 set_gdbarch_fetch_tls_load_module_address (gdbarch,
1638 svr4_fetch_objfile_link_map);
35669430 1639
872761f4
MS
1640 /* GNU/Linux uses SVR4-style shared libraries. */
1641 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
1642
545c08b4
PA
1643 /* GNU/Linux uses the dynamic linker included in the GNU C Library. */
1644 set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);
1645
a055a187
L
1646 /* Install supported register note sections. */
1647 set_gdbarch_core_regset_sections (gdbarch, amd64_linux_regset_sections);
1648
90884b2b
L
1649 set_gdbarch_core_read_description (gdbarch,
1650 amd64_linux_core_read_description);
1651
35669430
DE
1652 /* Displaced stepping. */
1653 set_gdbarch_displaced_step_copy_insn (gdbarch,
1654 amd64_displaced_step_copy_insn);
1655 set_gdbarch_displaced_step_fixup (gdbarch, amd64_displaced_step_fixup);
1656 set_gdbarch_displaced_step_free_closure (gdbarch,
1657 simple_displaced_step_free_closure);
1658 set_gdbarch_displaced_step_location (gdbarch,
1659 displaced_step_at_entry_point);
4aa995e1
PA
1660
1661 set_gdbarch_get_siginfo_type (gdbarch, linux_get_siginfo_type);
952b2d63
HZ
1662
1663 set_gdbarch_process_record (gdbarch, i386_process_record);
cdfbdf30 1664 set_gdbarch_process_record_signal (gdbarch, amd64_linux_record_signal);
8ee5199a
L
1665}
1666
1667static void
1668amd64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1669{
1670 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1671 const struct target_desc *tdesc = info.target_desc;
1672 struct tdesc_arch_data *tdesc_data = (void *) info.tdep_info;
1673 const struct tdesc_feature *feature;
1674 int valid_p;
1675
1676 gdb_assert (tdesc_data);
1677
1678 tdep->gregset_reg_offset = amd64_linux_gregset_reg_offset;
1679 tdep->gregset_num_regs = ARRAY_SIZE (amd64_linux_gregset_reg_offset);
1680 tdep->sizeof_gregset = 27 * 8;
1681
1682 amd64_init_abi (info, gdbarch);
1683
1684 /* Reserve a number for orig_rax. */
1685 set_gdbarch_num_regs (gdbarch, AMD64_LINUX_NUM_REGS);
1686
1687 if (! tdesc_has_registers (tdesc))
1688 tdesc = tdesc_amd64_linux;
1689 tdep->tdesc = tdesc;
1690
1691 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.linux");
1692 if (feature == NULL)
1693 return;
1694
1695 valid_p = tdesc_numbered_register (feature, tdesc_data,
1696 AMD64_LINUX_ORIG_RAX_REGNUM,
1697 "orig_rax");
1698 if (!valid_p)
1699 return;
1700
1701 amd64_linux_init_abi_common (info, gdbarch);
952b2d63
HZ
1702
1703 /* Initialize the amd64_linux_record_tdep. */
1704 /* These values are the size of the type that will be used in a system
1705 call. They are obtained from Linux Kernel source. */
1706 amd64_linux_record_tdep.size_pointer
1707 = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
1708 amd64_linux_record_tdep.size__old_kernel_stat = 32;
1709 amd64_linux_record_tdep.size_tms = 32;
1710 amd64_linux_record_tdep.size_loff_t = 8;
1711 amd64_linux_record_tdep.size_flock = 32;
1712 amd64_linux_record_tdep.size_oldold_utsname = 45;
1713 amd64_linux_record_tdep.size_ustat = 32;
1714 /* ADM64 doesn't need this size because it doesn't have sys_sigaction
1715 but sys_rt_sigaction. */
1716 amd64_linux_record_tdep.size_old_sigaction = 152;
1717 /* ADM64 doesn't need this size because it doesn't have sys_sigpending
1718 but sys_rt_sigpending. */
1719 amd64_linux_record_tdep.size_old_sigset_t = 128;
1720 amd64_linux_record_tdep.size_rlimit = 16;
1721 amd64_linux_record_tdep.size_rusage = 144;
1722 amd64_linux_record_tdep.size_timeval = 16;
1723 amd64_linux_record_tdep.size_timezone = 8;
1724 /* ADM64 doesn't need this size because it doesn't have sys_getgroups16
1725 but sys_getgroups. */
1726 amd64_linux_record_tdep.size_old_gid_t = 2;
1727 /* ADM64 doesn't need this size because it doesn't have sys_getresuid16
1728 but sys_getresuid. */
1729 amd64_linux_record_tdep.size_old_uid_t = 2;
1730 amd64_linux_record_tdep.size_fd_set = 128;
1731 amd64_linux_record_tdep.size_dirent = 280;
1732 amd64_linux_record_tdep.size_dirent64 = 280;
1733 amd64_linux_record_tdep.size_statfs = 120;
1734 amd64_linux_record_tdep.size_statfs64 = 120;
1735 amd64_linux_record_tdep.size_sockaddr = 16;
1736 amd64_linux_record_tdep.size_int
1737 = gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT;
1738 amd64_linux_record_tdep.size_long
1739 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
1740 amd64_linux_record_tdep.size_ulong
1741 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
1742 amd64_linux_record_tdep.size_msghdr = 56;
1743 amd64_linux_record_tdep.size_itimerval = 32;
1744 amd64_linux_record_tdep.size_stat = 144;
1745 amd64_linux_record_tdep.size_old_utsname = 325;
1746 amd64_linux_record_tdep.size_sysinfo = 112;
1747 amd64_linux_record_tdep.size_msqid_ds = 120;
1748 amd64_linux_record_tdep.size_shmid_ds = 112;
1749 amd64_linux_record_tdep.size_new_utsname = 390;
1750 amd64_linux_record_tdep.size_timex = 208;
1751 amd64_linux_record_tdep.size_mem_dqinfo = 24;
1752 amd64_linux_record_tdep.size_if_dqblk = 72;
1753 amd64_linux_record_tdep.size_fs_quota_stat = 80;
1754 amd64_linux_record_tdep.size_timespec = 16;
1755 amd64_linux_record_tdep.size_pollfd = 8;
1756 amd64_linux_record_tdep.size_NFS_FHSIZE = 32;
1757 amd64_linux_record_tdep.size_knfsd_fh = 132;
1758 amd64_linux_record_tdep.size_TASK_COMM_LEN = 16;
1759 amd64_linux_record_tdep.size_sigaction = 152;
1760 amd64_linux_record_tdep.size_sigset_t = 128;
1761 amd64_linux_record_tdep.size_siginfo_t = 128;
1762 amd64_linux_record_tdep.size_cap_user_data_t = 8;
1763 amd64_linux_record_tdep.size_stack_t = 24;
1764 amd64_linux_record_tdep.size_off_t = 8;
1765 amd64_linux_record_tdep.size_stat64 = 144;
1766 amd64_linux_record_tdep.size_gid_t = 4;
1767 amd64_linux_record_tdep.size_uid_t = 4;
1768 amd64_linux_record_tdep.size_PAGE_SIZE = 4096;
1769 amd64_linux_record_tdep.size_flock64 = 32;
1770 amd64_linux_record_tdep.size_user_desc = 16;
1771 amd64_linux_record_tdep.size_io_event = 32;
1772 amd64_linux_record_tdep.size_iocb = 64;
1773 amd64_linux_record_tdep.size_epoll_event = 12;
1774 amd64_linux_record_tdep.size_itimerspec = 32;
1775 amd64_linux_record_tdep.size_mq_attr = 64;
1776 amd64_linux_record_tdep.size_siginfo = 128;
1777 amd64_linux_record_tdep.size_termios = 60;
1778 amd64_linux_record_tdep.size_termios2 = 44;
1779 amd64_linux_record_tdep.size_pid_t = 4;
1780 amd64_linux_record_tdep.size_winsize = 8;
1781 amd64_linux_record_tdep.size_serial_struct = 72;
1782 amd64_linux_record_tdep.size_serial_icounter_struct = 80;
1783 amd64_linux_record_tdep.size_hayes_esp_config = 12;
1784 amd64_linux_record_tdep.size_size_t = 8;
1785 amd64_linux_record_tdep.size_iovec = 16;
1786
8ee5199a
L
1787 /* These values are the second argument of system call "sys_fcntl"
1788 and "sys_fcntl64". They are obtained from Linux Kernel source. */
1789 amd64_linux_record_tdep.fcntl_F_GETLK = 5;
1790 amd64_linux_record_tdep.fcntl_F_GETLK64 = 12;
1791 amd64_linux_record_tdep.fcntl_F_SETLK64 = 13;
1792 amd64_linux_record_tdep.fcntl_F_SETLKW64 = 14;
1793
1794 amd64_linux_record_tdep.arg1 = AMD64_RDI_REGNUM;
1795 amd64_linux_record_tdep.arg2 = AMD64_RSI_REGNUM;
1796 amd64_linux_record_tdep.arg3 = AMD64_RDX_REGNUM;
1797 amd64_linux_record_tdep.arg4 = AMD64_R10_REGNUM;
1798 amd64_linux_record_tdep.arg5 = AMD64_R8_REGNUM;
1799 amd64_linux_record_tdep.arg6 = AMD64_R9_REGNUM;
1800
952b2d63
HZ
1801 /* These values are the second argument of system call "sys_ioctl".
1802 They are obtained from Linux Kernel source. */
1803 amd64_linux_record_tdep.ioctl_TCGETS = 0x5401;
1804 amd64_linux_record_tdep.ioctl_TCSETS = 0x5402;
1805 amd64_linux_record_tdep.ioctl_TCSETSW = 0x5403;
1806 amd64_linux_record_tdep.ioctl_TCSETSF = 0x5404;
1807 amd64_linux_record_tdep.ioctl_TCGETA = 0x5405;
1808 amd64_linux_record_tdep.ioctl_TCSETA = 0x5406;
1809 amd64_linux_record_tdep.ioctl_TCSETAW = 0x5407;
1810 amd64_linux_record_tdep.ioctl_TCSETAF = 0x5408;
1811 amd64_linux_record_tdep.ioctl_TCSBRK = 0x5409;
1812 amd64_linux_record_tdep.ioctl_TCXONC = 0x540A;
1813 amd64_linux_record_tdep.ioctl_TCFLSH = 0x540B;
1814 amd64_linux_record_tdep.ioctl_TIOCEXCL = 0x540C;
1815 amd64_linux_record_tdep.ioctl_TIOCNXCL = 0x540D;
1816 amd64_linux_record_tdep.ioctl_TIOCSCTTY = 0x540E;
1817 amd64_linux_record_tdep.ioctl_TIOCGPGRP = 0x540F;
1818 amd64_linux_record_tdep.ioctl_TIOCSPGRP = 0x5410;
1819 amd64_linux_record_tdep.ioctl_TIOCOUTQ = 0x5411;
1820 amd64_linux_record_tdep.ioctl_TIOCSTI = 0x5412;
1821 amd64_linux_record_tdep.ioctl_TIOCGWINSZ = 0x5413;
1822 amd64_linux_record_tdep.ioctl_TIOCSWINSZ = 0x5414;
1823 amd64_linux_record_tdep.ioctl_TIOCMGET = 0x5415;
1824 amd64_linux_record_tdep.ioctl_TIOCMBIS = 0x5416;
1825 amd64_linux_record_tdep.ioctl_TIOCMBIC = 0x5417;
1826 amd64_linux_record_tdep.ioctl_TIOCMSET = 0x5418;
1827 amd64_linux_record_tdep.ioctl_TIOCGSOFTCAR = 0x5419;
1828 amd64_linux_record_tdep.ioctl_TIOCSSOFTCAR = 0x541A;
1829 amd64_linux_record_tdep.ioctl_FIONREAD = 0x541B;
1830 amd64_linux_record_tdep.ioctl_TIOCINQ
1831 = amd64_linux_record_tdep.ioctl_FIONREAD;
1832 amd64_linux_record_tdep.ioctl_TIOCLINUX = 0x541C;
1833 amd64_linux_record_tdep.ioctl_TIOCCONS = 0x541D;
1834 amd64_linux_record_tdep.ioctl_TIOCGSERIAL = 0x541E;
1835 amd64_linux_record_tdep.ioctl_TIOCSSERIAL = 0x541F;
1836 amd64_linux_record_tdep.ioctl_TIOCPKT = 0x5420;
1837 amd64_linux_record_tdep.ioctl_FIONBIO = 0x5421;
1838 amd64_linux_record_tdep.ioctl_TIOCNOTTY = 0x5422;
1839 amd64_linux_record_tdep.ioctl_TIOCSETD = 0x5423;
1840 amd64_linux_record_tdep.ioctl_TIOCGETD = 0x5424;
1841 amd64_linux_record_tdep.ioctl_TCSBRKP = 0x5425;
1842 amd64_linux_record_tdep.ioctl_TIOCTTYGSTRUCT = 0x5426;
1843 amd64_linux_record_tdep.ioctl_TIOCSBRK = 0x5427;
1844 amd64_linux_record_tdep.ioctl_TIOCCBRK = 0x5428;
1845 amd64_linux_record_tdep.ioctl_TIOCGSID = 0x5429;
1846 amd64_linux_record_tdep.ioctl_TCGETS2 = 0x802c542a;
1847 amd64_linux_record_tdep.ioctl_TCSETS2 = 0x402c542b;
1848 amd64_linux_record_tdep.ioctl_TCSETSW2 = 0x402c542c;
1849 amd64_linux_record_tdep.ioctl_TCSETSF2 = 0x402c542d;
1850 amd64_linux_record_tdep.ioctl_TIOCGPTN = 0x80045430;
1851 amd64_linux_record_tdep.ioctl_TIOCSPTLCK = 0x40045431;
1852 amd64_linux_record_tdep.ioctl_FIONCLEX = 0x5450;
1853 amd64_linux_record_tdep.ioctl_FIOCLEX = 0x5451;
1854 amd64_linux_record_tdep.ioctl_FIOASYNC = 0x5452;
1855 amd64_linux_record_tdep.ioctl_TIOCSERCONFIG = 0x5453;
1856 amd64_linux_record_tdep.ioctl_TIOCSERGWILD = 0x5454;
1857 amd64_linux_record_tdep.ioctl_TIOCSERSWILD = 0x5455;
1858 amd64_linux_record_tdep.ioctl_TIOCGLCKTRMIOS = 0x5456;
1859 amd64_linux_record_tdep.ioctl_TIOCSLCKTRMIOS = 0x5457;
1860 amd64_linux_record_tdep.ioctl_TIOCSERGSTRUCT = 0x5458;
1861 amd64_linux_record_tdep.ioctl_TIOCSERGETLSR = 0x5459;
1862 amd64_linux_record_tdep.ioctl_TIOCSERGETMULTI = 0x545A;
1863 amd64_linux_record_tdep.ioctl_TIOCSERSETMULTI = 0x545B;
1864 amd64_linux_record_tdep.ioctl_TIOCMIWAIT = 0x545C;
1865 amd64_linux_record_tdep.ioctl_TIOCGICOUNT = 0x545D;
1866 amd64_linux_record_tdep.ioctl_TIOCGHAYESESP = 0x545E;
1867 amd64_linux_record_tdep.ioctl_TIOCSHAYESESP = 0x545F;
1868 amd64_linux_record_tdep.ioctl_FIOQSIZE = 0x5460;
1869
952b2d63 1870 tdep->i386_syscall_record = amd64_linux_syscall_record;
5a83521a
MK
1871
1872 /* GNU/Linux uses SVR4-style shared libraries. */
1873 set_solib_svr4_fetch_link_map_offsets
1874 (gdbarch, svr4_lp64_fetch_link_map_offsets);
1875}
1876
1877static void
1878amd64_x32_linux_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch)
1879{
1880 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1881 const struct target_desc *tdesc = info.target_desc;
1882 struct tdesc_arch_data *tdesc_data = (void *) info.tdep_info;
1883 const struct tdesc_feature *feature;
1884 int valid_p;
1885
1886 gdb_assert (tdesc_data);
1887
1888 tdep->gregset_reg_offset = amd64_linux_gregset_reg_offset;
1889 tdep->gregset_num_regs = ARRAY_SIZE (amd64_linux_gregset_reg_offset);
1890 tdep->sizeof_gregset = 27 * 8;
1891
1892 amd64_x32_init_abi (info, gdbarch);
1893
1894 /* Reserve a number for orig_rax. */
1895 set_gdbarch_num_regs (gdbarch, AMD64_LINUX_NUM_REGS);
1896
1897 if (! tdesc_has_registers (tdesc))
1898 tdesc = tdesc_x32_linux;
1899 tdep->tdesc = tdesc;
1900
1901 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.linux");
1902 if (feature == NULL)
1903 return;
1904
1905 valid_p = tdesc_numbered_register (feature, tdesc_data,
1906 AMD64_LINUX_ORIG_RAX_REGNUM,
1907 "orig_rax");
1908 if (!valid_p)
1909 return;
1910
1911 amd64_linux_init_abi_common (info, gdbarch);
1912
8ee5199a
L
1913 /* Initialize the amd64_x32_linux_record_tdep. */
1914 /* These values are the size of the type that will be used in a system
1915 call. They are obtained from Linux Kernel source. */
1916 amd64_x32_linux_record_tdep.size_pointer
1917 = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
1918 amd64_x32_linux_record_tdep.size__old_kernel_stat = 32;
1919 amd64_x32_linux_record_tdep.size_tms = 32;
1920 amd64_x32_linux_record_tdep.size_loff_t = 8;
1921 amd64_x32_linux_record_tdep.size_flock = 32;
1922 amd64_x32_linux_record_tdep.size_oldold_utsname = 45;
1923 amd64_x32_linux_record_tdep.size_ustat = 32;
1924 /* ADM64 doesn't need this size because it doesn't have sys_sigaction
1925 but sys_rt_sigaction. */
1926 amd64_x32_linux_record_tdep.size_old_sigaction = 152;
1927 /* ADM64 doesn't need this size because it doesn't have sys_sigpending
1928 but sys_rt_sigpending. */
1929 amd64_x32_linux_record_tdep.size_old_sigset_t = 128;
1930 amd64_x32_linux_record_tdep.size_rlimit = 16;
1931 amd64_x32_linux_record_tdep.size_rusage = 144;
1932 amd64_x32_linux_record_tdep.size_timeval = 16;
1933 amd64_x32_linux_record_tdep.size_timezone = 8;
1934 /* ADM64 doesn't need this size because it doesn't have sys_getgroups16
1935 but sys_getgroups. */
1936 amd64_x32_linux_record_tdep.size_old_gid_t = 2;
1937 /* ADM64 doesn't need this size because it doesn't have sys_getresuid16
1938 but sys_getresuid. */
1939 amd64_x32_linux_record_tdep.size_old_uid_t = 2;
1940 amd64_x32_linux_record_tdep.size_fd_set = 128;
1941 amd64_x32_linux_record_tdep.size_dirent = 280;
1942 amd64_x32_linux_record_tdep.size_dirent64 = 280;
1943 amd64_x32_linux_record_tdep.size_statfs = 120;
1944 amd64_x32_linux_record_tdep.size_statfs64 = 120;
1945 amd64_x32_linux_record_tdep.size_sockaddr = 16;
1946 amd64_x32_linux_record_tdep.size_int
1947 = gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT;
1948 amd64_x32_linux_record_tdep.size_long
1949 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
1950 amd64_x32_linux_record_tdep.size_ulong
1951 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
1952 amd64_x32_linux_record_tdep.size_msghdr = 56;
1953 amd64_x32_linux_record_tdep.size_itimerval = 32;
1954 amd64_x32_linux_record_tdep.size_stat = 144;
1955 amd64_x32_linux_record_tdep.size_old_utsname = 325;
1956 amd64_x32_linux_record_tdep.size_sysinfo = 112;
1957 amd64_x32_linux_record_tdep.size_msqid_ds = 120;
1958 amd64_x32_linux_record_tdep.size_shmid_ds = 112;
1959 amd64_x32_linux_record_tdep.size_new_utsname = 390;
1960 amd64_x32_linux_record_tdep.size_timex = 208;
1961 amd64_x32_linux_record_tdep.size_mem_dqinfo = 24;
1962 amd64_x32_linux_record_tdep.size_if_dqblk = 72;
1963 amd64_x32_linux_record_tdep.size_fs_quota_stat = 80;
1964 amd64_x32_linux_record_tdep.size_timespec = 16;
1965 amd64_x32_linux_record_tdep.size_pollfd = 8;
1966 amd64_x32_linux_record_tdep.size_NFS_FHSIZE = 32;
1967 amd64_x32_linux_record_tdep.size_knfsd_fh = 132;
1968 amd64_x32_linux_record_tdep.size_TASK_COMM_LEN = 16;
1969 amd64_x32_linux_record_tdep.size_sigaction = 152;
1970 amd64_x32_linux_record_tdep.size_sigset_t = 128;
1971 amd64_x32_linux_record_tdep.size_siginfo_t = 128;
1972 amd64_x32_linux_record_tdep.size_cap_user_data_t = 8;
1973 amd64_x32_linux_record_tdep.size_stack_t = 24;
1974 amd64_x32_linux_record_tdep.size_off_t = 8;
1975 amd64_x32_linux_record_tdep.size_stat64 = 144;
1976 amd64_x32_linux_record_tdep.size_gid_t = 4;
1977 amd64_x32_linux_record_tdep.size_uid_t = 4;
1978 amd64_x32_linux_record_tdep.size_PAGE_SIZE = 4096;
1979 amd64_x32_linux_record_tdep.size_flock64 = 32;
1980 amd64_x32_linux_record_tdep.size_user_desc = 16;
1981 amd64_x32_linux_record_tdep.size_io_event = 32;
1982 amd64_x32_linux_record_tdep.size_iocb = 64;
1983 amd64_x32_linux_record_tdep.size_epoll_event = 12;
1984 amd64_x32_linux_record_tdep.size_itimerspec = 32;
1985 amd64_x32_linux_record_tdep.size_mq_attr = 64;
1986 amd64_x32_linux_record_tdep.size_siginfo = 128;
1987 amd64_x32_linux_record_tdep.size_termios = 60;
1988 amd64_x32_linux_record_tdep.size_termios2 = 44;
1989 amd64_x32_linux_record_tdep.size_pid_t = 4;
1990 amd64_x32_linux_record_tdep.size_winsize = 8;
1991 amd64_x32_linux_record_tdep.size_serial_struct = 72;
1992 amd64_x32_linux_record_tdep.size_serial_icounter_struct = 80;
1993 amd64_x32_linux_record_tdep.size_hayes_esp_config = 12;
1994 amd64_x32_linux_record_tdep.size_size_t = 8;
1995 amd64_x32_linux_record_tdep.size_iovec = 16;
1996
1997 /* These values are the second argument of system call "sys_fcntl"
1998 and "sys_fcntl64". They are obtained from Linux Kernel source. */
1999 amd64_x32_linux_record_tdep.fcntl_F_GETLK = 5;
2000 amd64_x32_linux_record_tdep.fcntl_F_GETLK64 = 12;
2001 amd64_x32_linux_record_tdep.fcntl_F_SETLK64 = 13;
2002 amd64_x32_linux_record_tdep.fcntl_F_SETLKW64 = 14;
2003
2004 amd64_x32_linux_record_tdep.arg1 = AMD64_RDI_REGNUM;
2005 amd64_x32_linux_record_tdep.arg2 = AMD64_RSI_REGNUM;
2006 amd64_x32_linux_record_tdep.arg3 = AMD64_RDX_REGNUM;
2007 amd64_x32_linux_record_tdep.arg4 = AMD64_R10_REGNUM;
2008 amd64_x32_linux_record_tdep.arg5 = AMD64_R8_REGNUM;
2009 amd64_x32_linux_record_tdep.arg6 = AMD64_R9_REGNUM;
2010
2011 /* These values are the second argument of system call "sys_ioctl".
2012 They are obtained from Linux Kernel source. */
2013 amd64_x32_linux_record_tdep.ioctl_TCGETS = 0x5401;
2014 amd64_x32_linux_record_tdep.ioctl_TCSETS = 0x5402;
2015 amd64_x32_linux_record_tdep.ioctl_TCSETSW = 0x5403;
2016 amd64_x32_linux_record_tdep.ioctl_TCSETSF = 0x5404;
2017 amd64_x32_linux_record_tdep.ioctl_TCGETA = 0x5405;
2018 amd64_x32_linux_record_tdep.ioctl_TCSETA = 0x5406;
2019 amd64_x32_linux_record_tdep.ioctl_TCSETAW = 0x5407;
2020 amd64_x32_linux_record_tdep.ioctl_TCSETAF = 0x5408;
2021 amd64_x32_linux_record_tdep.ioctl_TCSBRK = 0x5409;
2022 amd64_x32_linux_record_tdep.ioctl_TCXONC = 0x540A;
2023 amd64_x32_linux_record_tdep.ioctl_TCFLSH = 0x540B;
2024 amd64_x32_linux_record_tdep.ioctl_TIOCEXCL = 0x540C;
2025 amd64_x32_linux_record_tdep.ioctl_TIOCNXCL = 0x540D;
2026 amd64_x32_linux_record_tdep.ioctl_TIOCSCTTY = 0x540E;
2027 amd64_x32_linux_record_tdep.ioctl_TIOCGPGRP = 0x540F;
2028 amd64_x32_linux_record_tdep.ioctl_TIOCSPGRP = 0x5410;
2029 amd64_x32_linux_record_tdep.ioctl_TIOCOUTQ = 0x5411;
2030 amd64_x32_linux_record_tdep.ioctl_TIOCSTI = 0x5412;
2031 amd64_x32_linux_record_tdep.ioctl_TIOCGWINSZ = 0x5413;
2032 amd64_x32_linux_record_tdep.ioctl_TIOCSWINSZ = 0x5414;
2033 amd64_x32_linux_record_tdep.ioctl_TIOCMGET = 0x5415;
2034 amd64_x32_linux_record_tdep.ioctl_TIOCMBIS = 0x5416;
2035 amd64_x32_linux_record_tdep.ioctl_TIOCMBIC = 0x5417;
2036 amd64_x32_linux_record_tdep.ioctl_TIOCMSET = 0x5418;
2037 amd64_x32_linux_record_tdep.ioctl_TIOCGSOFTCAR = 0x5419;
2038 amd64_x32_linux_record_tdep.ioctl_TIOCSSOFTCAR = 0x541A;
2039 amd64_x32_linux_record_tdep.ioctl_FIONREAD = 0x541B;
2040 amd64_x32_linux_record_tdep.ioctl_TIOCINQ = amd64_x32_linux_record_tdep.ioctl_FIONREAD;
2041 amd64_x32_linux_record_tdep.ioctl_TIOCLINUX = 0x541C;
2042 amd64_x32_linux_record_tdep.ioctl_TIOCCONS = 0x541D;
2043 amd64_x32_linux_record_tdep.ioctl_TIOCGSERIAL = 0x541E;
2044 amd64_x32_linux_record_tdep.ioctl_TIOCSSERIAL = 0x541F;
2045 amd64_x32_linux_record_tdep.ioctl_TIOCPKT = 0x5420;
2046 amd64_x32_linux_record_tdep.ioctl_FIONBIO = 0x5421;
2047 amd64_x32_linux_record_tdep.ioctl_TIOCNOTTY = 0x5422;
2048 amd64_x32_linux_record_tdep.ioctl_TIOCSETD = 0x5423;
2049 amd64_x32_linux_record_tdep.ioctl_TIOCGETD = 0x5424;
2050 amd64_x32_linux_record_tdep.ioctl_TCSBRKP = 0x5425;
2051 amd64_x32_linux_record_tdep.ioctl_TIOCTTYGSTRUCT = 0x5426;
2052 amd64_x32_linux_record_tdep.ioctl_TIOCSBRK = 0x5427;
2053 amd64_x32_linux_record_tdep.ioctl_TIOCCBRK = 0x5428;
2054 amd64_x32_linux_record_tdep.ioctl_TIOCGSID = 0x5429;
2055 amd64_x32_linux_record_tdep.ioctl_TCGETS2 = 0x802c542a;
2056 amd64_x32_linux_record_tdep.ioctl_TCSETS2 = 0x402c542b;
2057 amd64_x32_linux_record_tdep.ioctl_TCSETSW2 = 0x402c542c;
2058 amd64_x32_linux_record_tdep.ioctl_TCSETSF2 = 0x402c542d;
2059 amd64_x32_linux_record_tdep.ioctl_TIOCGPTN = 0x80045430;
2060 amd64_x32_linux_record_tdep.ioctl_TIOCSPTLCK = 0x40045431;
2061 amd64_x32_linux_record_tdep.ioctl_FIONCLEX = 0x5450;
2062 amd64_x32_linux_record_tdep.ioctl_FIOCLEX = 0x5451;
2063 amd64_x32_linux_record_tdep.ioctl_FIOASYNC = 0x5452;
2064 amd64_x32_linux_record_tdep.ioctl_TIOCSERCONFIG = 0x5453;
2065 amd64_x32_linux_record_tdep.ioctl_TIOCSERGWILD = 0x5454;
2066 amd64_x32_linux_record_tdep.ioctl_TIOCSERSWILD = 0x5455;
2067 amd64_x32_linux_record_tdep.ioctl_TIOCGLCKTRMIOS = 0x5456;
2068 amd64_x32_linux_record_tdep.ioctl_TIOCSLCKTRMIOS = 0x5457;
2069 amd64_x32_linux_record_tdep.ioctl_TIOCSERGSTRUCT = 0x5458;
2070 amd64_x32_linux_record_tdep.ioctl_TIOCSERGETLSR = 0x5459;
2071 amd64_x32_linux_record_tdep.ioctl_TIOCSERGETMULTI = 0x545A;
2072 amd64_x32_linux_record_tdep.ioctl_TIOCSERSETMULTI = 0x545B;
2073 amd64_x32_linux_record_tdep.ioctl_TIOCMIWAIT = 0x545C;
2074 amd64_x32_linux_record_tdep.ioctl_TIOCGICOUNT = 0x545D;
2075 amd64_x32_linux_record_tdep.ioctl_TIOCGHAYESESP = 0x545E;
2076 amd64_x32_linux_record_tdep.ioctl_TIOCSHAYESESP = 0x545F;
2077 amd64_x32_linux_record_tdep.ioctl_FIOQSIZE = 0x5460;
2078
2079 tdep->i386_syscall_record = amd64_x32_linux_syscall_record;
2080
5a83521a
MK
2081 /* GNU/Linux uses SVR4-style shared libraries. */
2082 set_solib_svr4_fetch_link_map_offsets
2083 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
2084}
c4f35dd8 2085\f
2213a65d
MK
2086
2087/* Provide a prototype to silence -Wmissing-prototypes. */
51433e4b 2088extern void _initialize_amd64_linux_tdep (void);
2213a65d
MK
2089
2090void
51433e4b 2091_initialize_amd64_linux_tdep (void)
2213a65d 2092{
51433e4b
MK
2093 gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64,
2094 GDB_OSABI_LINUX, amd64_linux_init_abi);
5a83521a
MK
2095 gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x64_32,
2096 GDB_OSABI_LINUX, amd64_x32_linux_init_abi);
90884b2b 2097
0963b4bd 2098 /* Initialize the Linux target description. */
90884b2b 2099 initialize_tdesc_amd64_linux ();
a055a187 2100 initialize_tdesc_amd64_avx_linux ();
e43e105e 2101 initialize_tdesc_amd64_mpx_linux ();
01f9f808
MS
2102 initialize_tdesc_amd64_avx512_linux ();
2103
70af3797
PA
2104 initialize_tdesc_x32_linux ();
2105 initialize_tdesc_x32_avx_linux ();
01f9f808 2106 initialize_tdesc_x32_avx512_linux ();
2213a65d 2107}
This page took 1.258787 seconds and 4 git commands to generate.