1 /* Target-dependent code for GNU/Linux x86-64.
3 Copyright (C) 2001-2025 Free Software Foundation, Inc.
4 Contributed by Jiri Smid, SuSE Labs.
6 This file is part of GDB.
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
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
22 #include "extract-store-integer.h"
29 #include "reggroups.h"
31 #include "parser-defs.h"
32 #include "user-regs.h"
33 #include "amd64-linux-tdep.h"
34 #include "i386-linux-tdep.h"
35 #include "linux-tdep.h"
36 #include "solib-svr4-linux.h"
37 #include "svr4-tls-tdep.h"
38 #include "gdbsupport/x86-xstate.h"
41 #include "amd64-tdep.h"
42 #include "solib-svr4.h"
43 #include "xml-syscall.h"
44 #include "glibc-tdep.h"
45 #include "arch/amd64.h"
46 #include "target-descriptions.h"
48 #include "arch/amd64-linux-tdesc.h"
51 #include "dwarf2/frame.h"
52 #include "frame-unwind.h"
54 /* The syscall's XML filename for i386. */
55 #define XML_SYSCALL_FILENAME_AMD64 "syscalls/amd64-linux.xml"
57 #include "record-full.h"
58 #include "linux-record.h"
60 #include <string_view>
62 #define DEFAULT_TAG_MASK 0xffffffffffffffffULL
64 /* Mapping between the general-purpose registers in `struct user'
65 format and GDB's register cache layout. */
67 /* From <sys/reg.h>. */
68 int amd64_linux_gregset_reg_offset
[] =
94 -1, -1, -1, -1, -1, -1, -1, -1,
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, -1,
98 -1, -1, -1, -1, -1, -1, -1, -1,
99 -1, -1, -1, -1, -1, -1, -1, -1,
100 /* MPX is deprecated. Yet we keep this to not give the registers below
101 a new number. That could break older gdbservers. */
102 -1, -1, -1, -1, /* MPX registers BND0 ... BND3. */
103 -1, -1, /* MPX registers BNDCFGU and BNDSTATUS. */
104 -1, -1, -1, -1, -1, -1, -1, -1, /* xmm16 ... xmm31 (AVX512) */
105 -1, -1, -1, -1, -1, -1, -1, -1,
106 -1, -1, -1, -1, -1, -1, -1, -1, /* ymm16 ... ymm31 (AVX512) */
107 -1, -1, -1, -1, -1, -1, -1, -1,
108 -1, -1, -1, -1, -1, -1, -1, -1, /* k0 ... k7 (AVX512) */
109 -1, -1, -1, -1, -1, -1, -1, -1, /* zmm0 ... zmm31 (AVX512) */
110 -1, -1, -1, -1, -1, -1, -1, -1,
111 -1, -1, -1, -1, -1, -1, -1, -1,
112 -1, -1, -1, -1, -1, -1, -1, -1,
113 -1, /* PKEYS register pkru */
114 -1, /* CET user mode register PL3_SSP. */
116 /* End of hardware registers */
117 21 * 8, 22 * 8, /* fs_base and gs_base. */
118 15 * 8 /* "orig_rax" */
122 /* Support for signal handlers. */
124 #define LINUX_SIGTRAMP_INSN0 0x48 /* mov $NNNNNNNN, %rax */
125 #define LINUX_SIGTRAMP_OFFSET0 0
126 #define LINUX_SIGTRAMP_INSN1 0x0f /* syscall */
127 #define LINUX_SIGTRAMP_OFFSET1 7
129 static const gdb_byte amd64_linux_sigtramp_code
[] =
131 /* mov $__NR_rt_sigreturn, %rax */
132 LINUX_SIGTRAMP_INSN0
, 0xc7, 0xc0, 0x0f, 0x00, 0x00, 0x00,
134 LINUX_SIGTRAMP_INSN1
, 0x05
137 static const gdb_byte amd64_x32_linux_sigtramp_code
[] =
139 /* mov $__NR_rt_sigreturn, %rax. */
140 LINUX_SIGTRAMP_INSN0
, 0xc7, 0xc0, 0x01, 0x02, 0x00, 0x40,
142 LINUX_SIGTRAMP_INSN1
, 0x05
145 #define LINUX_SIGTRAMP_LEN (sizeof amd64_linux_sigtramp_code)
147 /* If PC is in a sigtramp routine, return the address of the start of
148 the routine. Otherwise, return 0. */
151 amd64_linux_sigtramp_start (const frame_info_ptr
&this_frame
)
153 struct gdbarch
*gdbarch
;
154 const gdb_byte
*sigtramp_code
;
155 CORE_ADDR pc
= get_frame_pc (this_frame
);
156 gdb_byte buf
[LINUX_SIGTRAMP_LEN
];
158 /* We only recognize a signal trampoline if PC is at the start of
159 one of the two instructions. We optimize for finding the PC at
160 the start, as will be the case when the trampoline is not the
161 first frame on the stack. We assume that in the case where the
162 PC is not at the start of the instruction sequence, there will be
163 a few trailing readable bytes on the stack. */
165 if (!safe_frame_unwind_memory (this_frame
, pc
, buf
))
168 if (buf
[0] != LINUX_SIGTRAMP_INSN0
)
170 if (buf
[0] != LINUX_SIGTRAMP_INSN1
)
173 pc
-= LINUX_SIGTRAMP_OFFSET1
;
174 if (!safe_frame_unwind_memory (this_frame
, pc
, buf
))
178 gdbarch
= get_frame_arch (this_frame
);
179 if (gdbarch_ptr_bit (gdbarch
) == 32)
180 sigtramp_code
= amd64_x32_linux_sigtramp_code
;
182 sigtramp_code
= amd64_linux_sigtramp_code
;
183 if (memcmp (buf
, sigtramp_code
, LINUX_SIGTRAMP_LEN
) != 0)
189 /* Return whether THIS_FRAME corresponds to a GNU/Linux sigtramp
193 amd64_linux_sigtramp_p (const frame_info_ptr
&this_frame
)
195 CORE_ADDR pc
= get_frame_pc (this_frame
);
198 find_pc_partial_function (pc
, &name
, NULL
, NULL
);
200 /* If we have NAME, we can optimize the search. The trampoline is
201 named __restore_rt. However, it isn't dynamically exported from
202 the shared C library, so the trampoline may appear to be part of
203 the preceding function. This should always be sigaction,
204 __sigaction, or __libc_sigaction (all aliases to the same
206 if (name
== NULL
|| strstr (name
, "sigaction") != NULL
)
207 return (amd64_linux_sigtramp_start (this_frame
) != 0);
209 return (strcmp ("__restore_rt", name
) == 0);
212 /* Offset to struct sigcontext in ucontext, from <asm/ucontext.h>. */
213 #define AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET 40
215 /* Assuming THIS_FRAME is a GNU/Linux sigtramp routine, return the
216 address of the associated sigcontext structure. */
219 amd64_linux_sigcontext_addr (const frame_info_ptr
&this_frame
)
221 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
222 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
226 get_frame_register (this_frame
, AMD64_RSP_REGNUM
, buf
);
227 sp
= extract_unsigned_integer (buf
, 8, byte_order
);
229 /* The sigcontext structure is part of the user context. A pointer
230 to the user context is passed as the third argument to the signal
231 handler, i.e. in %rdx. Unfortunately %rdx isn't preserved across
232 function calls so we can't use it. Fortunately the user context
233 is part of the signal frame and the unwound %rsp directly points
235 return sp
+ AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET
;
240 amd64_linux_get_syscall_number (struct gdbarch
*gdbarch
,
243 struct regcache
*regcache
= get_thread_regcache (thread
);
244 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
245 /* The content of a register. */
250 /* Getting the system call number from the register.
251 When dealing with x86_64 architecture, this information
252 is stored at %rax register. */
253 regcache
->cooked_read (AMD64_LINUX_ORIG_RAX_REGNUM
, buf
);
255 ret
= extract_signed_integer (buf
, byte_order
);
261 /* From <asm/sigcontext.h>. */
262 static int amd64_linux_sc_reg_offset
[] =
281 17 * 8, /* %eflags */
283 /* FIXME: kettenis/2002030531: The registers %cs, %fs and %gs are
284 available in `struct sigcontext'. However, they only occupy two
285 bytes instead of four, which makes using them here rather
286 difficult. Leave them out for now. */
296 amd64_linux_register_reggroup_p (struct gdbarch
*gdbarch
, int regnum
,
297 const struct reggroup
*group
)
299 if (regnum
== AMD64_LINUX_ORIG_RAX_REGNUM
)
300 return (group
== system_reggroup
301 || group
== save_reggroup
302 || group
== restore_reggroup
);
303 return i386_register_reggroup_p (gdbarch
, regnum
, group
);
306 /* Set the program counter for process PTID to PC. */
309 amd64_linux_write_pc (struct regcache
*regcache
, CORE_ADDR pc
)
311 regcache_cooked_write_unsigned (regcache
, AMD64_RIP_REGNUM
, pc
);
313 /* We must be careful with modifying the program counter. If we
314 just interrupted a system call, the kernel might try to restart
315 it when we resume the inferior. On restarting the system call,
316 the kernel will try backing up the program counter even though it
317 no longer points at the system call. This typically results in a
318 SIGSEGV or SIGILL. We can prevent this by writing `-1' in the
319 "orig_rax" pseudo-register.
321 Note that "orig_rax" is saved when setting up a dummy call frame.
322 This means that it is properly restored when that frame is
323 popped, and that the interrupted system call will be restarted
324 when we resume the inferior on return from a function call from
325 within GDB. In all other cases the system call will not be
327 regcache_cooked_write_unsigned (regcache
, AMD64_LINUX_ORIG_RAX_REGNUM
, -1);
330 /* Record all registers but IP register for process-record. */
333 amd64_all_but_ip_registers_record (struct regcache
*regcache
)
335 if (record_full_arch_list_add_reg (regcache
, AMD64_RAX_REGNUM
))
337 if (record_full_arch_list_add_reg (regcache
, AMD64_RCX_REGNUM
))
339 if (record_full_arch_list_add_reg (regcache
, AMD64_RDX_REGNUM
))
341 if (record_full_arch_list_add_reg (regcache
, AMD64_RBX_REGNUM
))
343 if (record_full_arch_list_add_reg (regcache
, AMD64_RSP_REGNUM
))
345 if (record_full_arch_list_add_reg (regcache
, AMD64_RBP_REGNUM
))
347 if (record_full_arch_list_add_reg (regcache
, AMD64_RSI_REGNUM
))
349 if (record_full_arch_list_add_reg (regcache
, AMD64_RDI_REGNUM
))
351 if (record_full_arch_list_add_reg (regcache
, AMD64_R8_REGNUM
))
353 if (record_full_arch_list_add_reg (regcache
, AMD64_R9_REGNUM
))
355 if (record_full_arch_list_add_reg (regcache
, AMD64_R10_REGNUM
))
357 if (record_full_arch_list_add_reg (regcache
, AMD64_R11_REGNUM
))
359 if (record_full_arch_list_add_reg (regcache
, AMD64_R12_REGNUM
))
361 if (record_full_arch_list_add_reg (regcache
, AMD64_R13_REGNUM
))
363 if (record_full_arch_list_add_reg (regcache
, AMD64_R14_REGNUM
))
365 if (record_full_arch_list_add_reg (regcache
, AMD64_R15_REGNUM
))
367 if (record_full_arch_list_add_reg (regcache
, AMD64_EFLAGS_REGNUM
))
373 /* amd64_canonicalize_syscall maps from the native amd64 Linux set
374 of syscall ids into a canonical set of syscall ids used by
377 static enum gdb_syscall
378 amd64_canonicalize_syscall (enum amd64_syscall syscall_number
)
381 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
383 switch (syscall_number
) {
385 case amd64_x32_sys_read
:
388 case amd64_sys_write
:
389 case amd64_x32_sys_write
:
390 return gdb_sys_write
;
393 case amd64_x32_sys_open
:
396 case amd64_sys_close
:
397 case amd64_x32_sys_close
:
398 return gdb_sys_close
;
400 case amd64_sys_newstat
:
401 case amd64_x32_sys_newstat
:
402 return gdb_sys_newstat
;
404 case amd64_sys_newfstat
:
405 case amd64_x32_sys_newfstat
:
406 return gdb_sys_newfstat
;
408 case amd64_sys_newlstat
:
409 case amd64_x32_sys_newlstat
:
410 return gdb_sys_newlstat
;
413 case amd64_x32_sys_poll
:
416 case amd64_sys_lseek
:
417 case amd64_x32_sys_lseek
:
418 return gdb_sys_lseek
;
421 case amd64_x32_sys_mmap
:
422 return gdb_sys_old_mmap
;
424 case amd64_sys_mprotect
:
425 case amd64_x32_sys_mprotect
:
426 return gdb_sys_mprotect
;
428 case amd64_sys_munmap
:
429 case amd64_x32_sys_munmap
:
430 return gdb_sys_munmap
;
433 case amd64_x32_sys_brk
:
436 case amd64_sys_rt_sigaction
:
437 case amd64_x32_sys_rt_sigaction
:
438 return gdb_sys_rt_sigaction
;
440 case amd64_sys_rt_sigprocmask
:
441 case amd64_x32_sys_rt_sigprocmask
:
442 return gdb_sys_rt_sigprocmask
;
444 case amd64_sys_rt_sigreturn
:
445 case amd64_x32_sys_rt_sigreturn
:
446 return gdb_sys_rt_sigreturn
;
448 case amd64_sys_ioctl
:
449 case amd64_x32_sys_ioctl
:
450 return gdb_sys_ioctl
;
452 case amd64_sys_pread64
:
453 case amd64_x32_sys_pread64
:
454 return gdb_sys_pread64
;
456 case amd64_sys_pwrite64
:
457 case amd64_x32_sys_pwrite64
:
458 return gdb_sys_pwrite64
;
460 case amd64_sys_readv
:
461 case amd64_x32_sys_readv
:
462 return gdb_sys_readv
;
464 case amd64_sys_writev
:
465 case amd64_x32_sys_writev
:
466 return gdb_sys_writev
;
468 case amd64_sys_access
:
469 case amd64_x32_sys_access
:
470 return gdb_sys_access
;
473 case amd64_x32_sys_pipe
:
476 case amd64_sys_pipe2
:
477 return gdb_sys_pipe2
;
479 case amd64_sys_getrandom
:
480 return gdb_sys_getrandom
;
482 case amd64_sys_select
:
483 case amd64_x32_sys_select
:
484 return gdb_sys_select
;
486 case amd64_sys_sched_yield
:
487 case amd64_x32_sys_sched_yield
:
488 return gdb_sys_sched_yield
;
490 case amd64_sys_mremap
:
491 case amd64_x32_sys_mremap
:
492 return gdb_sys_mremap
;
494 case amd64_sys_msync
:
495 case amd64_x32_sys_msync
:
496 return gdb_sys_msync
;
498 case amd64_sys_mincore
:
499 case amd64_x32_sys_mincore
:
500 return gdb_sys_mincore
;
502 case amd64_sys_madvise
:
503 case amd64_x32_sys_madvise
:
504 return gdb_sys_madvise
;
506 case amd64_sys_shmget
:
507 case amd64_x32_sys_shmget
:
508 return gdb_sys_shmget
;
510 case amd64_sys_shmat
:
511 case amd64_x32_sys_shmat
:
512 return gdb_sys_shmat
;
514 case amd64_sys_shmctl
:
515 case amd64_x32_sys_shmctl
:
516 return gdb_sys_shmctl
;
519 case amd64_x32_sys_dup
:
523 case amd64_x32_sys_dup2
:
526 case amd64_sys_pause
:
527 case amd64_x32_sys_pause
:
528 return gdb_sys_pause
;
530 case amd64_sys_nanosleep
:
531 case amd64_x32_sys_nanosleep
:
532 return gdb_sys_nanosleep
;
534 case amd64_sys_getitimer
:
535 case amd64_x32_sys_getitimer
:
536 return gdb_sys_getitimer
;
538 case amd64_sys_alarm
:
539 case amd64_x32_sys_alarm
:
540 return gdb_sys_alarm
;
542 case amd64_sys_setitimer
:
543 case amd64_x32_sys_setitimer
:
544 return gdb_sys_setitimer
;
546 case amd64_sys_getpid
:
547 case amd64_x32_sys_getpid
:
548 return gdb_sys_getpid
;
550 case amd64_sys_sendfile64
:
551 case amd64_x32_sys_sendfile64
:
552 return gdb_sys_sendfile64
;
554 case amd64_sys_socket
:
555 case amd64_x32_sys_socket
:
556 return gdb_sys_socket
;
558 case amd64_sys_connect
:
559 case amd64_x32_sys_connect
:
560 return gdb_sys_connect
;
562 case amd64_sys_accept
:
563 case amd64_x32_sys_accept
:
564 return gdb_sys_accept
;
566 case amd64_sys_accept4
:
567 case amd64_x32_sys_accept4
:
568 return gdb_sys_accept4
;
570 case amd64_sys_sendto
:
571 case amd64_x32_sys_sendto
:
572 return gdb_sys_sendto
;
574 case amd64_sys_recvfrom
:
575 case amd64_x32_sys_recvfrom
:
576 return gdb_sys_recvfrom
;
578 case amd64_sys_sendmsg
:
579 case amd64_x32_sys_sendmsg
:
580 return gdb_sys_sendmsg
;
582 case amd64_sys_recvmsg
:
583 case amd64_x32_sys_recvmsg
:
584 return gdb_sys_recvmsg
;
586 case amd64_sys_shutdown
:
587 case amd64_x32_sys_shutdown
:
588 return gdb_sys_shutdown
;
591 case amd64_x32_sys_bind
:
594 case amd64_sys_listen
:
595 case amd64_x32_sys_listen
:
596 return gdb_sys_listen
;
598 case amd64_sys_getsockname
:
599 case amd64_x32_sys_getsockname
:
600 return gdb_sys_getsockname
;
602 case amd64_sys_getpeername
:
603 case amd64_x32_sys_getpeername
:
604 return gdb_sys_getpeername
;
606 case amd64_sys_socketpair
:
607 case amd64_x32_sys_socketpair
:
608 return gdb_sys_socketpair
;
610 case amd64_sys_setsockopt
:
611 case amd64_x32_sys_setsockopt
:
612 return gdb_sys_setsockopt
;
614 case amd64_sys_getsockopt
:
615 case amd64_x32_sys_getsockopt
:
616 return gdb_sys_getsockopt
;
618 case amd64_sys_clone
:
619 case amd64_x32_sys_clone
:
620 return gdb_sys_clone
;
623 case amd64_x32_sys_fork
:
626 case amd64_sys_vfork
:
627 case amd64_x32_sys_vfork
:
628 return gdb_sys_vfork
;
630 case amd64_sys_execve
:
631 case amd64_x32_sys_execve
:
632 return gdb_sys_execve
;
635 case amd64_x32_sys_exit
:
638 case amd64_sys_wait4
:
639 case amd64_x32_sys_wait4
:
640 return gdb_sys_wait4
;
643 case amd64_x32_sys_kill
:
646 case amd64_sys_uname
:
647 case amd64_x32_sys_uname
:
648 return gdb_sys_uname
;
650 case amd64_sys_semget
:
651 case amd64_x32_sys_semget
:
652 return gdb_sys_semget
;
654 case amd64_sys_semop
:
655 case amd64_x32_sys_semop
:
656 return gdb_sys_semop
;
658 case amd64_sys_semctl
:
659 case amd64_x32_sys_semctl
:
660 return gdb_sys_semctl
;
662 case amd64_sys_shmdt
:
663 case amd64_x32_sys_shmdt
:
664 return gdb_sys_shmdt
;
666 case amd64_sys_msgget
:
667 case amd64_x32_sys_msgget
:
668 return gdb_sys_msgget
;
670 case amd64_sys_msgsnd
:
671 case amd64_x32_sys_msgsnd
:
672 return gdb_sys_msgsnd
;
674 case amd64_sys_msgrcv
:
675 case amd64_x32_sys_msgrcv
:
676 return gdb_sys_msgrcv
;
678 case amd64_sys_msgctl
:
679 case amd64_x32_sys_msgctl
:
680 return gdb_sys_msgctl
;
682 case amd64_sys_fcntl
:
683 case amd64_x32_sys_fcntl
:
684 return gdb_sys_fcntl
;
686 case amd64_sys_flock
:
687 case amd64_x32_sys_flock
:
688 return gdb_sys_flock
;
690 case amd64_sys_fsync
:
691 case amd64_x32_sys_fsync
:
692 return gdb_sys_fsync
;
694 case amd64_sys_fdatasync
:
695 case amd64_x32_sys_fdatasync
:
696 return gdb_sys_fdatasync
;
698 case amd64_sys_truncate
:
699 case amd64_x32_sys_truncate
:
700 return gdb_sys_truncate
;
702 case amd64_sys_ftruncate
:
703 case amd64_x32_sys_ftruncate
:
704 return gdb_sys_ftruncate
;
706 case amd64_sys_getdents
:
707 case amd64_x32_sys_getdents
:
708 return gdb_sys_getdents
;
710 case amd64_sys_getcwd
:
711 case amd64_x32_sys_getcwd
:
712 return gdb_sys_getcwd
;
714 case amd64_sys_chdir
:
715 case amd64_x32_sys_chdir
:
716 return gdb_sys_chdir
;
718 case amd64_sys_fchdir
:
719 case amd64_x32_sys_fchdir
:
720 return gdb_sys_fchdir
;
722 case amd64_sys_rename
:
723 case amd64_x32_sys_rename
:
724 return gdb_sys_rename
;
726 case amd64_sys_mkdir
:
727 case amd64_x32_sys_mkdir
:
728 return gdb_sys_mkdir
;
730 case amd64_sys_rmdir
:
731 case amd64_x32_sys_rmdir
:
732 return gdb_sys_rmdir
;
734 case amd64_sys_creat
:
735 case amd64_x32_sys_creat
:
736 return gdb_sys_creat
;
739 case amd64_x32_sys_link
:
742 case amd64_sys_unlink
:
743 case amd64_x32_sys_unlink
:
744 return gdb_sys_unlink
;
746 case amd64_sys_symlink
:
747 case amd64_x32_sys_symlink
:
748 return gdb_sys_symlink
;
750 case amd64_sys_readlink
:
751 case amd64_x32_sys_readlink
:
752 return gdb_sys_readlink
;
754 case amd64_sys_chmod
:
755 case amd64_x32_sys_chmod
:
756 return gdb_sys_chmod
;
758 case amd64_sys_fchmod
:
759 case amd64_x32_sys_fchmod
:
760 return gdb_sys_fchmod
;
762 case amd64_sys_chown
:
763 case amd64_x32_sys_chown
:
764 return gdb_sys_chown
;
766 case amd64_sys_fchown
:
767 case amd64_x32_sys_fchown
:
768 return gdb_sys_fchown
;
770 case amd64_sys_lchown
:
771 case amd64_x32_sys_lchown
:
772 return gdb_sys_lchown
;
774 case amd64_sys_umask
:
775 case amd64_x32_sys_umask
:
776 return gdb_sys_umask
;
778 case amd64_sys_gettimeofday
:
779 case amd64_x32_sys_gettimeofday
:
780 return gdb_sys_gettimeofday
;
782 case amd64_sys_getrlimit
:
783 case amd64_x32_sys_getrlimit
:
784 return gdb_sys_getrlimit
;
786 case amd64_sys_getrusage
:
787 case amd64_x32_sys_getrusage
:
788 return gdb_sys_getrusage
;
790 case amd64_sys_sysinfo
:
791 case amd64_x32_sys_sysinfo
:
792 return gdb_sys_sysinfo
;
794 case amd64_sys_times
:
795 case amd64_x32_sys_times
:
796 return gdb_sys_times
;
798 case amd64_sys_ptrace
:
799 case amd64_x32_sys_ptrace
:
800 return gdb_sys_ptrace
;
802 case amd64_sys_getuid
:
803 case amd64_x32_sys_getuid
:
804 return gdb_sys_getuid
;
806 case amd64_sys_syslog
:
807 case amd64_x32_sys_syslog
:
808 return gdb_sys_syslog
;
810 case amd64_sys_getgid
:
811 case amd64_x32_sys_getgid
:
812 return gdb_sys_getgid
;
814 case amd64_sys_setuid
:
815 case amd64_x32_sys_setuid
:
816 return gdb_sys_setuid
;
818 case amd64_sys_setgid
:
819 case amd64_x32_sys_setgid
:
820 return gdb_sys_setgid
;
822 case amd64_sys_geteuid
:
823 case amd64_x32_sys_geteuid
:
824 return gdb_sys_geteuid
;
826 case amd64_sys_getegid
:
827 case amd64_x32_sys_getegid
:
828 return gdb_sys_getegid
;
830 case amd64_sys_setpgid
:
831 case amd64_x32_sys_setpgid
:
832 return gdb_sys_setpgid
;
834 case amd64_sys_getppid
:
835 case amd64_x32_sys_getppid
:
836 return gdb_sys_getppid
;
838 case amd64_sys_getpgrp
:
839 case amd64_x32_sys_getpgrp
:
840 return gdb_sys_getpgrp
;
842 case amd64_sys_setsid
:
843 case amd64_x32_sys_setsid
:
844 return gdb_sys_setsid
;
846 case amd64_sys_setreuid
:
847 case amd64_x32_sys_setreuid
:
848 return gdb_sys_setreuid
;
850 case amd64_sys_setregid
:
851 case amd64_x32_sys_setregid
:
852 return gdb_sys_setregid
;
854 case amd64_sys_getgroups
:
855 case amd64_x32_sys_getgroups
:
856 return gdb_sys_getgroups
;
858 case amd64_sys_setgroups
:
859 case amd64_x32_sys_setgroups
:
860 return gdb_sys_setgroups
;
862 case amd64_sys_setresuid
:
863 case amd64_x32_sys_setresuid
:
864 return gdb_sys_setresuid
;
866 case amd64_sys_getresuid
:
867 case amd64_x32_sys_getresuid
:
868 return gdb_sys_getresuid
;
870 case amd64_sys_setresgid
:
871 case amd64_x32_sys_setresgid
:
872 return gdb_sys_setresgid
;
874 case amd64_sys_getresgid
:
875 case amd64_x32_sys_getresgid
:
876 return gdb_sys_getresgid
;
878 case amd64_sys_getpgid
:
879 case amd64_x32_sys_getpgid
:
880 return gdb_sys_getpgid
;
882 case amd64_sys_setfsuid
:
883 case amd64_x32_sys_setfsuid
:
884 return gdb_sys_setfsuid
;
886 case amd64_sys_setfsgid
:
887 case amd64_x32_sys_setfsgid
:
888 return gdb_sys_setfsgid
;
890 case amd64_sys_getsid
:
891 case amd64_x32_sys_getsid
:
892 return gdb_sys_getsid
;
894 case amd64_sys_capget
:
895 case amd64_x32_sys_capget
:
896 return gdb_sys_capget
;
898 case amd64_sys_capset
:
899 case amd64_x32_sys_capset
:
900 return gdb_sys_capset
;
902 case amd64_sys_rt_sigpending
:
903 case amd64_x32_sys_rt_sigpending
:
904 return gdb_sys_rt_sigpending
;
906 case amd64_sys_rt_sigtimedwait
:
907 case amd64_x32_sys_rt_sigtimedwait
:
908 return gdb_sys_rt_sigtimedwait
;
910 case amd64_sys_rt_sigqueueinfo
:
911 case amd64_x32_sys_rt_sigqueueinfo
:
912 return gdb_sys_rt_sigqueueinfo
;
914 case amd64_sys_rt_sigsuspend
:
915 case amd64_x32_sys_rt_sigsuspend
:
916 return gdb_sys_rt_sigsuspend
;
918 case amd64_sys_sigaltstack
:
919 case amd64_x32_sys_sigaltstack
:
920 return gdb_sys_sigaltstack
;
922 case amd64_sys_utime
:
923 case amd64_x32_sys_utime
:
924 return gdb_sys_utime
;
926 case amd64_sys_mknod
:
927 case amd64_x32_sys_mknod
:
928 return gdb_sys_mknod
;
930 case amd64_sys_personality
:
931 case amd64_x32_sys_personality
:
932 return gdb_sys_personality
;
934 case amd64_sys_ustat
:
935 case amd64_x32_sys_ustat
:
936 return gdb_sys_ustat
;
938 case amd64_sys_statfs
:
939 case amd64_x32_sys_statfs
:
940 return gdb_sys_statfs
;
942 case amd64_sys_fstatfs
:
943 case amd64_x32_sys_fstatfs
:
944 return gdb_sys_fstatfs
;
946 case amd64_sys_sysfs
:
947 case amd64_x32_sys_sysfs
:
948 return gdb_sys_sysfs
;
950 case amd64_sys_getpriority
:
951 case amd64_x32_sys_getpriority
:
952 return gdb_sys_getpriority
;
954 case amd64_sys_setpriority
:
955 case amd64_x32_sys_setpriority
:
956 return gdb_sys_setpriority
;
958 case amd64_sys_sched_setparam
:
959 case amd64_x32_sys_sched_setparam
:
960 return gdb_sys_sched_setparam
;
962 case amd64_sys_sched_getparam
:
963 case amd64_x32_sys_sched_getparam
:
964 return gdb_sys_sched_getparam
;
966 case amd64_sys_sched_setscheduler
:
967 case amd64_x32_sys_sched_setscheduler
:
968 return gdb_sys_sched_setscheduler
;
970 case amd64_sys_sched_getscheduler
:
971 case amd64_x32_sys_sched_getscheduler
:
972 return gdb_sys_sched_getscheduler
;
974 case amd64_sys_sched_get_priority_max
:
975 case amd64_x32_sys_sched_get_priority_max
:
976 return gdb_sys_sched_get_priority_max
;
978 case amd64_sys_sched_get_priority_min
:
979 case amd64_x32_sys_sched_get_priority_min
:
980 return gdb_sys_sched_get_priority_min
;
982 case amd64_sys_sched_rr_get_interval
:
983 case amd64_x32_sys_sched_rr_get_interval
:
984 return gdb_sys_sched_rr_get_interval
;
986 case amd64_sys_mlock
:
987 case amd64_x32_sys_mlock
:
988 return gdb_sys_mlock
;
990 case amd64_sys_munlock
:
991 case amd64_x32_sys_munlock
:
992 return gdb_sys_munlock
;
994 case amd64_sys_mlockall
:
995 case amd64_x32_sys_mlockall
:
996 return gdb_sys_mlockall
;
998 case amd64_sys_munlockall
:
999 case amd64_x32_sys_munlockall
:
1000 return gdb_sys_munlockall
;
1002 case amd64_sys_vhangup
:
1003 case amd64_x32_sys_vhangup
:
1004 return gdb_sys_vhangup
;
1006 case amd64_sys_modify_ldt
:
1007 case amd64_x32_sys_modify_ldt
:
1008 return gdb_sys_modify_ldt
;
1010 case amd64_sys_pivot_root
:
1011 case amd64_x32_sys_pivot_root
:
1012 return gdb_sys_pivot_root
;
1014 case amd64_sys_sysctl
:
1015 case amd64_x32_sys_sysctl
:
1016 return gdb_sys_sysctl
;
1018 case amd64_sys_prctl
:
1019 case amd64_x32_sys_prctl
:
1020 return gdb_sys_prctl
;
1022 case amd64_sys_arch_prctl
:
1023 case amd64_x32_sys_arch_prctl
:
1024 return gdb_sys_no_syscall
; /* Note */
1026 case amd64_sys_adjtimex
:
1027 case amd64_x32_sys_adjtimex
:
1028 return gdb_sys_adjtimex
;
1030 case amd64_sys_setrlimit
:
1031 case amd64_x32_sys_setrlimit
:
1032 return gdb_sys_setrlimit
;
1034 case amd64_sys_chroot
:
1035 case amd64_x32_sys_chroot
:
1036 return gdb_sys_chroot
;
1038 case amd64_sys_sync
:
1039 case amd64_x32_sys_sync
:
1040 return gdb_sys_sync
;
1042 case amd64_sys_acct
:
1043 case amd64_x32_sys_acct
:
1044 return gdb_sys_acct
;
1046 case amd64_sys_settimeofday
:
1047 case amd64_x32_sys_settimeofday
:
1048 return gdb_sys_settimeofday
;
1050 case amd64_sys_mount
:
1051 case amd64_x32_sys_mount
:
1052 return gdb_sys_mount
;
1054 case amd64_sys_umount
:
1055 case amd64_x32_sys_umount
:
1056 return gdb_sys_umount
;
1058 case amd64_sys_swapon
:
1059 case amd64_x32_sys_swapon
:
1060 return gdb_sys_swapon
;
1062 case amd64_sys_swapoff
:
1063 case amd64_x32_sys_swapoff
:
1064 return gdb_sys_swapoff
;
1066 case amd64_sys_reboot
:
1067 case amd64_x32_sys_reboot
:
1068 return gdb_sys_reboot
;
1070 case amd64_sys_sethostname
:
1071 case amd64_x32_sys_sethostname
:
1072 return gdb_sys_sethostname
;
1074 case amd64_sys_setdomainname
:
1075 case amd64_x32_sys_setdomainname
:
1076 return gdb_sys_setdomainname
;
1078 case amd64_sys_iopl
:
1079 case amd64_x32_sys_iopl
:
1080 return gdb_sys_iopl
;
1082 case amd64_sys_ioperm
:
1083 case amd64_x32_sys_ioperm
:
1084 return gdb_sys_ioperm
;
1086 case amd64_sys_init_module
:
1087 case amd64_x32_sys_init_module
:
1088 return gdb_sys_init_module
;
1090 case amd64_sys_delete_module
:
1091 case amd64_x32_sys_delete_module
:
1092 return gdb_sys_delete_module
;
1094 case amd64_sys_quotactl
:
1095 case amd64_x32_sys_quotactl
:
1096 return gdb_sys_quotactl
;
1098 case amd64_sys_nfsservctl
:
1099 return gdb_sys_nfsservctl
;
1101 case amd64_sys_gettid
:
1102 case amd64_x32_sys_gettid
:
1103 return gdb_sys_gettid
;
1105 case amd64_sys_readahead
:
1106 case amd64_x32_sys_readahead
:
1107 return gdb_sys_readahead
;
1109 case amd64_sys_setxattr
:
1110 case amd64_x32_sys_setxattr
:
1111 return gdb_sys_setxattr
;
1113 case amd64_sys_lsetxattr
:
1114 case amd64_x32_sys_lsetxattr
:
1115 return gdb_sys_lsetxattr
;
1117 case amd64_sys_fsetxattr
:
1118 case amd64_x32_sys_fsetxattr
:
1119 return gdb_sys_fsetxattr
;
1121 case amd64_sys_getxattr
:
1122 case amd64_x32_sys_getxattr
:
1123 return gdb_sys_getxattr
;
1125 case amd64_sys_lgetxattr
:
1126 case amd64_x32_sys_lgetxattr
:
1127 return gdb_sys_lgetxattr
;
1129 case amd64_sys_fgetxattr
:
1130 case amd64_x32_sys_fgetxattr
:
1131 return gdb_sys_fgetxattr
;
1133 case amd64_sys_listxattr
:
1134 case amd64_x32_sys_listxattr
:
1135 return gdb_sys_listxattr
;
1137 case amd64_sys_llistxattr
:
1138 case amd64_x32_sys_llistxattr
:
1139 return gdb_sys_llistxattr
;
1141 case amd64_sys_flistxattr
:
1142 case amd64_x32_sys_flistxattr
:
1143 return gdb_sys_flistxattr
;
1145 case amd64_sys_removexattr
:
1146 case amd64_x32_sys_removexattr
:
1147 return gdb_sys_removexattr
;
1149 case amd64_sys_lremovexattr
:
1150 case amd64_x32_sys_lremovexattr
:
1151 return gdb_sys_lremovexattr
;
1153 case amd64_sys_fremovexattr
:
1154 case amd64_x32_sys_fremovexattr
:
1155 return gdb_sys_fremovexattr
;
1157 case amd64_sys_tkill
:
1158 case amd64_x32_sys_tkill
:
1159 return gdb_sys_tkill
;
1161 case amd64_sys_time
:
1162 case amd64_x32_sys_time
:
1163 return gdb_sys_time
;
1165 case amd64_sys_futex
:
1166 case amd64_x32_sys_futex
:
1167 return gdb_sys_futex
;
1169 case amd64_sys_sched_setaffinity
:
1170 case amd64_x32_sys_sched_setaffinity
:
1171 return gdb_sys_sched_setaffinity
;
1173 case amd64_sys_sched_getaffinity
:
1174 case amd64_x32_sys_sched_getaffinity
:
1175 return gdb_sys_sched_getaffinity
;
1177 case amd64_sys_io_setup
:
1178 case amd64_x32_sys_io_setup
:
1179 return gdb_sys_io_setup
;
1181 case amd64_sys_io_destroy
:
1182 case amd64_x32_sys_io_destroy
:
1183 return gdb_sys_io_destroy
;
1185 case amd64_sys_io_getevents
:
1186 case amd64_x32_sys_io_getevents
:
1187 return gdb_sys_io_getevents
;
1189 case amd64_sys_io_submit
:
1190 case amd64_x32_sys_io_submit
:
1191 return gdb_sys_io_submit
;
1193 case amd64_sys_io_cancel
:
1194 case amd64_x32_sys_io_cancel
:
1195 return gdb_sys_io_cancel
;
1197 case amd64_sys_lookup_dcookie
:
1198 case amd64_x32_sys_lookup_dcookie
:
1199 return gdb_sys_lookup_dcookie
;
1201 case amd64_sys_epoll_create
:
1202 case amd64_x32_sys_epoll_create
:
1203 return gdb_sys_epoll_create
;
1205 case amd64_sys_remap_file_pages
:
1206 case amd64_x32_sys_remap_file_pages
:
1207 return gdb_sys_remap_file_pages
;
1209 case amd64_sys_getdents64
:
1210 case amd64_x32_sys_getdents64
:
1211 return gdb_sys_getdents64
;
1213 case amd64_sys_set_tid_address
:
1214 case amd64_x32_sys_set_tid_address
:
1215 return gdb_sys_set_tid_address
;
1217 case amd64_sys_restart_syscall
:
1218 case amd64_x32_sys_restart_syscall
:
1219 return gdb_sys_restart_syscall
;
1221 case amd64_sys_semtimedop
:
1222 case amd64_x32_sys_semtimedop
:
1223 return gdb_sys_semtimedop
;
1225 case amd64_sys_fadvise64
:
1226 case amd64_x32_sys_fadvise64
:
1227 return gdb_sys_fadvise64
;
1229 case amd64_sys_timer_create
:
1230 case amd64_x32_sys_timer_create
:
1231 return gdb_sys_timer_create
;
1233 case amd64_sys_timer_settime
:
1234 case amd64_x32_sys_timer_settime
:
1235 return gdb_sys_timer_settime
;
1237 case amd64_sys_timer_gettime
:
1238 case amd64_x32_sys_timer_gettime
:
1239 return gdb_sys_timer_gettime
;
1241 case amd64_sys_timer_getoverrun
:
1242 case amd64_x32_sys_timer_getoverrun
:
1243 return gdb_sys_timer_getoverrun
;
1245 case amd64_sys_timer_delete
:
1246 case amd64_x32_sys_timer_delete
:
1247 return gdb_sys_timer_delete
;
1249 case amd64_sys_clock_settime
:
1250 case amd64_x32_sys_clock_settime
:
1251 return gdb_sys_clock_settime
;
1253 case amd64_sys_clock_gettime
:
1254 case amd64_x32_sys_clock_gettime
:
1255 return gdb_sys_clock_gettime
;
1257 case amd64_sys_clock_getres
:
1258 case amd64_x32_sys_clock_getres
:
1259 return gdb_sys_clock_getres
;
1261 case amd64_sys_clock_nanosleep
:
1262 case amd64_x32_sys_clock_nanosleep
:
1263 return gdb_sys_clock_nanosleep
;
1265 case amd64_sys_exit_group
:
1266 case amd64_x32_sys_exit_group
:
1267 return gdb_sys_exit_group
;
1269 case amd64_sys_epoll_wait
:
1270 case amd64_x32_sys_epoll_wait
:
1271 return gdb_sys_epoll_wait
;
1273 case amd64_sys_epoll_ctl
:
1274 case amd64_x32_sys_epoll_ctl
:
1275 return gdb_sys_epoll_ctl
;
1277 case amd64_sys_tgkill
:
1278 case amd64_x32_sys_tgkill
:
1279 return gdb_sys_tgkill
;
1281 case amd64_sys_utimes
:
1282 case amd64_x32_sys_utimes
:
1283 return gdb_sys_utimes
;
1285 case amd64_sys_mbind
:
1286 case amd64_x32_sys_mbind
:
1287 return gdb_sys_mbind
;
1289 case amd64_sys_set_mempolicy
:
1290 case amd64_x32_sys_set_mempolicy
:
1291 return gdb_sys_set_mempolicy
;
1293 case amd64_sys_get_mempolicy
:
1294 case amd64_x32_sys_get_mempolicy
:
1295 return gdb_sys_get_mempolicy
;
1297 case amd64_sys_mq_open
:
1298 case amd64_x32_sys_mq_open
:
1299 return gdb_sys_mq_open
;
1301 case amd64_sys_mq_unlink
:
1302 case amd64_x32_sys_mq_unlink
:
1303 return gdb_sys_mq_unlink
;
1305 case amd64_sys_mq_timedsend
:
1306 case amd64_x32_sys_mq_timedsend
:
1307 return gdb_sys_mq_timedsend
;
1309 case amd64_sys_mq_timedreceive
:
1310 case amd64_x32_sys_mq_timedreceive
:
1311 return gdb_sys_mq_timedreceive
;
1313 case amd64_sys_mq_notify
:
1314 case amd64_x32_sys_mq_notify
:
1315 return gdb_sys_mq_notify
;
1317 case amd64_sys_mq_getsetattr
:
1318 case amd64_x32_sys_mq_getsetattr
:
1319 return gdb_sys_mq_getsetattr
;
1321 case amd64_sys_kexec_load
:
1322 case amd64_x32_sys_kexec_load
:
1323 return gdb_sys_kexec_load
;
1325 case amd64_sys_waitid
:
1326 case amd64_x32_sys_waitid
:
1327 return gdb_sys_waitid
;
1329 case amd64_sys_add_key
:
1330 case amd64_x32_sys_add_key
:
1331 return gdb_sys_add_key
;
1333 case amd64_sys_request_key
:
1334 case amd64_x32_sys_request_key
:
1335 return gdb_sys_request_key
;
1337 case amd64_sys_keyctl
:
1338 case amd64_x32_sys_keyctl
:
1339 return gdb_sys_keyctl
;
1341 case amd64_sys_ioprio_set
:
1342 case amd64_x32_sys_ioprio_set
:
1343 return gdb_sys_ioprio_set
;
1345 case amd64_sys_ioprio_get
:
1346 case amd64_x32_sys_ioprio_get
:
1347 return gdb_sys_ioprio_get
;
1349 case amd64_sys_inotify_init
:
1350 case amd64_x32_sys_inotify_init
:
1351 return gdb_sys_inotify_init
;
1353 case amd64_sys_inotify_add_watch
:
1354 case amd64_x32_sys_inotify_add_watch
:
1355 return gdb_sys_inotify_add_watch
;
1357 case amd64_sys_inotify_rm_watch
:
1358 case amd64_x32_sys_inotify_rm_watch
:
1359 return gdb_sys_inotify_rm_watch
;
1361 case amd64_sys_migrate_pages
:
1362 case amd64_x32_sys_migrate_pages
:
1363 return gdb_sys_migrate_pages
;
1365 case amd64_sys_openat
:
1366 case amd64_x32_sys_openat
:
1367 return gdb_sys_openat
;
1369 case amd64_sys_mkdirat
:
1370 case amd64_x32_sys_mkdirat
:
1371 return gdb_sys_mkdirat
;
1373 case amd64_sys_mknodat
:
1374 case amd64_x32_sys_mknodat
:
1375 return gdb_sys_mknodat
;
1377 case amd64_sys_fchownat
:
1378 case amd64_x32_sys_fchownat
:
1379 return gdb_sys_fchownat
;
1381 case amd64_sys_futimesat
:
1382 case amd64_x32_sys_futimesat
:
1383 return gdb_sys_futimesat
;
1385 case amd64_sys_newfstatat
:
1386 case amd64_x32_sys_newfstatat
:
1387 return gdb_sys_newfstatat
;
1389 case amd64_sys_unlinkat
:
1390 case amd64_x32_sys_unlinkat
:
1391 return gdb_sys_unlinkat
;
1393 case amd64_sys_renameat
:
1394 case amd64_x32_sys_renameat
:
1395 return gdb_sys_renameat
;
1397 case amd64_sys_linkat
:
1398 case amd64_x32_sys_linkat
:
1399 return gdb_sys_linkat
;
1401 case amd64_sys_symlinkat
:
1402 case amd64_x32_sys_symlinkat
:
1403 return gdb_sys_symlinkat
;
1405 case amd64_sys_readlinkat
:
1406 case amd64_x32_sys_readlinkat
:
1407 return gdb_sys_readlinkat
;
1409 case amd64_sys_fchmodat
:
1410 case amd64_x32_sys_fchmodat
:
1411 return gdb_sys_fchmodat
;
1413 case amd64_sys_faccessat
:
1414 case amd64_x32_sys_faccessat
:
1415 return gdb_sys_faccessat
;
1417 case amd64_sys_pselect6
:
1418 case amd64_x32_sys_pselect6
:
1419 return gdb_sys_pselect6
;
1421 case amd64_sys_ppoll
:
1422 case amd64_x32_sys_ppoll
:
1423 return gdb_sys_ppoll
;
1425 case amd64_sys_unshare
:
1426 case amd64_x32_sys_unshare
:
1427 return gdb_sys_unshare
;
1429 case amd64_sys_set_robust_list
:
1430 case amd64_x32_sys_set_robust_list
:
1431 return gdb_sys_set_robust_list
;
1433 case amd64_sys_get_robust_list
:
1434 case amd64_x32_sys_get_robust_list
:
1435 return gdb_sys_get_robust_list
;
1437 case amd64_sys_splice
:
1438 case amd64_x32_sys_splice
:
1439 return gdb_sys_splice
;
1442 case amd64_x32_sys_tee
:
1445 case amd64_sys_sync_file_range
:
1446 case amd64_x32_sys_sync_file_range
:
1447 return gdb_sys_sync_file_range
;
1449 case amd64_sys_vmsplice
:
1450 case amd64_x32_sys_vmsplice
:
1451 return gdb_sys_vmsplice
;
1453 case amd64_sys_move_pages
:
1454 case amd64_x32_sys_move_pages
:
1455 return gdb_sys_move_pages
;
1458 return gdb_sys_no_syscall
;
1464 /* Parse the arguments of current system call instruction and record
1465 the values of the registers and memory that will be changed into
1466 "record_full_arch_list". This instruction is "syscall".
1468 Return -1 if something wrong. */
1470 static struct linux_record_tdep amd64_linux_record_tdep
;
1471 static struct linux_record_tdep amd64_x32_linux_record_tdep
;
1473 #define RECORD_ARCH_GET_FS 0x1003
1474 #define RECORD_ARCH_GET_GS 0x1004
1477 amd64_linux_syscall_record_common (struct regcache
*regcache
,
1478 struct linux_record_tdep
*linux_record_tdep_p
)
1481 ULONGEST syscall_native
;
1482 enum gdb_syscall syscall_gdb
= gdb_sys_no_syscall
;
1484 regcache_raw_read_unsigned (regcache
, AMD64_RAX_REGNUM
, &syscall_native
);
1486 switch (syscall_native
)
1488 case amd64_sys_rt_sigreturn
:
1489 case amd64_x32_sys_rt_sigreturn
:
1490 if (amd64_all_but_ip_registers_record (regcache
))
1495 case amd64_sys_arch_prctl
:
1496 case amd64_x32_sys_arch_prctl
:
1499 regcache_raw_read_unsigned (regcache
, linux_record_tdep_p
->arg3
,
1501 if (arg3
== RECORD_ARCH_GET_FS
|| arg3
== RECORD_ARCH_GET_GS
)
1505 regcache_raw_read_unsigned (regcache
,
1506 linux_record_tdep_p
->arg2
,
1508 if (record_full_arch_list_add_mem
1509 (addr
, linux_record_tdep_p
->size_ulong
))
1518 = amd64_canonicalize_syscall ((enum amd64_syscall
) syscall_native
);
1520 if (syscall_gdb
== gdb_sys_no_syscall
)
1522 gdb_printf (gdb_stderr
,
1523 _("Process record and replay target doesn't "
1524 "support syscall number %s\n"),
1525 pulongest (syscall_native
));
1530 ret
= record_linux_system_call (syscall_gdb
, regcache
,
1531 linux_record_tdep_p
);
1537 /* Record the return value of the system call. */
1538 if (record_full_arch_list_add_reg (regcache
, AMD64_RCX_REGNUM
))
1540 if (record_full_arch_list_add_reg (regcache
, AMD64_R11_REGNUM
))
1547 amd64_linux_syscall_record (struct regcache
*regcache
)
1549 return amd64_linux_syscall_record_common (regcache
,
1550 &amd64_linux_record_tdep
);
1554 amd64_x32_linux_syscall_record (struct regcache
*regcache
)
1556 return amd64_linux_syscall_record_common (regcache
,
1557 &amd64_x32_linux_record_tdep
);
1560 #define AMD64_LINUX_redzone 128
1561 #define AMD64_LINUX_xstate 512
1562 #define AMD64_LINUX_frame_size 560
1565 amd64_linux_record_signal (struct gdbarch
*gdbarch
,
1566 struct regcache
*regcache
,
1567 enum gdb_signal signal
)
1571 if (amd64_all_but_ip_registers_record (regcache
))
1574 if (record_full_arch_list_add_reg (regcache
, AMD64_RIP_REGNUM
))
1577 /* Record the change in the stack. */
1578 regcache_raw_read_unsigned (regcache
, AMD64_RSP_REGNUM
, &rsp
);
1581 rsp
-= AMD64_LINUX_redzone
;
1582 /* This is for xstate.
1583 sp -= sizeof (struct _fpstate); */
1584 rsp
-= AMD64_LINUX_xstate
;
1585 /* This is for frame_size.
1586 sp -= sizeof (struct rt_sigframe); */
1587 rsp
-= AMD64_LINUX_frame_size
;
1588 if (record_full_arch_list_add_mem (rsp
, AMD64_LINUX_redzone
1589 + AMD64_LINUX_xstate
1590 + AMD64_LINUX_frame_size
))
1593 if (record_full_arch_list_add_end ())
1599 /* Return true if the core file ABFD contains shadow stack pointer state.
1600 Otherwise, return false. */
1603 amd64_linux_core_read_ssp_state_p (bfd
*abfd
)
1605 return bfd_get_section_by_name (abfd
, ".reg-ssp") != nullptr;
1608 /* Get Linux/x86 target description from core dump. */
1610 static const struct target_desc
*
1611 amd64_linux_core_read_description (struct gdbarch
*gdbarch
,
1612 struct target_ops
*target
,
1616 x86_xsave_layout layout
;
1617 uint64_t xstate_bv
= i386_linux_core_read_xsave_info (abfd
, layout
);
1619 xstate_bv
= X86_XSTATE_SSE_MASK
;
1621 if (amd64_linux_core_read_ssp_state_p (abfd
))
1622 xstate_bv
|= X86_XSTATE_CET_U
;
1624 return amd64_linux_read_description (xstate_bv
& X86_XSTATE_ALL_MASK
,
1625 gdbarch_ptr_bit (gdbarch
) == 32);
1628 /* Similar to amd64_supply_fpregset, but use XSAVE extended state. */
1631 amd64_linux_supply_xstateregset (const struct regset
*regset
,
1632 struct regcache
*regcache
, int regnum
,
1633 const void *xstateregs
, size_t len
)
1635 amd64_supply_xsave (regcache
, regnum
, xstateregs
);
1638 /* Similar to amd64_collect_fpregset, but use XSAVE extended state. */
1641 amd64_linux_collect_xstateregset (const struct regset
*regset
,
1642 const struct regcache
*regcache
,
1643 int regnum
, void *xstateregs
, size_t len
)
1645 amd64_collect_xsave (regcache
, regnum
, xstateregs
, 1);
1648 static const struct regset amd64_linux_xstateregset
=
1651 amd64_linux_supply_xstateregset
,
1652 amd64_linux_collect_xstateregset
1655 /* Supply shadow stack pointer register from SSP to the register cache
1659 amd64_linux_supply_ssp (const regset
*regset
,
1660 regcache
*regcache
, int regnum
,
1661 const void *ssp
, size_t len
)
1663 gdb_assert (len
== sizeof (uint64_t));
1664 x86_supply_ssp (regcache
, *static_cast<const uint64_t *> (ssp
));
1667 /* Collect the shadow stack pointer register from the register cache
1668 REGCACHE and store it in SSP. */
1671 amd64_linux_collect_ssp (const regset
*regset
,
1672 const regcache
*regcache
, int regnum
,
1673 void *ssp
, size_t len
)
1675 gdb_assert (len
== sizeof (uint64_t));
1676 x86_collect_ssp (regcache
, *static_cast<uint64_t *> (ssp
));
1679 /* Shadow stack pointer register. */
1681 static const struct regset amd64_linux_ssp_register
1683 NULL
, amd64_linux_supply_ssp
, amd64_linux_collect_ssp
1686 /* Iterate over core file register note sections. */
1689 amd64_linux_iterate_over_regset_sections (struct gdbarch
*gdbarch
,
1690 iterate_over_regset_sections_cb
*cb
,
1692 const struct regcache
*regcache
)
1694 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
1696 cb (".reg", 27 * 8, 27 * 8, &i386_gregset
, NULL
, cb_data
);
1697 cb (".reg2", 512, 512, &amd64_fpregset
, NULL
, cb_data
);
1698 if (tdep
->xsave_layout
.sizeof_xsave
!= 0)
1699 cb (".reg-xstate", tdep
->xsave_layout
.sizeof_xsave
,
1700 tdep
->xsave_layout
.sizeof_xsave
, &amd64_linux_xstateregset
,
1701 "XSAVE extended state", cb_data
);
1703 /* SSP can be unavailable. Thus, we need to check the register status
1704 in case we write a core file (regcache != nullptr). */
1705 if (tdep
->ssp_regnum
!= -1
1706 && (regcache
== nullptr
1707 || REG_VALID
== regcache
->get_register_status (tdep
->ssp_regnum
)))
1708 cb (".reg-ssp", 8, 8, &amd64_linux_ssp_register
,
1709 "shadow stack pointer", cb_data
);
1712 /* The instruction sequences used in x86_64 machines for a
1713 disabled is-enabled probe. */
1715 const gdb_byte amd64_dtrace_disabled_probe_sequence_1
[] = {
1716 /* xor %rax, %rax */ 0x48, 0x33, 0xc0,
1721 const gdb_byte amd64_dtrace_disabled_probe_sequence_2
[] = {
1722 /* xor %rax, %rax */ 0x48, 0x33, 0xc0,
1727 /* The instruction sequence used in x86_64 machines for enabling a
1728 DTrace is-enabled probe. */
1730 const gdb_byte amd64_dtrace_enable_probe_sequence
[] = {
1731 /* mov $0x1, %eax */ 0xb8, 0x01, 0x00, 0x00, 0x00
1734 /* The instruction sequence used in x86_64 machines for disabling a
1735 DTrace is-enabled probe. */
1737 const gdb_byte amd64_dtrace_disable_probe_sequence
[] = {
1738 /* xor %rax, %rax; nop; nop */ 0x48, 0x33, 0xC0, 0x90, 0x90
1741 /* Implementation of `gdbarch_dtrace_probe_is_enabled', as defined in
1745 amd64_dtrace_probe_is_enabled (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
1749 /* This function returns 1 if the instructions at ADDR do _not_
1750 follow any of the amd64_dtrace_disabled_probe_sequence_*
1753 Note that ADDR is offset 3 bytes from the beginning of these
1756 read_code (addr
- 3, buf
, 5);
1757 return (memcmp (buf
, amd64_dtrace_disabled_probe_sequence_1
, 5) != 0
1758 && memcmp (buf
, amd64_dtrace_disabled_probe_sequence_2
, 5) != 0);
1761 /* Implementation of `gdbarch_dtrace_enable_probe', as defined in
1765 amd64_dtrace_enable_probe (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
1767 /* Note also that ADDR is offset 3 bytes from the beginning of
1768 amd64_dtrace_enable_probe_sequence. */
1770 write_memory (addr
- 3, amd64_dtrace_enable_probe_sequence
, 5);
1773 /* Implementation of `gdbarch_dtrace_disable_probe', as defined in
1777 amd64_dtrace_disable_probe (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
1779 /* Note also that ADDR is offset 3 bytes from the beginning of
1780 amd64_dtrace_disable_probe_sequence. */
1782 write_memory (addr
- 3, amd64_dtrace_disable_probe_sequence
, 5);
1785 /* Implementation of `gdbarch_dtrace_parse_probe_argument', as defined
1788 static expr::operation_up
1789 amd64_dtrace_parse_probe_argument (struct gdbarch
*gdbarch
,
1792 /* DTrace probe arguments can be found on the ABI-defined places for
1793 regular arguments at the current PC. The probe abstraction
1794 currently supports up to 12 arguments for probes. */
1796 using namespace expr
;
1800 static const int arg_reg_map
[6] =
1802 AMD64_RDI_REGNUM
, /* Arg 1. */
1803 AMD64_RSI_REGNUM
, /* Arg 2. */
1804 AMD64_RDX_REGNUM
, /* Arg 3. */
1805 AMD64_RCX_REGNUM
, /* Arg 4. */
1806 AMD64_R8_REGNUM
, /* Arg 5. */
1807 AMD64_R9_REGNUM
/* Arg 6. */
1809 int regno
= arg_reg_map
[narg
];
1810 const char *regname
= user_reg_map_regnum_to_name (gdbarch
, regno
);
1811 return make_operation
<register_operation
> (regname
);
1815 /* Additional arguments are passed on the stack. */
1816 const char *regname
= user_reg_map_regnum_to_name (gdbarch
, AMD64_RSP_REGNUM
);
1819 struct type
*long_type
= builtin_type (gdbarch
)->builtin_long
;
1820 operation_up disp
= make_operation
<long_const_operation
> (long_type
,
1824 operation_up reg
= make_operation
<register_operation
> (regname
);
1826 operation_up add
= make_operation
<add_operation
> (std::move (disp
),
1830 operation_up cast
= make_operation
<unop_cast_operation
> (std::move (add
),
1833 return make_operation
<unop_ind_operation
> (std::move (cast
));
1837 /* Extract the untagging mask based on the currently active linear address
1838 masking (LAM) mode, which is stored in the /proc/<pid>/status file.
1839 If we cannot extract the untag mask (for example, if we don't have
1840 execution), we assume address tagging is not enabled and return the
1841 DEFAULT_TAG_MASK. */
1844 amd64_linux_lam_untag_mask ()
1846 if (!target_has_execution ())
1847 return DEFAULT_TAG_MASK
;
1849 inferior
*inf
= current_inferior ();
1850 if (inf
->fake_pid_p
)
1851 return DEFAULT_TAG_MASK
;
1853 const std::string filename
= string_printf ("/proc/%d/status", inf
->pid
);
1854 gdb::unique_xmalloc_ptr
<char> status_file
1855 = target_fileio_read_stralloc (nullptr, filename
.c_str ());
1857 if (status_file
== nullptr)
1858 return DEFAULT_TAG_MASK
;
1860 std::string_view
status_file_view (status_file
.get ());
1861 constexpr std::string_view untag_mask_str
= "untag_mask:\t";
1862 const size_t found
= status_file_view
.find (untag_mask_str
);
1863 if (found
!= std::string::npos
)
1865 const char* start
= status_file_view
.data() + found
1866 + untag_mask_str
.length ();
1869 unsigned long long result
= std::strtoul (start
, &endptr
, 0);
1870 if (errno
!= 0 || endptr
== start
)
1871 error (_("Failed to parse untag_mask from file %s."),
1872 std::string (filename
).c_str ());
1877 return DEFAULT_TAG_MASK
;
1880 /* Adjust watchpoint address based on the currently active linear address
1881 masking (LAM) mode using the untag mask. Check each time for a new
1882 mask, as LAM is enabled at runtime. */
1885 amd64_linux_remove_non_address_bits_watchpoint (gdbarch
*gdbarch
,
1888 /* Clear insignificant bits of a target address using the untag
1890 return (addr
& amd64_linux_lam_untag_mask ());
1893 /* Fetch and return the TLS DTV (dynamic thread vector) address for PTID.
1894 Throw a suitable TLS error if something goes wrong. */
1897 amd64_linux_get_tls_dtv_addr (struct gdbarch
*gdbarch
, ptid_t ptid
,
1898 enum svr4_tls_libc libc
)
1900 /* On x86-64, the thread pointer is found in the fsbase register. */
1902 = get_thread_arch_regcache (current_inferior (), ptid
, gdbarch
);
1903 target_fetch_registers (regcache
, AMD64_FSBASE_REGNUM
);
1905 if (regcache
->cooked_read (AMD64_FSBASE_REGNUM
, &fsbase
) != REG_VALID
)
1906 throw_error (TLS_GENERIC_ERROR
, _("Unable to fetch thread pointer"));
1908 /* The thread pointer (fsbase) points at the TCB (thread control
1909 block). The first two members of this struct are both pointers,
1910 where the first will be a pointer to the TCB (i.e. it points at
1911 itself) and the second will be a pointer to the DTV (dynamic
1912 thread vector). There are many other fields too, but the one
1913 we care about here is the DTV pointer. Compute the address
1914 of the DTV pointer, fetch it, and convert it to an address. */
1915 CORE_ADDR dtv_ptr_addr
= fsbase
+ gdbarch_ptr_bit (gdbarch
) / TARGET_CHAR_BIT
;
1916 gdb::byte_vector
buf (gdbarch_ptr_bit (gdbarch
) / TARGET_CHAR_BIT
);
1917 if (target_read_memory (dtv_ptr_addr
, buf
.data (), buf
.size ()) != 0)
1918 throw_error (TLS_GENERIC_ERROR
, _("Unable to fetch DTV address"));
1920 const struct builtin_type
*builtin
= builtin_type (gdbarch
);
1921 CORE_ADDR dtv_addr
= gdbarch_pointer_to_address
1922 (gdbarch
, builtin
->builtin_data_ptr
, buf
.data ());
1926 /* Return the number of bytes required to update the shadow stack pointer
1927 by one element. For x32 the shadow stack elements are still 64-bit
1928 aligned. Thus, gdbarch_addr_bit cannot be used to compute the new
1932 amd64_linux_shadow_stack_element_size_aligned (gdbarch
*gdbarch
)
1934 const bfd_arch_info
*binfo
= gdbarch_bfd_arch_info (gdbarch
);
1935 return (binfo
->bits_per_word
/ binfo
->bits_per_byte
);
1938 /* Read the shadow stack pointer register and return its value, if
1941 static std::optional
<CORE_ADDR
>
1942 amd64_linux_get_shadow_stack_pointer (gdbarch
*gdbarch
, regcache
*regcache
,
1943 bool &shadow_stack_enabled
)
1945 shadow_stack_enabled
= false;
1946 const i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
1948 if (tdep
->ssp_regnum
< 0)
1952 if (regcache_raw_read_unsigned (regcache
, tdep
->ssp_regnum
, &ssp
)
1956 /* Dependent on the target in case the shadow stack pointer is
1957 unavailable, the ssp register can be invalid or 0x0 when shadow stack
1958 is supported by HW and the linux kernel but not enabled for the
1963 /* In case there is a shadow stack pointer available which is non-null,
1964 the shadow stack feature is enabled. */
1965 shadow_stack_enabled
= true;
1969 /* If shadow stack is enabled, push the address NEW_ADDR to the shadow
1970 stack and increment the shadow stack pointer accordingly. */
1973 amd64_linux_shadow_stack_push (gdbarch
*gdbarch
, CORE_ADDR new_addr
,
1976 bool shadow_stack_enabled
;
1977 std::optional
<CORE_ADDR
> ssp
1978 = amd64_linux_get_shadow_stack_pointer (gdbarch
, regcache
,
1979 shadow_stack_enabled
);
1981 /* For amd64/Linux, if SSP has a value that means shadow stack is
1983 if (!ssp
.has_value ())
1986 gdb_assert (shadow_stack_enabled
);
1988 /* The shadow stack grows downwards. To push addresses to the stack,
1989 we need to decrement SSP. */
1990 const int element_size
1991 = amd64_linux_shadow_stack_element_size_aligned (gdbarch
);
1992 const CORE_ADDR new_ssp
= *ssp
- element_size
;
1994 /* Using /proc/PID/smaps we can only check if NEW_SSP points to shadow
1995 stack memory. If it doesn't, we assume the stack is full. */
1996 std::pair
<CORE_ADDR
, CORE_ADDR
> memrange
;
1997 if (!linux_address_in_shadow_stack_mem_range (new_ssp
, &memrange
))
1998 error (_("No space left on the shadow stack."));
2000 /* On x86 there can be a shadow stack token at bit 63. For x32, the
2001 address size is only 32 bit. Always write back the full 8 bytes to
2002 include the shadow stack token. */
2003 const bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2004 write_memory_unsigned_integer (new_ssp
, element_size
, byte_order
,
2005 (ULONGEST
) new_addr
);
2007 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
2008 gdb_assert (tdep
->ssp_regnum
> -1);
2010 regcache_raw_write_unsigned (regcache
, tdep
->ssp_regnum
, new_ssp
);
2013 /* Implement shadow stack pointer unwinding. For each new shadow stack
2014 pointer check if its address is still in the shadow stack memory range.
2015 If it's outside the range set the returned value to unavailable,
2016 otherwise return a value containing the new shadow stack pointer. */
2019 amd64_linux_dwarf2_prev_ssp (const frame_info_ptr
&this_frame
,
2020 void **this_cache
, int regnum
)
2022 value
*v
= frame_unwind_got_register (this_frame
, regnum
, regnum
);
2023 gdb_assert (v
!= nullptr);
2025 gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2027 if (v
->entirely_available () && !v
->optimized_out ())
2029 int size
= register_size (gdbarch
, regnum
);
2030 bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2031 CORE_ADDR ssp
= extract_unsigned_integer (v
->contents_all ().data (),
2034 /* Using /proc/PID/smaps we can only check if the current shadow
2035 stack pointer SSP points to shadow stack memory. Only if this is
2036 the case a valid previous shadow stack pointer can be
2038 std::pair
<CORE_ADDR
, CORE_ADDR
> range
;
2039 if (linux_address_in_shadow_stack_mem_range (ssp
, &range
))
2041 /* The shadow stack grows downwards. To compute the previous
2042 shadow stack pointer, we need to increment SSP. */
2044 = ssp
+ amd64_linux_shadow_stack_element_size_aligned (gdbarch
);
2046 /* There can be scenarios where we have a shadow stack pointer
2047 but the shadow stack is empty, as no call instruction has
2048 been executed yet. If NEW_SSP points to the end of or before
2049 (<=) the current shadow stack memory range we consider
2050 NEW_SSP as valid (but empty). */
2051 if (new_ssp
<= range
.second
)
2052 return frame_unwind_got_address (this_frame
, regnum
, new_ssp
);
2056 /* Return a value which is marked as unavailable in case we could not
2057 calculate a valid previous shadow stack pointer. */
2059 = value::allocate_register (get_next_frame_sentinel_okay (this_frame
),
2060 regnum
, register_type (gdbarch
, regnum
));
2061 retval
->mark_bytes_unavailable (0, retval
->type ()->length ());
2065 /* Implement the "init_reg" dwarf2_frame_ops method. */
2068 amd64_init_reg (gdbarch
*gdbarch
, int regnum
, dwarf2_frame_state_reg
*reg
,
2069 const frame_info_ptr
&this_frame
)
2071 if (regnum
== gdbarch_pc_regnum (gdbarch
))
2072 reg
->how
= DWARF2_FRAME_REG_RA
;
2073 else if (regnum
== gdbarch_sp_regnum (gdbarch
))
2074 reg
->how
= DWARF2_FRAME_REG_CFA
;
2075 else if (regnum
== AMD64_PL3_SSP_REGNUM
)
2077 reg
->how
= DWARF2_FRAME_REG_FN
;
2078 reg
->loc
.fn
= amd64_linux_dwarf2_prev_ssp
;
2083 amd64_linux_init_abi_common (struct gdbarch_info info
, struct gdbarch
*gdbarch
,
2084 int num_disp_step_buffers
)
2086 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
2088 linux_init_abi (info
, gdbarch
, num_disp_step_buffers
);
2090 tdep
->sigtramp_p
= amd64_linux_sigtramp_p
;
2091 tdep
->sigcontext_addr
= amd64_linux_sigcontext_addr
;
2092 tdep
->sc_reg_offset
= amd64_linux_sc_reg_offset
;
2093 tdep
->sc_num_regs
= ARRAY_SIZE (amd64_linux_sc_reg_offset
);
2095 tdep
->xsave_xcr0_offset
= I386_LINUX_XSAVE_XCR0_OFFSET
;
2096 set_gdbarch_core_read_x86_xsave_layout
2097 (gdbarch
, i386_linux_core_read_x86_xsave_layout
);
2099 /* Add the %orig_rax register used for syscall restarting. */
2100 set_gdbarch_write_pc (gdbarch
, amd64_linux_write_pc
);
2102 tdep
->register_reggroup_p
= amd64_linux_register_reggroup_p
;
2104 /* Functions for 'catch syscall'. */
2105 set_xml_syscall_file_name (gdbarch
, XML_SYSCALL_FILENAME_AMD64
);
2106 set_gdbarch_get_syscall_number (gdbarch
,
2107 amd64_linux_get_syscall_number
);
2109 /* Enable TLS support. */
2110 set_gdbarch_fetch_tls_load_module_address (gdbarch
,
2111 svr4_fetch_objfile_link_map
);
2112 set_gdbarch_get_thread_local_address (gdbarch
,
2113 svr4_tls_get_thread_local_address
);
2114 svr4_tls_register_tls_methods (info
, gdbarch
, amd64_linux_get_tls_dtv_addr
);
2116 /* GNU/Linux uses SVR4-style shared libraries. */
2117 set_gdbarch_skip_trampoline_code (gdbarch
, find_solib_trampoline_target
);
2119 /* GNU/Linux uses the dynamic linker included in the GNU C Library. */
2120 set_gdbarch_skip_solib_resolver (gdbarch
, glibc_skip_solib_resolver
);
2122 /* Iterate over core file register note sections. */
2123 set_gdbarch_iterate_over_regset_sections
2124 (gdbarch
, amd64_linux_iterate_over_regset_sections
);
2126 set_gdbarch_core_read_description (gdbarch
,
2127 amd64_linux_core_read_description
);
2129 /* Displaced stepping. */
2130 set_gdbarch_displaced_step_copy_insn (gdbarch
,
2131 amd64_displaced_step_copy_insn
);
2132 set_gdbarch_displaced_step_fixup (gdbarch
, amd64_displaced_step_fixup
);
2134 set_gdbarch_process_record (gdbarch
, i386_process_record
);
2135 set_gdbarch_process_record_signal (gdbarch
, amd64_linux_record_signal
);
2137 set_gdbarch_remove_non_address_bits_watchpoint
2138 (gdbarch
, amd64_linux_remove_non_address_bits_watchpoint
);
2140 set_gdbarch_shadow_stack_push (gdbarch
, amd64_linux_shadow_stack_push
);
2141 set_gdbarch_get_shadow_stack_pointer (gdbarch
,
2142 amd64_linux_get_shadow_stack_pointer
);
2143 dwarf2_frame_set_init_reg (gdbarch
, amd64_init_reg
);
2147 amd64_linux_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
2149 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
2150 struct tdesc_arch_data
*tdesc_data
= info
.tdesc_data
;
2151 const struct tdesc_feature
*feature
;
2154 gdb_assert (tdesc_data
);
2156 tdep
->gregset_reg_offset
= amd64_linux_gregset_reg_offset
;
2157 tdep
->gregset_num_regs
= ARRAY_SIZE (amd64_linux_gregset_reg_offset
);
2158 tdep
->sizeof_gregset
= 27 * 8;
2160 amd64_init_abi (info
, gdbarch
,
2161 amd64_linux_read_description (X86_XSTATE_SSE_MASK
, false));
2163 const target_desc
*tdesc
= tdep
->tdesc
;
2165 /* Reserve a number for orig_rax. */
2166 set_gdbarch_num_regs (gdbarch
, AMD64_LINUX_NUM_REGS
);
2168 feature
= tdesc_find_feature (tdesc
, "org.gnu.gdb.i386.linux");
2169 if (feature
== NULL
)
2172 valid_p
= tdesc_numbered_register (feature
, tdesc_data
,
2173 AMD64_LINUX_ORIG_RAX_REGNUM
,
2178 amd64_linux_init_abi_common (info
, gdbarch
, 2);
2180 /* Initialize the amd64_linux_record_tdep. */
2181 /* These values are the size of the type that will be used in a system
2182 call. They are obtained from Linux Kernel source. */
2183 amd64_linux_record_tdep
.size_pointer
2184 = gdbarch_ptr_bit (gdbarch
) / TARGET_CHAR_BIT
;
2185 amd64_linux_record_tdep
.size__old_kernel_stat
= 32;
2186 amd64_linux_record_tdep
.size_tms
= 32;
2187 amd64_linux_record_tdep
.size_loff_t
= 8;
2188 amd64_linux_record_tdep
.size_flock
= 32;
2189 amd64_linux_record_tdep
.size_oldold_utsname
= 45;
2190 amd64_linux_record_tdep
.size_ustat
= 32;
2191 /* ADM64 doesn't need this size because it doesn't have sys_sigaction
2192 but sys_rt_sigaction. */
2193 amd64_linux_record_tdep
.size_old_sigaction
= 32;
2194 /* ADM64 doesn't need this size because it doesn't have sys_sigpending
2195 but sys_rt_sigpending. */
2196 amd64_linux_record_tdep
.size_old_sigset_t
= 8;
2197 amd64_linux_record_tdep
.size_rlimit
= 16;
2198 amd64_linux_record_tdep
.size_rusage
= 144;
2199 amd64_linux_record_tdep
.size_timeval
= 16;
2200 amd64_linux_record_tdep
.size_timezone
= 8;
2201 /* ADM64 doesn't need this size because it doesn't have sys_getgroups16
2202 but sys_getgroups. */
2203 amd64_linux_record_tdep
.size_old_gid_t
= 2;
2204 /* ADM64 doesn't need this size because it doesn't have sys_getresuid16
2205 but sys_getresuid. */
2206 amd64_linux_record_tdep
.size_old_uid_t
= 2;
2207 amd64_linux_record_tdep
.size_fd_set
= 128;
2208 /* ADM64 doesn't need this size because it doesn't have sys_readdir. */
2209 amd64_linux_record_tdep
.size_old_dirent
= 280;
2210 amd64_linux_record_tdep
.size_statfs
= 120;
2211 amd64_linux_record_tdep
.size_statfs64
= 120;
2212 amd64_linux_record_tdep
.size_sockaddr
= 16;
2213 amd64_linux_record_tdep
.size_int
2214 = gdbarch_int_bit (gdbarch
) / TARGET_CHAR_BIT
;
2215 amd64_linux_record_tdep
.size_long
2216 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
2217 amd64_linux_record_tdep
.size_ulong
2218 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
2219 amd64_linux_record_tdep
.size_msghdr
= 56;
2220 amd64_linux_record_tdep
.size_itimerval
= 32;
2221 amd64_linux_record_tdep
.size_stat
= 144;
2222 amd64_linux_record_tdep
.size_old_utsname
= 325;
2223 amd64_linux_record_tdep
.size_sysinfo
= 112;
2224 amd64_linux_record_tdep
.size_msqid_ds
= 120;
2225 amd64_linux_record_tdep
.size_shmid_ds
= 112;
2226 amd64_linux_record_tdep
.size_new_utsname
= 390;
2227 amd64_linux_record_tdep
.size_timex
= 208;
2228 amd64_linux_record_tdep
.size_mem_dqinfo
= 24;
2229 amd64_linux_record_tdep
.size_if_dqblk
= 72;
2230 amd64_linux_record_tdep
.size_fs_quota_stat
= 80;
2231 amd64_linux_record_tdep
.size_timespec
= 16;
2232 amd64_linux_record_tdep
.size_pollfd
= 8;
2233 amd64_linux_record_tdep
.size_NFS_FHSIZE
= 32;
2234 amd64_linux_record_tdep
.size_knfsd_fh
= 132;
2235 amd64_linux_record_tdep
.size_TASK_COMM_LEN
= 16;
2236 amd64_linux_record_tdep
.size_sigaction
= 32;
2237 amd64_linux_record_tdep
.size_sigset_t
= 8;
2238 amd64_linux_record_tdep
.size_siginfo_t
= 128;
2239 amd64_linux_record_tdep
.size_cap_user_data_t
= 8;
2240 amd64_linux_record_tdep
.size_stack_t
= 24;
2241 amd64_linux_record_tdep
.size_off_t
= 8;
2242 amd64_linux_record_tdep
.size_stat64
= 144;
2243 amd64_linux_record_tdep
.size_gid_t
= 4;
2244 amd64_linux_record_tdep
.size_uid_t
= 4;
2245 amd64_linux_record_tdep
.size_PAGE_SIZE
= 4096;
2246 amd64_linux_record_tdep
.size_flock64
= 32;
2247 amd64_linux_record_tdep
.size_user_desc
= 16;
2248 amd64_linux_record_tdep
.size_io_event
= 32;
2249 amd64_linux_record_tdep
.size_iocb
= 64;
2250 amd64_linux_record_tdep
.size_epoll_event
= 12;
2251 amd64_linux_record_tdep
.size_itimerspec
= 32;
2252 amd64_linux_record_tdep
.size_mq_attr
= 64;
2253 amd64_linux_record_tdep
.size_termios
= 36;
2254 amd64_linux_record_tdep
.size_termios2
= 44;
2255 amd64_linux_record_tdep
.size_pid_t
= 4;
2256 amd64_linux_record_tdep
.size_winsize
= 8;
2257 amd64_linux_record_tdep
.size_serial_struct
= 72;
2258 amd64_linux_record_tdep
.size_serial_icounter_struct
= 80;
2259 amd64_linux_record_tdep
.size_hayes_esp_config
= 12;
2260 amd64_linux_record_tdep
.size_size_t
= 8;
2261 amd64_linux_record_tdep
.size_iovec
= 16;
2262 amd64_linux_record_tdep
.size_time_t
= 8;
2264 /* These values are the second argument of system call "sys_fcntl"
2265 and "sys_fcntl64". They are obtained from Linux Kernel source. */
2266 amd64_linux_record_tdep
.fcntl_F_GETLK
= 5;
2267 amd64_linux_record_tdep
.fcntl_F_GETLK64
= 12;
2268 amd64_linux_record_tdep
.fcntl_F_SETLK64
= 13;
2269 amd64_linux_record_tdep
.fcntl_F_SETLKW64
= 14;
2271 amd64_linux_record_tdep
.arg1
= AMD64_RDI_REGNUM
;
2272 amd64_linux_record_tdep
.arg2
= AMD64_RSI_REGNUM
;
2273 amd64_linux_record_tdep
.arg3
= AMD64_RDX_REGNUM
;
2274 amd64_linux_record_tdep
.arg4
= AMD64_R10_REGNUM
;
2275 amd64_linux_record_tdep
.arg5
= AMD64_R8_REGNUM
;
2276 amd64_linux_record_tdep
.arg6
= AMD64_R9_REGNUM
;
2278 /* These values are the second argument of system call "sys_ioctl".
2279 They are obtained from Linux Kernel source. */
2280 amd64_linux_record_tdep
.ioctl_TCGETS
= 0x5401;
2281 amd64_linux_record_tdep
.ioctl_TCSETS
= 0x5402;
2282 amd64_linux_record_tdep
.ioctl_TCSETSW
= 0x5403;
2283 amd64_linux_record_tdep
.ioctl_TCSETSF
= 0x5404;
2284 amd64_linux_record_tdep
.ioctl_TCGETA
= 0x5405;
2285 amd64_linux_record_tdep
.ioctl_TCSETA
= 0x5406;
2286 amd64_linux_record_tdep
.ioctl_TCSETAW
= 0x5407;
2287 amd64_linux_record_tdep
.ioctl_TCSETAF
= 0x5408;
2288 amd64_linux_record_tdep
.ioctl_TCSBRK
= 0x5409;
2289 amd64_linux_record_tdep
.ioctl_TCXONC
= 0x540A;
2290 amd64_linux_record_tdep
.ioctl_TCFLSH
= 0x540B;
2291 amd64_linux_record_tdep
.ioctl_TIOCEXCL
= 0x540C;
2292 amd64_linux_record_tdep
.ioctl_TIOCNXCL
= 0x540D;
2293 amd64_linux_record_tdep
.ioctl_TIOCSCTTY
= 0x540E;
2294 amd64_linux_record_tdep
.ioctl_TIOCGPGRP
= 0x540F;
2295 amd64_linux_record_tdep
.ioctl_TIOCSPGRP
= 0x5410;
2296 amd64_linux_record_tdep
.ioctl_TIOCOUTQ
= 0x5411;
2297 amd64_linux_record_tdep
.ioctl_TIOCSTI
= 0x5412;
2298 amd64_linux_record_tdep
.ioctl_TIOCGWINSZ
= 0x5413;
2299 amd64_linux_record_tdep
.ioctl_TIOCSWINSZ
= 0x5414;
2300 amd64_linux_record_tdep
.ioctl_TIOCMGET
= 0x5415;
2301 amd64_linux_record_tdep
.ioctl_TIOCMBIS
= 0x5416;
2302 amd64_linux_record_tdep
.ioctl_TIOCMBIC
= 0x5417;
2303 amd64_linux_record_tdep
.ioctl_TIOCMSET
= 0x5418;
2304 amd64_linux_record_tdep
.ioctl_TIOCGSOFTCAR
= 0x5419;
2305 amd64_linux_record_tdep
.ioctl_TIOCSSOFTCAR
= 0x541A;
2306 amd64_linux_record_tdep
.ioctl_FIONREAD
= 0x541B;
2307 amd64_linux_record_tdep
.ioctl_TIOCINQ
2308 = amd64_linux_record_tdep
.ioctl_FIONREAD
;
2309 amd64_linux_record_tdep
.ioctl_TIOCLINUX
= 0x541C;
2310 amd64_linux_record_tdep
.ioctl_TIOCCONS
= 0x541D;
2311 amd64_linux_record_tdep
.ioctl_TIOCGSERIAL
= 0x541E;
2312 amd64_linux_record_tdep
.ioctl_TIOCSSERIAL
= 0x541F;
2313 amd64_linux_record_tdep
.ioctl_TIOCPKT
= 0x5420;
2314 amd64_linux_record_tdep
.ioctl_FIONBIO
= 0x5421;
2315 amd64_linux_record_tdep
.ioctl_TIOCNOTTY
= 0x5422;
2316 amd64_linux_record_tdep
.ioctl_TIOCSETD
= 0x5423;
2317 amd64_linux_record_tdep
.ioctl_TIOCGETD
= 0x5424;
2318 amd64_linux_record_tdep
.ioctl_TCSBRKP
= 0x5425;
2319 amd64_linux_record_tdep
.ioctl_TIOCTTYGSTRUCT
= 0x5426;
2320 amd64_linux_record_tdep
.ioctl_TIOCSBRK
= 0x5427;
2321 amd64_linux_record_tdep
.ioctl_TIOCCBRK
= 0x5428;
2322 amd64_linux_record_tdep
.ioctl_TIOCGSID
= 0x5429;
2323 amd64_linux_record_tdep
.ioctl_TCGETS2
= 0x802c542a;
2324 amd64_linux_record_tdep
.ioctl_TCSETS2
= 0x402c542b;
2325 amd64_linux_record_tdep
.ioctl_TCSETSW2
= 0x402c542c;
2326 amd64_linux_record_tdep
.ioctl_TCSETSF2
= 0x402c542d;
2327 amd64_linux_record_tdep
.ioctl_TIOCGPTN
= 0x80045430;
2328 amd64_linux_record_tdep
.ioctl_TIOCSPTLCK
= 0x40045431;
2329 amd64_linux_record_tdep
.ioctl_FIONCLEX
= 0x5450;
2330 amd64_linux_record_tdep
.ioctl_FIOCLEX
= 0x5451;
2331 amd64_linux_record_tdep
.ioctl_FIOASYNC
= 0x5452;
2332 amd64_linux_record_tdep
.ioctl_TIOCSERCONFIG
= 0x5453;
2333 amd64_linux_record_tdep
.ioctl_TIOCSERGWILD
= 0x5454;
2334 amd64_linux_record_tdep
.ioctl_TIOCSERSWILD
= 0x5455;
2335 amd64_linux_record_tdep
.ioctl_TIOCGLCKTRMIOS
= 0x5456;
2336 amd64_linux_record_tdep
.ioctl_TIOCSLCKTRMIOS
= 0x5457;
2337 amd64_linux_record_tdep
.ioctl_TIOCSERGSTRUCT
= 0x5458;
2338 amd64_linux_record_tdep
.ioctl_TIOCSERGETLSR
= 0x5459;
2339 amd64_linux_record_tdep
.ioctl_TIOCSERGETMULTI
= 0x545A;
2340 amd64_linux_record_tdep
.ioctl_TIOCSERSETMULTI
= 0x545B;
2341 amd64_linux_record_tdep
.ioctl_TIOCMIWAIT
= 0x545C;
2342 amd64_linux_record_tdep
.ioctl_TIOCGICOUNT
= 0x545D;
2343 amd64_linux_record_tdep
.ioctl_TIOCGHAYESESP
= 0x545E;
2344 amd64_linux_record_tdep
.ioctl_TIOCSHAYESESP
= 0x545F;
2345 amd64_linux_record_tdep
.ioctl_FIOQSIZE
= 0x5460;
2347 tdep
->i386_syscall_record
= amd64_linux_syscall_record
;
2349 /* GNU/Linux uses SVR4-style shared libraries. */
2350 set_solib_svr4_ops (gdbarch
, make_linux_lp64_svr4_solib_ops
);
2352 /* Register DTrace handlers. */
2353 set_gdbarch_dtrace_parse_probe_argument (gdbarch
, amd64_dtrace_parse_probe_argument
);
2354 set_gdbarch_dtrace_probe_is_enabled (gdbarch
, amd64_dtrace_probe_is_enabled
);
2355 set_gdbarch_dtrace_enable_probe (gdbarch
, amd64_dtrace_enable_probe
);
2356 set_gdbarch_dtrace_disable_probe (gdbarch
, amd64_dtrace_disable_probe
);
2360 amd64_x32_linux_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
2362 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
2363 struct tdesc_arch_data
*tdesc_data
= info
.tdesc_data
;
2364 const struct tdesc_feature
*feature
;
2367 gdb_assert (tdesc_data
);
2369 tdep
->gregset_reg_offset
= amd64_linux_gregset_reg_offset
;
2370 tdep
->gregset_num_regs
= ARRAY_SIZE (amd64_linux_gregset_reg_offset
);
2371 tdep
->sizeof_gregset
= 27 * 8;
2373 amd64_x32_init_abi (info
, gdbarch
,
2374 amd64_linux_read_description (X86_XSTATE_SSE_MASK
,
2377 /* Reserve a number for orig_rax. */
2378 set_gdbarch_num_regs (gdbarch
, AMD64_LINUX_NUM_REGS
);
2380 const target_desc
*tdesc
= tdep
->tdesc
;
2382 feature
= tdesc_find_feature (tdesc
, "org.gnu.gdb.i386.linux");
2383 if (feature
== NULL
)
2386 valid_p
= tdesc_numbered_register (feature
, tdesc_data
,
2387 AMD64_LINUX_ORIG_RAX_REGNUM
,
2392 amd64_linux_init_abi_common (info
, gdbarch
, 0);
2394 /* Initialize the amd64_x32_linux_record_tdep. */
2395 /* These values are the size of the type that will be used in a system
2396 call. They are obtained from Linux Kernel source. */
2397 amd64_x32_linux_record_tdep
.size_pointer
2398 = gdbarch_ptr_bit (gdbarch
) / TARGET_CHAR_BIT
;
2399 amd64_x32_linux_record_tdep
.size__old_kernel_stat
= 32;
2400 amd64_x32_linux_record_tdep
.size_tms
= 32;
2401 amd64_x32_linux_record_tdep
.size_loff_t
= 8;
2402 amd64_x32_linux_record_tdep
.size_flock
= 32;
2403 amd64_x32_linux_record_tdep
.size_oldold_utsname
= 45;
2404 amd64_x32_linux_record_tdep
.size_ustat
= 32;
2405 /* ADM64 doesn't need this size because it doesn't have sys_sigaction
2406 but sys_rt_sigaction. */
2407 amd64_x32_linux_record_tdep
.size_old_sigaction
= 16;
2408 /* ADM64 doesn't need this size because it doesn't have sys_sigpending
2409 but sys_rt_sigpending. */
2410 amd64_x32_linux_record_tdep
.size_old_sigset_t
= 4;
2411 amd64_x32_linux_record_tdep
.size_rlimit
= 16;
2412 amd64_x32_linux_record_tdep
.size_rusage
= 144;
2413 amd64_x32_linux_record_tdep
.size_timeval
= 16;
2414 amd64_x32_linux_record_tdep
.size_timezone
= 8;
2415 /* ADM64 doesn't need this size because it doesn't have sys_getgroups16
2416 but sys_getgroups. */
2417 amd64_x32_linux_record_tdep
.size_old_gid_t
= 2;
2418 /* ADM64 doesn't need this size because it doesn't have sys_getresuid16
2419 but sys_getresuid. */
2420 amd64_x32_linux_record_tdep
.size_old_uid_t
= 2;
2421 amd64_x32_linux_record_tdep
.size_fd_set
= 128;
2422 /* ADM64 doesn't need this size because it doesn't have sys_readdir. */
2423 amd64_x32_linux_record_tdep
.size_old_dirent
= 268;
2424 amd64_x32_linux_record_tdep
.size_statfs
= 120;
2425 amd64_x32_linux_record_tdep
.size_statfs64
= 120;
2426 amd64_x32_linux_record_tdep
.size_sockaddr
= 16;
2427 amd64_x32_linux_record_tdep
.size_int
2428 = gdbarch_int_bit (gdbarch
) / TARGET_CHAR_BIT
;
2429 amd64_x32_linux_record_tdep
.size_long
2430 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
2431 amd64_x32_linux_record_tdep
.size_ulong
2432 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
2433 amd64_x32_linux_record_tdep
.size_msghdr
= 28;
2434 amd64_x32_linux_record_tdep
.size_itimerval
= 32;
2435 amd64_x32_linux_record_tdep
.size_stat
= 144;
2436 amd64_x32_linux_record_tdep
.size_old_utsname
= 325;
2437 amd64_x32_linux_record_tdep
.size_sysinfo
= 112;
2438 amd64_x32_linux_record_tdep
.size_msqid_ds
= 120;
2439 amd64_x32_linux_record_tdep
.size_shmid_ds
= 112;
2440 amd64_x32_linux_record_tdep
.size_new_utsname
= 390;
2441 amd64_x32_linux_record_tdep
.size_timex
= 208;
2442 amd64_x32_linux_record_tdep
.size_mem_dqinfo
= 24;
2443 amd64_x32_linux_record_tdep
.size_if_dqblk
= 72;
2444 amd64_x32_linux_record_tdep
.size_fs_quota_stat
= 80;
2445 amd64_x32_linux_record_tdep
.size_timespec
= 16;
2446 amd64_x32_linux_record_tdep
.size_pollfd
= 8;
2447 amd64_x32_linux_record_tdep
.size_NFS_FHSIZE
= 32;
2448 amd64_x32_linux_record_tdep
.size_knfsd_fh
= 132;
2449 amd64_x32_linux_record_tdep
.size_TASK_COMM_LEN
= 16;
2450 amd64_x32_linux_record_tdep
.size_sigaction
= 20;
2451 amd64_x32_linux_record_tdep
.size_sigset_t
= 8;
2452 amd64_x32_linux_record_tdep
.size_siginfo_t
= 128;
2453 amd64_x32_linux_record_tdep
.size_cap_user_data_t
= 8;
2454 amd64_x32_linux_record_tdep
.size_stack_t
= 12;
2455 amd64_x32_linux_record_tdep
.size_off_t
= 8;
2456 amd64_x32_linux_record_tdep
.size_stat64
= 144;
2457 amd64_x32_linux_record_tdep
.size_gid_t
= 4;
2458 amd64_x32_linux_record_tdep
.size_uid_t
= 4;
2459 amd64_x32_linux_record_tdep
.size_PAGE_SIZE
= 4096;
2460 amd64_x32_linux_record_tdep
.size_flock64
= 32;
2461 amd64_x32_linux_record_tdep
.size_user_desc
= 16;
2462 amd64_x32_linux_record_tdep
.size_io_event
= 32;
2463 amd64_x32_linux_record_tdep
.size_iocb
= 64;
2464 amd64_x32_linux_record_tdep
.size_epoll_event
= 12;
2465 amd64_x32_linux_record_tdep
.size_itimerspec
= 32;
2466 amd64_x32_linux_record_tdep
.size_mq_attr
= 64;
2467 amd64_x32_linux_record_tdep
.size_termios
= 36;
2468 amd64_x32_linux_record_tdep
.size_termios2
= 44;
2469 amd64_x32_linux_record_tdep
.size_pid_t
= 4;
2470 amd64_x32_linux_record_tdep
.size_winsize
= 8;
2471 amd64_x32_linux_record_tdep
.size_serial_struct
= 72;
2472 amd64_x32_linux_record_tdep
.size_serial_icounter_struct
= 80;
2473 amd64_x32_linux_record_tdep
.size_hayes_esp_config
= 12;
2474 amd64_x32_linux_record_tdep
.size_size_t
= 4;
2475 amd64_x32_linux_record_tdep
.size_iovec
= 8;
2476 amd64_x32_linux_record_tdep
.size_time_t
= 8;
2478 /* These values are the second argument of system call "sys_fcntl"
2479 and "sys_fcntl64". They are obtained from Linux Kernel source. */
2480 amd64_x32_linux_record_tdep
.fcntl_F_GETLK
= 5;
2481 amd64_x32_linux_record_tdep
.fcntl_F_GETLK64
= 12;
2482 amd64_x32_linux_record_tdep
.fcntl_F_SETLK64
= 13;
2483 amd64_x32_linux_record_tdep
.fcntl_F_SETLKW64
= 14;
2485 amd64_x32_linux_record_tdep
.arg1
= AMD64_RDI_REGNUM
;
2486 amd64_x32_linux_record_tdep
.arg2
= AMD64_RSI_REGNUM
;
2487 amd64_x32_linux_record_tdep
.arg3
= AMD64_RDX_REGNUM
;
2488 amd64_x32_linux_record_tdep
.arg4
= AMD64_R10_REGNUM
;
2489 amd64_x32_linux_record_tdep
.arg5
= AMD64_R8_REGNUM
;
2490 amd64_x32_linux_record_tdep
.arg6
= AMD64_R9_REGNUM
;
2492 /* These values are the second argument of system call "sys_ioctl".
2493 They are obtained from Linux Kernel source. */
2494 amd64_x32_linux_record_tdep
.ioctl_TCGETS
= 0x5401;
2495 amd64_x32_linux_record_tdep
.ioctl_TCSETS
= 0x5402;
2496 amd64_x32_linux_record_tdep
.ioctl_TCSETSW
= 0x5403;
2497 amd64_x32_linux_record_tdep
.ioctl_TCSETSF
= 0x5404;
2498 amd64_x32_linux_record_tdep
.ioctl_TCGETA
= 0x5405;
2499 amd64_x32_linux_record_tdep
.ioctl_TCSETA
= 0x5406;
2500 amd64_x32_linux_record_tdep
.ioctl_TCSETAW
= 0x5407;
2501 amd64_x32_linux_record_tdep
.ioctl_TCSETAF
= 0x5408;
2502 amd64_x32_linux_record_tdep
.ioctl_TCSBRK
= 0x5409;
2503 amd64_x32_linux_record_tdep
.ioctl_TCXONC
= 0x540A;
2504 amd64_x32_linux_record_tdep
.ioctl_TCFLSH
= 0x540B;
2505 amd64_x32_linux_record_tdep
.ioctl_TIOCEXCL
= 0x540C;
2506 amd64_x32_linux_record_tdep
.ioctl_TIOCNXCL
= 0x540D;
2507 amd64_x32_linux_record_tdep
.ioctl_TIOCSCTTY
= 0x540E;
2508 amd64_x32_linux_record_tdep
.ioctl_TIOCGPGRP
= 0x540F;
2509 amd64_x32_linux_record_tdep
.ioctl_TIOCSPGRP
= 0x5410;
2510 amd64_x32_linux_record_tdep
.ioctl_TIOCOUTQ
= 0x5411;
2511 amd64_x32_linux_record_tdep
.ioctl_TIOCSTI
= 0x5412;
2512 amd64_x32_linux_record_tdep
.ioctl_TIOCGWINSZ
= 0x5413;
2513 amd64_x32_linux_record_tdep
.ioctl_TIOCSWINSZ
= 0x5414;
2514 amd64_x32_linux_record_tdep
.ioctl_TIOCMGET
= 0x5415;
2515 amd64_x32_linux_record_tdep
.ioctl_TIOCMBIS
= 0x5416;
2516 amd64_x32_linux_record_tdep
.ioctl_TIOCMBIC
= 0x5417;
2517 amd64_x32_linux_record_tdep
.ioctl_TIOCMSET
= 0x5418;
2518 amd64_x32_linux_record_tdep
.ioctl_TIOCGSOFTCAR
= 0x5419;
2519 amd64_x32_linux_record_tdep
.ioctl_TIOCSSOFTCAR
= 0x541A;
2520 amd64_x32_linux_record_tdep
.ioctl_FIONREAD
= 0x541B;
2521 amd64_x32_linux_record_tdep
.ioctl_TIOCINQ
= amd64_x32_linux_record_tdep
.ioctl_FIONREAD
;
2522 amd64_x32_linux_record_tdep
.ioctl_TIOCLINUX
= 0x541C;
2523 amd64_x32_linux_record_tdep
.ioctl_TIOCCONS
= 0x541D;
2524 amd64_x32_linux_record_tdep
.ioctl_TIOCGSERIAL
= 0x541E;
2525 amd64_x32_linux_record_tdep
.ioctl_TIOCSSERIAL
= 0x541F;
2526 amd64_x32_linux_record_tdep
.ioctl_TIOCPKT
= 0x5420;
2527 amd64_x32_linux_record_tdep
.ioctl_FIONBIO
= 0x5421;
2528 amd64_x32_linux_record_tdep
.ioctl_TIOCNOTTY
= 0x5422;
2529 amd64_x32_linux_record_tdep
.ioctl_TIOCSETD
= 0x5423;
2530 amd64_x32_linux_record_tdep
.ioctl_TIOCGETD
= 0x5424;
2531 amd64_x32_linux_record_tdep
.ioctl_TCSBRKP
= 0x5425;
2532 amd64_x32_linux_record_tdep
.ioctl_TIOCTTYGSTRUCT
= 0x5426;
2533 amd64_x32_linux_record_tdep
.ioctl_TIOCSBRK
= 0x5427;
2534 amd64_x32_linux_record_tdep
.ioctl_TIOCCBRK
= 0x5428;
2535 amd64_x32_linux_record_tdep
.ioctl_TIOCGSID
= 0x5429;
2536 amd64_x32_linux_record_tdep
.ioctl_TCGETS2
= 0x802c542a;
2537 amd64_x32_linux_record_tdep
.ioctl_TCSETS2
= 0x402c542b;
2538 amd64_x32_linux_record_tdep
.ioctl_TCSETSW2
= 0x402c542c;
2539 amd64_x32_linux_record_tdep
.ioctl_TCSETSF2
= 0x402c542d;
2540 amd64_x32_linux_record_tdep
.ioctl_TIOCGPTN
= 0x80045430;
2541 amd64_x32_linux_record_tdep
.ioctl_TIOCSPTLCK
= 0x40045431;
2542 amd64_x32_linux_record_tdep
.ioctl_FIONCLEX
= 0x5450;
2543 amd64_x32_linux_record_tdep
.ioctl_FIOCLEX
= 0x5451;
2544 amd64_x32_linux_record_tdep
.ioctl_FIOASYNC
= 0x5452;
2545 amd64_x32_linux_record_tdep
.ioctl_TIOCSERCONFIG
= 0x5453;
2546 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGWILD
= 0x5454;
2547 amd64_x32_linux_record_tdep
.ioctl_TIOCSERSWILD
= 0x5455;
2548 amd64_x32_linux_record_tdep
.ioctl_TIOCGLCKTRMIOS
= 0x5456;
2549 amd64_x32_linux_record_tdep
.ioctl_TIOCSLCKTRMIOS
= 0x5457;
2550 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGSTRUCT
= 0x5458;
2551 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGETLSR
= 0x5459;
2552 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGETMULTI
= 0x545A;
2553 amd64_x32_linux_record_tdep
.ioctl_TIOCSERSETMULTI
= 0x545B;
2554 amd64_x32_linux_record_tdep
.ioctl_TIOCMIWAIT
= 0x545C;
2555 amd64_x32_linux_record_tdep
.ioctl_TIOCGICOUNT
= 0x545D;
2556 amd64_x32_linux_record_tdep
.ioctl_TIOCGHAYESESP
= 0x545E;
2557 amd64_x32_linux_record_tdep
.ioctl_TIOCSHAYESESP
= 0x545F;
2558 amd64_x32_linux_record_tdep
.ioctl_FIOQSIZE
= 0x5460;
2560 tdep
->i386_syscall_record
= amd64_x32_linux_syscall_record
;
2562 /* GNU/Linux uses SVR4-style shared libraries. */
2563 set_solib_svr4_ops (gdbarch
, make_linux_ilp32_svr4_solib_ops
);
2566 INIT_GDB_FILE (amd64_linux_tdep
)
2568 gdbarch_register_osabi (bfd_arch_i386
, bfd_mach_x86_64
,
2569 GDB_OSABI_LINUX
, amd64_linux_init_abi
);
2570 gdbarch_register_osabi (bfd_arch_i386
, bfd_mach_x64_32
,
2571 GDB_OSABI_LINUX
, amd64_x32_linux_init_abi
);