1 /* Target-dependent code for GNU/Linux x86-64.
3 Copyright (C) 2001-2024 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 "gdbsupport/x86-xstate.h"
38 #include "amd64-tdep.h"
39 #include "solib-svr4.h"
40 #include "xml-syscall.h"
41 #include "glibc-tdep.h"
42 #include "arch/amd64.h"
43 #include "target-descriptions.h"
45 #include "arch/amd64-linux-tdesc.h"
47 /* The syscall's XML filename for i386. */
48 #define XML_SYSCALL_FILENAME_AMD64 "syscalls/amd64-linux.xml"
50 #include "record-full.h"
51 #include "linux-record.h"
53 /* Mapping between the general-purpose registers in `struct user'
54 format and GDB's register cache layout. */
56 /* From <sys/reg.h>. */
57 int amd64_linux_gregset_reg_offset
[] =
83 -1, -1, -1, -1, -1, -1, -1, -1,
84 -1, -1, -1, -1, -1, -1, -1, -1,
85 -1, -1, -1, -1, -1, -1, -1, -1,
86 -1, -1, -1, -1, -1, -1, -1, -1, -1,
87 -1, -1, -1, -1, -1, -1, -1, -1,
88 -1, -1, -1, -1, -1, -1, -1, -1,
89 -1, -1, -1, -1, /* MPX registers BND0 ... BND3. */
90 -1, -1, /* MPX registers BNDCFGU and BNDSTATUS. */
91 -1, -1, -1, -1, -1, -1, -1, -1, /* xmm16 ... xmm31 (AVX512) */
92 -1, -1, -1, -1, -1, -1, -1, -1,
93 -1, -1, -1, -1, -1, -1, -1, -1, /* ymm16 ... ymm31 (AVX512) */
94 -1, -1, -1, -1, -1, -1, -1, -1,
95 -1, -1, -1, -1, -1, -1, -1, -1, /* k0 ... k7 (AVX512) */
96 -1, -1, -1, -1, -1, -1, -1, -1, /* zmm0 ... zmm31 (AVX512) */
97 -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 -1, /* PKEYS register pkru */
102 /* End of hardware registers */
103 21 * 8, 22 * 8, /* fs_base and gs_base. */
104 15 * 8 /* "orig_rax" */
108 /* Support for signal handlers. */
110 #define LINUX_SIGTRAMP_INSN0 0x48 /* mov $NNNNNNNN, %rax */
111 #define LINUX_SIGTRAMP_OFFSET0 0
112 #define LINUX_SIGTRAMP_INSN1 0x0f /* syscall */
113 #define LINUX_SIGTRAMP_OFFSET1 7
115 static const gdb_byte amd64_linux_sigtramp_code
[] =
117 /* mov $__NR_rt_sigreturn, %rax */
118 LINUX_SIGTRAMP_INSN0
, 0xc7, 0xc0, 0x0f, 0x00, 0x00, 0x00,
120 LINUX_SIGTRAMP_INSN1
, 0x05
123 static const gdb_byte amd64_x32_linux_sigtramp_code
[] =
125 /* mov $__NR_rt_sigreturn, %rax. */
126 LINUX_SIGTRAMP_INSN0
, 0xc7, 0xc0, 0x01, 0x02, 0x00, 0x40,
128 LINUX_SIGTRAMP_INSN1
, 0x05
131 #define LINUX_SIGTRAMP_LEN (sizeof amd64_linux_sigtramp_code)
133 /* If PC is in a sigtramp routine, return the address of the start of
134 the routine. Otherwise, return 0. */
137 amd64_linux_sigtramp_start (const frame_info_ptr
&this_frame
)
139 struct gdbarch
*gdbarch
;
140 const gdb_byte
*sigtramp_code
;
141 CORE_ADDR pc
= get_frame_pc (this_frame
);
142 gdb_byte buf
[LINUX_SIGTRAMP_LEN
];
144 /* We only recognize a signal trampoline if PC is at the start of
145 one of the two instructions. We optimize for finding the PC at
146 the start, as will be the case when the trampoline is not the
147 first frame on the stack. We assume that in the case where the
148 PC is not at the start of the instruction sequence, there will be
149 a few trailing readable bytes on the stack. */
151 if (!safe_frame_unwind_memory (this_frame
, pc
, buf
))
154 if (buf
[0] != LINUX_SIGTRAMP_INSN0
)
156 if (buf
[0] != LINUX_SIGTRAMP_INSN1
)
159 pc
-= LINUX_SIGTRAMP_OFFSET1
;
160 if (!safe_frame_unwind_memory (this_frame
, pc
, buf
))
164 gdbarch
= get_frame_arch (this_frame
);
165 if (gdbarch_ptr_bit (gdbarch
) == 32)
166 sigtramp_code
= amd64_x32_linux_sigtramp_code
;
168 sigtramp_code
= amd64_linux_sigtramp_code
;
169 if (memcmp (buf
, sigtramp_code
, LINUX_SIGTRAMP_LEN
) != 0)
175 /* Return whether THIS_FRAME corresponds to a GNU/Linux sigtramp
179 amd64_linux_sigtramp_p (const frame_info_ptr
&this_frame
)
181 CORE_ADDR pc
= get_frame_pc (this_frame
);
184 find_pc_partial_function (pc
, &name
, NULL
, NULL
);
186 /* If we have NAME, we can optimize the search. The trampoline is
187 named __restore_rt. However, it isn't dynamically exported from
188 the shared C library, so the trampoline may appear to be part of
189 the preceding function. This should always be sigaction,
190 __sigaction, or __libc_sigaction (all aliases to the same
192 if (name
== NULL
|| strstr (name
, "sigaction") != NULL
)
193 return (amd64_linux_sigtramp_start (this_frame
) != 0);
195 return (strcmp ("__restore_rt", name
) == 0);
198 /* Offset to struct sigcontext in ucontext, from <asm/ucontext.h>. */
199 #define AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET 40
201 /* Assuming THIS_FRAME is a GNU/Linux sigtramp routine, return the
202 address of the associated sigcontext structure. */
205 amd64_linux_sigcontext_addr (const frame_info_ptr
&this_frame
)
207 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
208 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
212 get_frame_register (this_frame
, AMD64_RSP_REGNUM
, buf
);
213 sp
= extract_unsigned_integer (buf
, 8, byte_order
);
215 /* The sigcontext structure is part of the user context. A pointer
216 to the user context is passed as the third argument to the signal
217 handler, i.e. in %rdx. Unfortunately %rdx isn't preserved across
218 function calls so we can't use it. Fortunately the user context
219 is part of the signal frame and the unwound %rsp directly points
221 return sp
+ AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET
;
226 amd64_linux_get_syscall_number (struct gdbarch
*gdbarch
,
229 struct regcache
*regcache
= get_thread_regcache (thread
);
230 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
231 /* The content of a register. */
236 /* Getting the system call number from the register.
237 When dealing with x86_64 architecture, this information
238 is stored at %rax register. */
239 regcache
->cooked_read (AMD64_LINUX_ORIG_RAX_REGNUM
, buf
);
241 ret
= extract_signed_integer (buf
, byte_order
);
247 /* From <asm/sigcontext.h>. */
248 static int amd64_linux_sc_reg_offset
[] =
267 17 * 8, /* %eflags */
269 /* FIXME: kettenis/2002030531: The registers %cs, %fs and %gs are
270 available in `struct sigcontext'. However, they only occupy two
271 bytes instead of four, which makes using them here rather
272 difficult. Leave them out for now. */
282 amd64_linux_register_reggroup_p (struct gdbarch
*gdbarch
, int regnum
,
283 const struct reggroup
*group
)
285 if (regnum
== AMD64_LINUX_ORIG_RAX_REGNUM
)
286 return (group
== system_reggroup
287 || group
== save_reggroup
288 || group
== restore_reggroup
);
289 return i386_register_reggroup_p (gdbarch
, regnum
, group
);
292 /* Set the program counter for process PTID to PC. */
295 amd64_linux_write_pc (struct regcache
*regcache
, CORE_ADDR pc
)
297 regcache_cooked_write_unsigned (regcache
, AMD64_RIP_REGNUM
, pc
);
299 /* We must be careful with modifying the program counter. If we
300 just interrupted a system call, the kernel might try to restart
301 it when we resume the inferior. On restarting the system call,
302 the kernel will try backing up the program counter even though it
303 no longer points at the system call. This typically results in a
304 SIGSEGV or SIGILL. We can prevent this by writing `-1' in the
305 "orig_rax" pseudo-register.
307 Note that "orig_rax" is saved when setting up a dummy call frame.
308 This means that it is properly restored when that frame is
309 popped, and that the interrupted system call will be restarted
310 when we resume the inferior on return from a function call from
311 within GDB. In all other cases the system call will not be
313 regcache_cooked_write_unsigned (regcache
, AMD64_LINUX_ORIG_RAX_REGNUM
, -1);
316 /* Record all registers but IP register for process-record. */
319 amd64_all_but_ip_registers_record (struct regcache
*regcache
)
321 if (record_full_arch_list_add_reg (regcache
, AMD64_RAX_REGNUM
))
323 if (record_full_arch_list_add_reg (regcache
, AMD64_RCX_REGNUM
))
325 if (record_full_arch_list_add_reg (regcache
, AMD64_RDX_REGNUM
))
327 if (record_full_arch_list_add_reg (regcache
, AMD64_RBX_REGNUM
))
329 if (record_full_arch_list_add_reg (regcache
, AMD64_RSP_REGNUM
))
331 if (record_full_arch_list_add_reg (regcache
, AMD64_RBP_REGNUM
))
333 if (record_full_arch_list_add_reg (regcache
, AMD64_RSI_REGNUM
))
335 if (record_full_arch_list_add_reg (regcache
, AMD64_RDI_REGNUM
))
337 if (record_full_arch_list_add_reg (regcache
, AMD64_R8_REGNUM
))
339 if (record_full_arch_list_add_reg (regcache
, AMD64_R9_REGNUM
))
341 if (record_full_arch_list_add_reg (regcache
, AMD64_R10_REGNUM
))
343 if (record_full_arch_list_add_reg (regcache
, AMD64_R11_REGNUM
))
345 if (record_full_arch_list_add_reg (regcache
, AMD64_R12_REGNUM
))
347 if (record_full_arch_list_add_reg (regcache
, AMD64_R13_REGNUM
))
349 if (record_full_arch_list_add_reg (regcache
, AMD64_R14_REGNUM
))
351 if (record_full_arch_list_add_reg (regcache
, AMD64_R15_REGNUM
))
353 if (record_full_arch_list_add_reg (regcache
, AMD64_EFLAGS_REGNUM
))
359 /* amd64_canonicalize_syscall maps from the native amd64 Linux set
360 of syscall ids into a canonical set of syscall ids used by
363 static enum gdb_syscall
364 amd64_canonicalize_syscall (enum amd64_syscall syscall_number
)
367 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
369 switch (syscall_number
) {
371 case amd64_x32_sys_read
:
374 case amd64_sys_write
:
375 case amd64_x32_sys_write
:
376 return gdb_sys_write
;
379 case amd64_x32_sys_open
:
382 case amd64_sys_close
:
383 case amd64_x32_sys_close
:
384 return gdb_sys_close
;
386 case amd64_sys_newstat
:
387 case amd64_x32_sys_newstat
:
388 return gdb_sys_newstat
;
390 case amd64_sys_newfstat
:
391 case amd64_x32_sys_newfstat
:
392 return gdb_sys_newfstat
;
394 case amd64_sys_newlstat
:
395 case amd64_x32_sys_newlstat
:
396 return gdb_sys_newlstat
;
399 case amd64_x32_sys_poll
:
402 case amd64_sys_lseek
:
403 case amd64_x32_sys_lseek
:
404 return gdb_sys_lseek
;
407 case amd64_x32_sys_mmap
:
408 return gdb_sys_mmap2
;
410 case amd64_sys_mprotect
:
411 case amd64_x32_sys_mprotect
:
412 return gdb_sys_mprotect
;
414 case amd64_sys_munmap
:
415 case amd64_x32_sys_munmap
:
416 return gdb_sys_munmap
;
419 case amd64_x32_sys_brk
:
422 case amd64_sys_rt_sigaction
:
423 case amd64_x32_sys_rt_sigaction
:
424 return gdb_sys_rt_sigaction
;
426 case amd64_sys_rt_sigprocmask
:
427 case amd64_x32_sys_rt_sigprocmask
:
428 return gdb_sys_rt_sigprocmask
;
430 case amd64_sys_rt_sigreturn
:
431 case amd64_x32_sys_rt_sigreturn
:
432 return gdb_sys_rt_sigreturn
;
434 case amd64_sys_ioctl
:
435 case amd64_x32_sys_ioctl
:
436 return gdb_sys_ioctl
;
438 case amd64_sys_pread64
:
439 case amd64_x32_sys_pread64
:
440 return gdb_sys_pread64
;
442 case amd64_sys_pwrite64
:
443 case amd64_x32_sys_pwrite64
:
444 return gdb_sys_pwrite64
;
446 case amd64_sys_readv
:
447 case amd64_x32_sys_readv
:
448 return gdb_sys_readv
;
450 case amd64_sys_writev
:
451 case amd64_x32_sys_writev
:
452 return gdb_sys_writev
;
454 case amd64_sys_access
:
455 case amd64_x32_sys_access
:
456 return gdb_sys_access
;
459 case amd64_x32_sys_pipe
:
462 case amd64_sys_pipe2
:
463 return gdb_sys_pipe2
;
465 case amd64_sys_getrandom
:
466 return gdb_sys_getrandom
;
468 case amd64_sys_select
:
469 case amd64_x32_sys_select
:
470 return gdb_sys_select
;
472 case amd64_sys_sched_yield
:
473 case amd64_x32_sys_sched_yield
:
474 return gdb_sys_sched_yield
;
476 case amd64_sys_mremap
:
477 case amd64_x32_sys_mremap
:
478 return gdb_sys_mremap
;
480 case amd64_sys_msync
:
481 case amd64_x32_sys_msync
:
482 return gdb_sys_msync
;
484 case amd64_sys_mincore
:
485 case amd64_x32_sys_mincore
:
486 return gdb_sys_mincore
;
488 case amd64_sys_madvise
:
489 case amd64_x32_sys_madvise
:
490 return gdb_sys_madvise
;
492 case amd64_sys_shmget
:
493 case amd64_x32_sys_shmget
:
494 return gdb_sys_shmget
;
496 case amd64_sys_shmat
:
497 case amd64_x32_sys_shmat
:
498 return gdb_sys_shmat
;
500 case amd64_sys_shmctl
:
501 case amd64_x32_sys_shmctl
:
502 return gdb_sys_shmctl
;
505 case amd64_x32_sys_dup
:
509 case amd64_x32_sys_dup2
:
512 case amd64_sys_pause
:
513 case amd64_x32_sys_pause
:
514 return gdb_sys_pause
;
516 case amd64_sys_nanosleep
:
517 case amd64_x32_sys_nanosleep
:
518 return gdb_sys_nanosleep
;
520 case amd64_sys_getitimer
:
521 case amd64_x32_sys_getitimer
:
522 return gdb_sys_getitimer
;
524 case amd64_sys_alarm
:
525 case amd64_x32_sys_alarm
:
526 return gdb_sys_alarm
;
528 case amd64_sys_setitimer
:
529 case amd64_x32_sys_setitimer
:
530 return gdb_sys_setitimer
;
532 case amd64_sys_getpid
:
533 case amd64_x32_sys_getpid
:
534 return gdb_sys_getpid
;
536 case amd64_sys_sendfile64
:
537 case amd64_x32_sys_sendfile64
:
538 return gdb_sys_sendfile64
;
540 case amd64_sys_socket
:
541 case amd64_x32_sys_socket
:
542 return gdb_sys_socket
;
544 case amd64_sys_connect
:
545 case amd64_x32_sys_connect
:
546 return gdb_sys_connect
;
548 case amd64_sys_accept
:
549 case amd64_x32_sys_accept
:
550 return gdb_sys_accept
;
552 case amd64_sys_sendto
:
553 case amd64_x32_sys_sendto
:
554 return gdb_sys_sendto
;
556 case amd64_sys_recvfrom
:
557 case amd64_x32_sys_recvfrom
:
558 return gdb_sys_recvfrom
;
560 case amd64_sys_sendmsg
:
561 case amd64_x32_sys_sendmsg
:
562 return gdb_sys_sendmsg
;
564 case amd64_sys_recvmsg
:
565 case amd64_x32_sys_recvmsg
:
566 return gdb_sys_recvmsg
;
568 case amd64_sys_shutdown
:
569 case amd64_x32_sys_shutdown
:
570 return gdb_sys_shutdown
;
573 case amd64_x32_sys_bind
:
576 case amd64_sys_listen
:
577 case amd64_x32_sys_listen
:
578 return gdb_sys_listen
;
580 case amd64_sys_getsockname
:
581 case amd64_x32_sys_getsockname
:
582 return gdb_sys_getsockname
;
584 case amd64_sys_getpeername
:
585 case amd64_x32_sys_getpeername
:
586 return gdb_sys_getpeername
;
588 case amd64_sys_socketpair
:
589 case amd64_x32_sys_socketpair
:
590 return gdb_sys_socketpair
;
592 case amd64_sys_setsockopt
:
593 case amd64_x32_sys_setsockopt
:
594 return gdb_sys_setsockopt
;
596 case amd64_sys_getsockopt
:
597 case amd64_x32_sys_getsockopt
:
598 return gdb_sys_getsockopt
;
600 case amd64_sys_clone
:
601 case amd64_x32_sys_clone
:
602 return gdb_sys_clone
;
605 case amd64_x32_sys_fork
:
608 case amd64_sys_vfork
:
609 case amd64_x32_sys_vfork
:
610 return gdb_sys_vfork
;
612 case amd64_sys_execve
:
613 case amd64_x32_sys_execve
:
614 return gdb_sys_execve
;
617 case amd64_x32_sys_exit
:
620 case amd64_sys_wait4
:
621 case amd64_x32_sys_wait4
:
622 return gdb_sys_wait4
;
625 case amd64_x32_sys_kill
:
628 case amd64_sys_uname
:
629 case amd64_x32_sys_uname
:
630 return gdb_sys_uname
;
632 case amd64_sys_semget
:
633 case amd64_x32_sys_semget
:
634 return gdb_sys_semget
;
636 case amd64_sys_semop
:
637 case amd64_x32_sys_semop
:
638 return gdb_sys_semop
;
640 case amd64_sys_semctl
:
641 case amd64_x32_sys_semctl
:
642 return gdb_sys_semctl
;
644 case amd64_sys_shmdt
:
645 case amd64_x32_sys_shmdt
:
646 return gdb_sys_shmdt
;
648 case amd64_sys_msgget
:
649 case amd64_x32_sys_msgget
:
650 return gdb_sys_msgget
;
652 case amd64_sys_msgsnd
:
653 case amd64_x32_sys_msgsnd
:
654 return gdb_sys_msgsnd
;
656 case amd64_sys_msgrcv
:
657 case amd64_x32_sys_msgrcv
:
658 return gdb_sys_msgrcv
;
660 case amd64_sys_msgctl
:
661 case amd64_x32_sys_msgctl
:
662 return gdb_sys_msgctl
;
664 case amd64_sys_fcntl
:
665 case amd64_x32_sys_fcntl
:
666 return gdb_sys_fcntl
;
668 case amd64_sys_flock
:
669 case amd64_x32_sys_flock
:
670 return gdb_sys_flock
;
672 case amd64_sys_fsync
:
673 case amd64_x32_sys_fsync
:
674 return gdb_sys_fsync
;
676 case amd64_sys_fdatasync
:
677 case amd64_x32_sys_fdatasync
:
678 return gdb_sys_fdatasync
;
680 case amd64_sys_truncate
:
681 case amd64_x32_sys_truncate
:
682 return gdb_sys_truncate
;
684 case amd64_sys_ftruncate
:
685 case amd64_x32_sys_ftruncate
:
686 return gdb_sys_ftruncate
;
688 case amd64_sys_getdents
:
689 case amd64_x32_sys_getdents
:
690 return gdb_sys_getdents
;
692 case amd64_sys_getcwd
:
693 case amd64_x32_sys_getcwd
:
694 return gdb_sys_getcwd
;
696 case amd64_sys_chdir
:
697 case amd64_x32_sys_chdir
:
698 return gdb_sys_chdir
;
700 case amd64_sys_fchdir
:
701 case amd64_x32_sys_fchdir
:
702 return gdb_sys_fchdir
;
704 case amd64_sys_rename
:
705 case amd64_x32_sys_rename
:
706 return gdb_sys_rename
;
708 case amd64_sys_mkdir
:
709 case amd64_x32_sys_mkdir
:
710 return gdb_sys_mkdir
;
712 case amd64_sys_rmdir
:
713 case amd64_x32_sys_rmdir
:
714 return gdb_sys_rmdir
;
716 case amd64_sys_creat
:
717 case amd64_x32_sys_creat
:
718 return gdb_sys_creat
;
721 case amd64_x32_sys_link
:
724 case amd64_sys_unlink
:
725 case amd64_x32_sys_unlink
:
726 return gdb_sys_unlink
;
728 case amd64_sys_symlink
:
729 case amd64_x32_sys_symlink
:
730 return gdb_sys_symlink
;
732 case amd64_sys_readlink
:
733 case amd64_x32_sys_readlink
:
734 return gdb_sys_readlink
;
736 case amd64_sys_chmod
:
737 case amd64_x32_sys_chmod
:
738 return gdb_sys_chmod
;
740 case amd64_sys_fchmod
:
741 case amd64_x32_sys_fchmod
:
742 return gdb_sys_fchmod
;
744 case amd64_sys_chown
:
745 case amd64_x32_sys_chown
:
746 return gdb_sys_chown
;
748 case amd64_sys_fchown
:
749 case amd64_x32_sys_fchown
:
750 return gdb_sys_fchown
;
752 case amd64_sys_lchown
:
753 case amd64_x32_sys_lchown
:
754 return gdb_sys_lchown
;
756 case amd64_sys_umask
:
757 case amd64_x32_sys_umask
:
758 return gdb_sys_umask
;
760 case amd64_sys_gettimeofday
:
761 case amd64_x32_sys_gettimeofday
:
762 return gdb_sys_gettimeofday
;
764 case amd64_sys_getrlimit
:
765 case amd64_x32_sys_getrlimit
:
766 return gdb_sys_getrlimit
;
768 case amd64_sys_getrusage
:
769 case amd64_x32_sys_getrusage
:
770 return gdb_sys_getrusage
;
772 case amd64_sys_sysinfo
:
773 case amd64_x32_sys_sysinfo
:
774 return gdb_sys_sysinfo
;
776 case amd64_sys_times
:
777 case amd64_x32_sys_times
:
778 return gdb_sys_times
;
780 case amd64_sys_ptrace
:
781 case amd64_x32_sys_ptrace
:
782 return gdb_sys_ptrace
;
784 case amd64_sys_getuid
:
785 case amd64_x32_sys_getuid
:
786 return gdb_sys_getuid
;
788 case amd64_sys_syslog
:
789 case amd64_x32_sys_syslog
:
790 return gdb_sys_syslog
;
792 case amd64_sys_getgid
:
793 case amd64_x32_sys_getgid
:
794 return gdb_sys_getgid
;
796 case amd64_sys_setuid
:
797 case amd64_x32_sys_setuid
:
798 return gdb_sys_setuid
;
800 case amd64_sys_setgid
:
801 case amd64_x32_sys_setgid
:
802 return gdb_sys_setgid
;
804 case amd64_sys_geteuid
:
805 case amd64_x32_sys_geteuid
:
806 return gdb_sys_geteuid
;
808 case amd64_sys_getegid
:
809 case amd64_x32_sys_getegid
:
810 return gdb_sys_getegid
;
812 case amd64_sys_setpgid
:
813 case amd64_x32_sys_setpgid
:
814 return gdb_sys_setpgid
;
816 case amd64_sys_getppid
:
817 case amd64_x32_sys_getppid
:
818 return gdb_sys_getppid
;
820 case amd64_sys_getpgrp
:
821 case amd64_x32_sys_getpgrp
:
822 return gdb_sys_getpgrp
;
824 case amd64_sys_setsid
:
825 case amd64_x32_sys_setsid
:
826 return gdb_sys_setsid
;
828 case amd64_sys_setreuid
:
829 case amd64_x32_sys_setreuid
:
830 return gdb_sys_setreuid
;
832 case amd64_sys_setregid
:
833 case amd64_x32_sys_setregid
:
834 return gdb_sys_setregid
;
836 case amd64_sys_getgroups
:
837 case amd64_x32_sys_getgroups
:
838 return gdb_sys_getgroups
;
840 case amd64_sys_setgroups
:
841 case amd64_x32_sys_setgroups
:
842 return gdb_sys_setgroups
;
844 case amd64_sys_setresuid
:
845 case amd64_x32_sys_setresuid
:
846 return gdb_sys_setresuid
;
848 case amd64_sys_getresuid
:
849 case amd64_x32_sys_getresuid
:
850 return gdb_sys_getresuid
;
852 case amd64_sys_setresgid
:
853 case amd64_x32_sys_setresgid
:
854 return gdb_sys_setresgid
;
856 case amd64_sys_getresgid
:
857 case amd64_x32_sys_getresgid
:
858 return gdb_sys_getresgid
;
860 case amd64_sys_getpgid
:
861 case amd64_x32_sys_getpgid
:
862 return gdb_sys_getpgid
;
864 case amd64_sys_setfsuid
:
865 case amd64_x32_sys_setfsuid
:
866 return gdb_sys_setfsuid
;
868 case amd64_sys_setfsgid
:
869 case amd64_x32_sys_setfsgid
:
870 return gdb_sys_setfsgid
;
872 case amd64_sys_getsid
:
873 case amd64_x32_sys_getsid
:
874 return gdb_sys_getsid
;
876 case amd64_sys_capget
:
877 case amd64_x32_sys_capget
:
878 return gdb_sys_capget
;
880 case amd64_sys_capset
:
881 case amd64_x32_sys_capset
:
882 return gdb_sys_capset
;
884 case amd64_sys_rt_sigpending
:
885 case amd64_x32_sys_rt_sigpending
:
886 return gdb_sys_rt_sigpending
;
888 case amd64_sys_rt_sigtimedwait
:
889 case amd64_x32_sys_rt_sigtimedwait
:
890 return gdb_sys_rt_sigtimedwait
;
892 case amd64_sys_rt_sigqueueinfo
:
893 case amd64_x32_sys_rt_sigqueueinfo
:
894 return gdb_sys_rt_sigqueueinfo
;
896 case amd64_sys_rt_sigsuspend
:
897 case amd64_x32_sys_rt_sigsuspend
:
898 return gdb_sys_rt_sigsuspend
;
900 case amd64_sys_sigaltstack
:
901 case amd64_x32_sys_sigaltstack
:
902 return gdb_sys_sigaltstack
;
904 case amd64_sys_utime
:
905 case amd64_x32_sys_utime
:
906 return gdb_sys_utime
;
908 case amd64_sys_mknod
:
909 case amd64_x32_sys_mknod
:
910 return gdb_sys_mknod
;
912 case amd64_sys_personality
:
913 case amd64_x32_sys_personality
:
914 return gdb_sys_personality
;
916 case amd64_sys_ustat
:
917 case amd64_x32_sys_ustat
:
918 return gdb_sys_ustat
;
920 case amd64_sys_statfs
:
921 case amd64_x32_sys_statfs
:
922 return gdb_sys_statfs
;
924 case amd64_sys_fstatfs
:
925 case amd64_x32_sys_fstatfs
:
926 return gdb_sys_fstatfs
;
928 case amd64_sys_sysfs
:
929 case amd64_x32_sys_sysfs
:
930 return gdb_sys_sysfs
;
932 case amd64_sys_getpriority
:
933 case amd64_x32_sys_getpriority
:
934 return gdb_sys_getpriority
;
936 case amd64_sys_setpriority
:
937 case amd64_x32_sys_setpriority
:
938 return gdb_sys_setpriority
;
940 case amd64_sys_sched_setparam
:
941 case amd64_x32_sys_sched_setparam
:
942 return gdb_sys_sched_setparam
;
944 case amd64_sys_sched_getparam
:
945 case amd64_x32_sys_sched_getparam
:
946 return gdb_sys_sched_getparam
;
948 case amd64_sys_sched_setscheduler
:
949 case amd64_x32_sys_sched_setscheduler
:
950 return gdb_sys_sched_setscheduler
;
952 case amd64_sys_sched_getscheduler
:
953 case amd64_x32_sys_sched_getscheduler
:
954 return gdb_sys_sched_getscheduler
;
956 case amd64_sys_sched_get_priority_max
:
957 case amd64_x32_sys_sched_get_priority_max
:
958 return gdb_sys_sched_get_priority_max
;
960 case amd64_sys_sched_get_priority_min
:
961 case amd64_x32_sys_sched_get_priority_min
:
962 return gdb_sys_sched_get_priority_min
;
964 case amd64_sys_sched_rr_get_interval
:
965 case amd64_x32_sys_sched_rr_get_interval
:
966 return gdb_sys_sched_rr_get_interval
;
968 case amd64_sys_mlock
:
969 case amd64_x32_sys_mlock
:
970 return gdb_sys_mlock
;
972 case amd64_sys_munlock
:
973 case amd64_x32_sys_munlock
:
974 return gdb_sys_munlock
;
976 case amd64_sys_mlockall
:
977 case amd64_x32_sys_mlockall
:
978 return gdb_sys_mlockall
;
980 case amd64_sys_munlockall
:
981 case amd64_x32_sys_munlockall
:
982 return gdb_sys_munlockall
;
984 case amd64_sys_vhangup
:
985 case amd64_x32_sys_vhangup
:
986 return gdb_sys_vhangup
;
988 case amd64_sys_modify_ldt
:
989 case amd64_x32_sys_modify_ldt
:
990 return gdb_sys_modify_ldt
;
992 case amd64_sys_pivot_root
:
993 case amd64_x32_sys_pivot_root
:
994 return gdb_sys_pivot_root
;
996 case amd64_sys_sysctl
:
997 case amd64_x32_sys_sysctl
:
998 return gdb_sys_sysctl
;
1000 case amd64_sys_prctl
:
1001 case amd64_x32_sys_prctl
:
1002 return gdb_sys_prctl
;
1004 case amd64_sys_arch_prctl
:
1005 case amd64_x32_sys_arch_prctl
:
1006 return gdb_sys_no_syscall
; /* Note */
1008 case amd64_sys_adjtimex
:
1009 case amd64_x32_sys_adjtimex
:
1010 return gdb_sys_adjtimex
;
1012 case amd64_sys_setrlimit
:
1013 case amd64_x32_sys_setrlimit
:
1014 return gdb_sys_setrlimit
;
1016 case amd64_sys_chroot
:
1017 case amd64_x32_sys_chroot
:
1018 return gdb_sys_chroot
;
1020 case amd64_sys_sync
:
1021 case amd64_x32_sys_sync
:
1022 return gdb_sys_sync
;
1024 case amd64_sys_acct
:
1025 case amd64_x32_sys_acct
:
1026 return gdb_sys_acct
;
1028 case amd64_sys_settimeofday
:
1029 case amd64_x32_sys_settimeofday
:
1030 return gdb_sys_settimeofday
;
1032 case amd64_sys_mount
:
1033 case amd64_x32_sys_mount
:
1034 return gdb_sys_mount
;
1036 case amd64_sys_umount
:
1037 case amd64_x32_sys_umount
:
1038 return gdb_sys_umount
;
1040 case amd64_sys_swapon
:
1041 case amd64_x32_sys_swapon
:
1042 return gdb_sys_swapon
;
1044 case amd64_sys_swapoff
:
1045 case amd64_x32_sys_swapoff
:
1046 return gdb_sys_swapoff
;
1048 case amd64_sys_reboot
:
1049 case amd64_x32_sys_reboot
:
1050 return gdb_sys_reboot
;
1052 case amd64_sys_sethostname
:
1053 case amd64_x32_sys_sethostname
:
1054 return gdb_sys_sethostname
;
1056 case amd64_sys_setdomainname
:
1057 case amd64_x32_sys_setdomainname
:
1058 return gdb_sys_setdomainname
;
1060 case amd64_sys_iopl
:
1061 case amd64_x32_sys_iopl
:
1062 return gdb_sys_iopl
;
1064 case amd64_sys_ioperm
:
1065 case amd64_x32_sys_ioperm
:
1066 return gdb_sys_ioperm
;
1068 case amd64_sys_init_module
:
1069 case amd64_x32_sys_init_module
:
1070 return gdb_sys_init_module
;
1072 case amd64_sys_delete_module
:
1073 case amd64_x32_sys_delete_module
:
1074 return gdb_sys_delete_module
;
1076 case amd64_sys_quotactl
:
1077 case amd64_x32_sys_quotactl
:
1078 return gdb_sys_quotactl
;
1080 case amd64_sys_nfsservctl
:
1081 return gdb_sys_nfsservctl
;
1083 case amd64_sys_gettid
:
1084 case amd64_x32_sys_gettid
:
1085 return gdb_sys_gettid
;
1087 case amd64_sys_readahead
:
1088 case amd64_x32_sys_readahead
:
1089 return gdb_sys_readahead
;
1091 case amd64_sys_setxattr
:
1092 case amd64_x32_sys_setxattr
:
1093 return gdb_sys_setxattr
;
1095 case amd64_sys_lsetxattr
:
1096 case amd64_x32_sys_lsetxattr
:
1097 return gdb_sys_lsetxattr
;
1099 case amd64_sys_fsetxattr
:
1100 case amd64_x32_sys_fsetxattr
:
1101 return gdb_sys_fsetxattr
;
1103 case amd64_sys_getxattr
:
1104 case amd64_x32_sys_getxattr
:
1105 return gdb_sys_getxattr
;
1107 case amd64_sys_lgetxattr
:
1108 case amd64_x32_sys_lgetxattr
:
1109 return gdb_sys_lgetxattr
;
1111 case amd64_sys_fgetxattr
:
1112 case amd64_x32_sys_fgetxattr
:
1113 return gdb_sys_fgetxattr
;
1115 case amd64_sys_listxattr
:
1116 case amd64_x32_sys_listxattr
:
1117 return gdb_sys_listxattr
;
1119 case amd64_sys_llistxattr
:
1120 case amd64_x32_sys_llistxattr
:
1121 return gdb_sys_llistxattr
;
1123 case amd64_sys_flistxattr
:
1124 case amd64_x32_sys_flistxattr
:
1125 return gdb_sys_flistxattr
;
1127 case amd64_sys_removexattr
:
1128 case amd64_x32_sys_removexattr
:
1129 return gdb_sys_removexattr
;
1131 case amd64_sys_lremovexattr
:
1132 case amd64_x32_sys_lremovexattr
:
1133 return gdb_sys_lremovexattr
;
1135 case amd64_sys_fremovexattr
:
1136 case amd64_x32_sys_fremovexattr
:
1137 return gdb_sys_fremovexattr
;
1139 case amd64_sys_tkill
:
1140 case amd64_x32_sys_tkill
:
1141 return gdb_sys_tkill
;
1143 case amd64_sys_time
:
1144 case amd64_x32_sys_time
:
1145 return gdb_sys_time
;
1147 case amd64_sys_futex
:
1148 case amd64_x32_sys_futex
:
1149 return gdb_sys_futex
;
1151 case amd64_sys_sched_setaffinity
:
1152 case amd64_x32_sys_sched_setaffinity
:
1153 return gdb_sys_sched_setaffinity
;
1155 case amd64_sys_sched_getaffinity
:
1156 case amd64_x32_sys_sched_getaffinity
:
1157 return gdb_sys_sched_getaffinity
;
1159 case amd64_sys_io_setup
:
1160 case amd64_x32_sys_io_setup
:
1161 return gdb_sys_io_setup
;
1163 case amd64_sys_io_destroy
:
1164 case amd64_x32_sys_io_destroy
:
1165 return gdb_sys_io_destroy
;
1167 case amd64_sys_io_getevents
:
1168 case amd64_x32_sys_io_getevents
:
1169 return gdb_sys_io_getevents
;
1171 case amd64_sys_io_submit
:
1172 case amd64_x32_sys_io_submit
:
1173 return gdb_sys_io_submit
;
1175 case amd64_sys_io_cancel
:
1176 case amd64_x32_sys_io_cancel
:
1177 return gdb_sys_io_cancel
;
1179 case amd64_sys_lookup_dcookie
:
1180 case amd64_x32_sys_lookup_dcookie
:
1181 return gdb_sys_lookup_dcookie
;
1183 case amd64_sys_epoll_create
:
1184 case amd64_x32_sys_epoll_create
:
1185 return gdb_sys_epoll_create
;
1187 case amd64_sys_remap_file_pages
:
1188 case amd64_x32_sys_remap_file_pages
:
1189 return gdb_sys_remap_file_pages
;
1191 case amd64_sys_getdents64
:
1192 case amd64_x32_sys_getdents64
:
1193 return gdb_sys_getdents64
;
1195 case amd64_sys_set_tid_address
:
1196 case amd64_x32_sys_set_tid_address
:
1197 return gdb_sys_set_tid_address
;
1199 case amd64_sys_restart_syscall
:
1200 case amd64_x32_sys_restart_syscall
:
1201 return gdb_sys_restart_syscall
;
1203 case amd64_sys_semtimedop
:
1204 case amd64_x32_sys_semtimedop
:
1205 return gdb_sys_semtimedop
;
1207 case amd64_sys_fadvise64
:
1208 case amd64_x32_sys_fadvise64
:
1209 return gdb_sys_fadvise64
;
1211 case amd64_sys_timer_create
:
1212 case amd64_x32_sys_timer_create
:
1213 return gdb_sys_timer_create
;
1215 case amd64_sys_timer_settime
:
1216 case amd64_x32_sys_timer_settime
:
1217 return gdb_sys_timer_settime
;
1219 case amd64_sys_timer_gettime
:
1220 case amd64_x32_sys_timer_gettime
:
1221 return gdb_sys_timer_gettime
;
1223 case amd64_sys_timer_getoverrun
:
1224 case amd64_x32_sys_timer_getoverrun
:
1225 return gdb_sys_timer_getoverrun
;
1227 case amd64_sys_timer_delete
:
1228 case amd64_x32_sys_timer_delete
:
1229 return gdb_sys_timer_delete
;
1231 case amd64_sys_clock_settime
:
1232 case amd64_x32_sys_clock_settime
:
1233 return gdb_sys_clock_settime
;
1235 case amd64_sys_clock_gettime
:
1236 case amd64_x32_sys_clock_gettime
:
1237 return gdb_sys_clock_gettime
;
1239 case amd64_sys_clock_getres
:
1240 case amd64_x32_sys_clock_getres
:
1241 return gdb_sys_clock_getres
;
1243 case amd64_sys_clock_nanosleep
:
1244 case amd64_x32_sys_clock_nanosleep
:
1245 return gdb_sys_clock_nanosleep
;
1247 case amd64_sys_exit_group
:
1248 case amd64_x32_sys_exit_group
:
1249 return gdb_sys_exit_group
;
1251 case amd64_sys_epoll_wait
:
1252 case amd64_x32_sys_epoll_wait
:
1253 return gdb_sys_epoll_wait
;
1255 case amd64_sys_epoll_ctl
:
1256 case amd64_x32_sys_epoll_ctl
:
1257 return gdb_sys_epoll_ctl
;
1259 case amd64_sys_tgkill
:
1260 case amd64_x32_sys_tgkill
:
1261 return gdb_sys_tgkill
;
1263 case amd64_sys_utimes
:
1264 case amd64_x32_sys_utimes
:
1265 return gdb_sys_utimes
;
1267 case amd64_sys_mbind
:
1268 case amd64_x32_sys_mbind
:
1269 return gdb_sys_mbind
;
1271 case amd64_sys_set_mempolicy
:
1272 case amd64_x32_sys_set_mempolicy
:
1273 return gdb_sys_set_mempolicy
;
1275 case amd64_sys_get_mempolicy
:
1276 case amd64_x32_sys_get_mempolicy
:
1277 return gdb_sys_get_mempolicy
;
1279 case amd64_sys_mq_open
:
1280 case amd64_x32_sys_mq_open
:
1281 return gdb_sys_mq_open
;
1283 case amd64_sys_mq_unlink
:
1284 case amd64_x32_sys_mq_unlink
:
1285 return gdb_sys_mq_unlink
;
1287 case amd64_sys_mq_timedsend
:
1288 case amd64_x32_sys_mq_timedsend
:
1289 return gdb_sys_mq_timedsend
;
1291 case amd64_sys_mq_timedreceive
:
1292 case amd64_x32_sys_mq_timedreceive
:
1293 return gdb_sys_mq_timedreceive
;
1295 case amd64_sys_mq_notify
:
1296 case amd64_x32_sys_mq_notify
:
1297 return gdb_sys_mq_notify
;
1299 case amd64_sys_mq_getsetattr
:
1300 case amd64_x32_sys_mq_getsetattr
:
1301 return gdb_sys_mq_getsetattr
;
1303 case amd64_sys_kexec_load
:
1304 case amd64_x32_sys_kexec_load
:
1305 return gdb_sys_kexec_load
;
1307 case amd64_sys_waitid
:
1308 case amd64_x32_sys_waitid
:
1309 return gdb_sys_waitid
;
1311 case amd64_sys_add_key
:
1312 case amd64_x32_sys_add_key
:
1313 return gdb_sys_add_key
;
1315 case amd64_sys_request_key
:
1316 case amd64_x32_sys_request_key
:
1317 return gdb_sys_request_key
;
1319 case amd64_sys_keyctl
:
1320 case amd64_x32_sys_keyctl
:
1321 return gdb_sys_keyctl
;
1323 case amd64_sys_ioprio_set
:
1324 case amd64_x32_sys_ioprio_set
:
1325 return gdb_sys_ioprio_set
;
1327 case amd64_sys_ioprio_get
:
1328 case amd64_x32_sys_ioprio_get
:
1329 return gdb_sys_ioprio_get
;
1331 case amd64_sys_inotify_init
:
1332 case amd64_x32_sys_inotify_init
:
1333 return gdb_sys_inotify_init
;
1335 case amd64_sys_inotify_add_watch
:
1336 case amd64_x32_sys_inotify_add_watch
:
1337 return gdb_sys_inotify_add_watch
;
1339 case amd64_sys_inotify_rm_watch
:
1340 case amd64_x32_sys_inotify_rm_watch
:
1341 return gdb_sys_inotify_rm_watch
;
1343 case amd64_sys_migrate_pages
:
1344 case amd64_x32_sys_migrate_pages
:
1345 return gdb_sys_migrate_pages
;
1347 case amd64_sys_openat
:
1348 case amd64_x32_sys_openat
:
1349 return gdb_sys_openat
;
1351 case amd64_sys_mkdirat
:
1352 case amd64_x32_sys_mkdirat
:
1353 return gdb_sys_mkdirat
;
1355 case amd64_sys_mknodat
:
1356 case amd64_x32_sys_mknodat
:
1357 return gdb_sys_mknodat
;
1359 case amd64_sys_fchownat
:
1360 case amd64_x32_sys_fchownat
:
1361 return gdb_sys_fchownat
;
1363 case amd64_sys_futimesat
:
1364 case amd64_x32_sys_futimesat
:
1365 return gdb_sys_futimesat
;
1367 case amd64_sys_newfstatat
:
1368 case amd64_x32_sys_newfstatat
:
1369 return gdb_sys_newfstatat
;
1371 case amd64_sys_unlinkat
:
1372 case amd64_x32_sys_unlinkat
:
1373 return gdb_sys_unlinkat
;
1375 case amd64_sys_renameat
:
1376 case amd64_x32_sys_renameat
:
1377 return gdb_sys_renameat
;
1379 case amd64_sys_linkat
:
1380 case amd64_x32_sys_linkat
:
1381 return gdb_sys_linkat
;
1383 case amd64_sys_symlinkat
:
1384 case amd64_x32_sys_symlinkat
:
1385 return gdb_sys_symlinkat
;
1387 case amd64_sys_readlinkat
:
1388 case amd64_x32_sys_readlinkat
:
1389 return gdb_sys_readlinkat
;
1391 case amd64_sys_fchmodat
:
1392 case amd64_x32_sys_fchmodat
:
1393 return gdb_sys_fchmodat
;
1395 case amd64_sys_faccessat
:
1396 case amd64_x32_sys_faccessat
:
1397 return gdb_sys_faccessat
;
1399 case amd64_sys_pselect6
:
1400 case amd64_x32_sys_pselect6
:
1401 return gdb_sys_pselect6
;
1403 case amd64_sys_ppoll
:
1404 case amd64_x32_sys_ppoll
:
1405 return gdb_sys_ppoll
;
1407 case amd64_sys_unshare
:
1408 case amd64_x32_sys_unshare
:
1409 return gdb_sys_unshare
;
1411 case amd64_sys_set_robust_list
:
1412 case amd64_x32_sys_set_robust_list
:
1413 return gdb_sys_set_robust_list
;
1415 case amd64_sys_get_robust_list
:
1416 case amd64_x32_sys_get_robust_list
:
1417 return gdb_sys_get_robust_list
;
1419 case amd64_sys_splice
:
1420 case amd64_x32_sys_splice
:
1421 return gdb_sys_splice
;
1424 case amd64_x32_sys_tee
:
1427 case amd64_sys_sync_file_range
:
1428 case amd64_x32_sys_sync_file_range
:
1429 return gdb_sys_sync_file_range
;
1431 case amd64_sys_vmsplice
:
1432 case amd64_x32_sys_vmsplice
:
1433 return gdb_sys_vmsplice
;
1435 case amd64_sys_move_pages
:
1436 case amd64_x32_sys_move_pages
:
1437 return gdb_sys_move_pages
;
1440 return gdb_sys_no_syscall
;
1446 /* Parse the arguments of current system call instruction and record
1447 the values of the registers and memory that will be changed into
1448 "record_full_arch_list". This instruction is "syscall".
1450 Return -1 if something wrong. */
1452 static struct linux_record_tdep amd64_linux_record_tdep
;
1453 static struct linux_record_tdep amd64_x32_linux_record_tdep
;
1455 #define RECORD_ARCH_GET_FS 0x1003
1456 #define RECORD_ARCH_GET_GS 0x1004
1459 amd64_linux_syscall_record_common (struct regcache
*regcache
,
1460 struct linux_record_tdep
*linux_record_tdep_p
)
1463 ULONGEST syscall_native
;
1464 enum gdb_syscall syscall_gdb
= gdb_sys_no_syscall
;
1466 regcache_raw_read_unsigned (regcache
, AMD64_RAX_REGNUM
, &syscall_native
);
1468 switch (syscall_native
)
1470 case amd64_sys_rt_sigreturn
:
1471 case amd64_x32_sys_rt_sigreturn
:
1472 if (amd64_all_but_ip_registers_record (regcache
))
1477 case amd64_sys_arch_prctl
:
1478 case amd64_x32_sys_arch_prctl
:
1481 regcache_raw_read_unsigned (regcache
, linux_record_tdep_p
->arg3
,
1483 if (arg3
== RECORD_ARCH_GET_FS
|| arg3
== RECORD_ARCH_GET_GS
)
1487 regcache_raw_read_unsigned (regcache
,
1488 linux_record_tdep_p
->arg2
,
1490 if (record_full_arch_list_add_mem
1491 (addr
, linux_record_tdep_p
->size_ulong
))
1500 = amd64_canonicalize_syscall ((enum amd64_syscall
) syscall_native
);
1502 if (syscall_gdb
== gdb_sys_no_syscall
)
1504 gdb_printf (gdb_stderr
,
1505 _("Process record and replay target doesn't "
1506 "support syscall number %s\n"),
1507 pulongest (syscall_native
));
1512 ret
= record_linux_system_call (syscall_gdb
, regcache
,
1513 linux_record_tdep_p
);
1519 /* Record the return value of the system call. */
1520 if (record_full_arch_list_add_reg (regcache
, AMD64_RCX_REGNUM
))
1522 if (record_full_arch_list_add_reg (regcache
, AMD64_R11_REGNUM
))
1529 amd64_linux_syscall_record (struct regcache
*regcache
)
1531 return amd64_linux_syscall_record_common (regcache
,
1532 &amd64_linux_record_tdep
);
1536 amd64_x32_linux_syscall_record (struct regcache
*regcache
)
1538 return amd64_linux_syscall_record_common (regcache
,
1539 &amd64_x32_linux_record_tdep
);
1542 #define AMD64_LINUX_redzone 128
1543 #define AMD64_LINUX_xstate 512
1544 #define AMD64_LINUX_frame_size 560
1547 amd64_linux_record_signal (struct gdbarch
*gdbarch
,
1548 struct regcache
*regcache
,
1549 enum gdb_signal signal
)
1553 if (amd64_all_but_ip_registers_record (regcache
))
1556 if (record_full_arch_list_add_reg (regcache
, AMD64_RIP_REGNUM
))
1559 /* Record the change in the stack. */
1560 regcache_raw_read_unsigned (regcache
, AMD64_RSP_REGNUM
, &rsp
);
1563 rsp
-= AMD64_LINUX_redzone
;
1564 /* This is for xstate.
1565 sp -= sizeof (struct _fpstate); */
1566 rsp
-= AMD64_LINUX_xstate
;
1567 /* This is for frame_size.
1568 sp -= sizeof (struct rt_sigframe); */
1569 rsp
-= AMD64_LINUX_frame_size
;
1570 if (record_full_arch_list_add_mem (rsp
, AMD64_LINUX_redzone
1571 + AMD64_LINUX_xstate
1572 + AMD64_LINUX_frame_size
))
1575 if (record_full_arch_list_add_end ())
1581 /* Get Linux/x86 target description from core dump. */
1583 static const struct target_desc
*
1584 amd64_linux_core_read_description (struct gdbarch
*gdbarch
,
1585 struct target_ops
*target
,
1589 x86_xsave_layout layout
;
1590 uint64_t xcr0
= i386_linux_core_read_xsave_info (abfd
, layout
);
1592 xcr0
= X86_XSTATE_SSE_MASK
;
1594 return amd64_linux_read_description (xcr0
& X86_XSTATE_ALL_MASK
,
1595 gdbarch_ptr_bit (gdbarch
) == 32);
1598 /* Similar to amd64_supply_fpregset, but use XSAVE extended state. */
1601 amd64_linux_supply_xstateregset (const struct regset
*regset
,
1602 struct regcache
*regcache
, int regnum
,
1603 const void *xstateregs
, size_t len
)
1605 amd64_supply_xsave (regcache
, regnum
, xstateregs
);
1608 /* Similar to amd64_collect_fpregset, but use XSAVE extended state. */
1611 amd64_linux_collect_xstateregset (const struct regset
*regset
,
1612 const struct regcache
*regcache
,
1613 int regnum
, void *xstateregs
, size_t len
)
1615 amd64_collect_xsave (regcache
, regnum
, xstateregs
, 1);
1618 static const struct regset amd64_linux_xstateregset
=
1621 amd64_linux_supply_xstateregset
,
1622 amd64_linux_collect_xstateregset
1625 /* Iterate over core file register note sections. */
1628 amd64_linux_iterate_over_regset_sections (struct gdbarch
*gdbarch
,
1629 iterate_over_regset_sections_cb
*cb
,
1631 const struct regcache
*regcache
)
1633 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
1635 cb (".reg", 27 * 8, 27 * 8, &i386_gregset
, NULL
, cb_data
);
1636 cb (".reg2", 512, 512, &amd64_fpregset
, NULL
, cb_data
);
1637 if (tdep
->xsave_layout
.sizeof_xsave
!= 0)
1638 cb (".reg-xstate", tdep
->xsave_layout
.sizeof_xsave
,
1639 tdep
->xsave_layout
.sizeof_xsave
, &amd64_linux_xstateregset
,
1640 "XSAVE extended state", cb_data
);
1643 /* The instruction sequences used in x86_64 machines for a
1644 disabled is-enabled probe. */
1646 const gdb_byte amd64_dtrace_disabled_probe_sequence_1
[] = {
1647 /* xor %rax, %rax */ 0x48, 0x33, 0xc0,
1652 const gdb_byte amd64_dtrace_disabled_probe_sequence_2
[] = {
1653 /* xor %rax, %rax */ 0x48, 0x33, 0xc0,
1658 /* The instruction sequence used in x86_64 machines for enabling a
1659 DTrace is-enabled probe. */
1661 const gdb_byte amd64_dtrace_enable_probe_sequence
[] = {
1662 /* mov $0x1, %eax */ 0xb8, 0x01, 0x00, 0x00, 0x00
1665 /* The instruction sequence used in x86_64 machines for disabling a
1666 DTrace is-enabled probe. */
1668 const gdb_byte amd64_dtrace_disable_probe_sequence
[] = {
1669 /* xor %rax, %rax; nop; nop */ 0x48, 0x33, 0xC0, 0x90, 0x90
1672 /* Implementation of `gdbarch_dtrace_probe_is_enabled', as defined in
1676 amd64_dtrace_probe_is_enabled (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
1680 /* This function returns 1 if the instructions at ADDR do _not_
1681 follow any of the amd64_dtrace_disabled_probe_sequence_*
1684 Note that ADDR is offset 3 bytes from the beginning of these
1687 read_code (addr
- 3, buf
, 5);
1688 return (memcmp (buf
, amd64_dtrace_disabled_probe_sequence_1
, 5) != 0
1689 && memcmp (buf
, amd64_dtrace_disabled_probe_sequence_2
, 5) != 0);
1692 /* Implementation of `gdbarch_dtrace_enable_probe', as defined in
1696 amd64_dtrace_enable_probe (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
1698 /* Note also that ADDR is offset 3 bytes from the beginning of
1699 amd64_dtrace_enable_probe_sequence. */
1701 write_memory (addr
- 3, amd64_dtrace_enable_probe_sequence
, 5);
1704 /* Implementation of `gdbarch_dtrace_disable_probe', as defined in
1708 amd64_dtrace_disable_probe (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
1710 /* Note also that ADDR is offset 3 bytes from the beginning of
1711 amd64_dtrace_disable_probe_sequence. */
1713 write_memory (addr
- 3, amd64_dtrace_disable_probe_sequence
, 5);
1716 /* Implementation of `gdbarch_dtrace_parse_probe_argument', as defined
1719 static expr::operation_up
1720 amd64_dtrace_parse_probe_argument (struct gdbarch
*gdbarch
,
1723 /* DTrace probe arguments can be found on the ABI-defined places for
1724 regular arguments at the current PC. The probe abstraction
1725 currently supports up to 12 arguments for probes. */
1727 using namespace expr
;
1731 static const int arg_reg_map
[6] =
1733 AMD64_RDI_REGNUM
, /* Arg 1. */
1734 AMD64_RSI_REGNUM
, /* Arg 2. */
1735 AMD64_RDX_REGNUM
, /* Arg 3. */
1736 AMD64_RCX_REGNUM
, /* Arg 4. */
1737 AMD64_R8_REGNUM
, /* Arg 5. */
1738 AMD64_R9_REGNUM
/* Arg 6. */
1740 int regno
= arg_reg_map
[narg
];
1741 const char *regname
= user_reg_map_regnum_to_name (gdbarch
, regno
);
1742 return make_operation
<register_operation
> (regname
);
1746 /* Additional arguments are passed on the stack. */
1747 const char *regname
= user_reg_map_regnum_to_name (gdbarch
, AMD64_RSP_REGNUM
);
1750 struct type
*long_type
= builtin_type (gdbarch
)->builtin_long
;
1751 operation_up disp
= make_operation
<long_const_operation
> (long_type
,
1755 operation_up reg
= make_operation
<register_operation
> (regname
);
1757 operation_up add
= make_operation
<add_operation
> (std::move (disp
),
1761 operation_up cast
= make_operation
<unop_cast_operation
> (std::move (add
),
1764 return make_operation
<unop_ind_operation
> (std::move (cast
));
1769 amd64_linux_init_abi_common(struct gdbarch_info info
, struct gdbarch
*gdbarch
,
1770 int num_disp_step_buffers
)
1772 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
1774 linux_init_abi (info
, gdbarch
, num_disp_step_buffers
);
1776 tdep
->sigtramp_p
= amd64_linux_sigtramp_p
;
1777 tdep
->sigcontext_addr
= amd64_linux_sigcontext_addr
;
1778 tdep
->sc_reg_offset
= amd64_linux_sc_reg_offset
;
1779 tdep
->sc_num_regs
= ARRAY_SIZE (amd64_linux_sc_reg_offset
);
1781 tdep
->xsave_xcr0_offset
= I386_LINUX_XSAVE_XCR0_OFFSET
;
1782 set_gdbarch_core_read_x86_xsave_layout
1783 (gdbarch
, i386_linux_core_read_x86_xsave_layout
);
1785 /* Add the %orig_rax register used for syscall restarting. */
1786 set_gdbarch_write_pc (gdbarch
, amd64_linux_write_pc
);
1788 tdep
->register_reggroup_p
= amd64_linux_register_reggroup_p
;
1790 /* Functions for 'catch syscall'. */
1791 set_xml_syscall_file_name (gdbarch
, XML_SYSCALL_FILENAME_AMD64
);
1792 set_gdbarch_get_syscall_number (gdbarch
,
1793 amd64_linux_get_syscall_number
);
1795 /* Enable TLS support. */
1796 set_gdbarch_fetch_tls_load_module_address (gdbarch
,
1797 svr4_fetch_objfile_link_map
);
1799 /* GNU/Linux uses SVR4-style shared libraries. */
1800 set_gdbarch_skip_trampoline_code (gdbarch
, find_solib_trampoline_target
);
1802 /* GNU/Linux uses the dynamic linker included in the GNU C Library. */
1803 set_gdbarch_skip_solib_resolver (gdbarch
, glibc_skip_solib_resolver
);
1805 /* Iterate over core file register note sections. */
1806 set_gdbarch_iterate_over_regset_sections
1807 (gdbarch
, amd64_linux_iterate_over_regset_sections
);
1809 set_gdbarch_core_read_description (gdbarch
,
1810 amd64_linux_core_read_description
);
1812 /* Displaced stepping. */
1813 set_gdbarch_displaced_step_copy_insn (gdbarch
,
1814 amd64_displaced_step_copy_insn
);
1815 set_gdbarch_displaced_step_fixup (gdbarch
, amd64_displaced_step_fixup
);
1817 set_gdbarch_process_record (gdbarch
, i386_process_record
);
1818 set_gdbarch_process_record_signal (gdbarch
, amd64_linux_record_signal
);
1820 set_gdbarch_get_siginfo_type (gdbarch
, x86_linux_get_siginfo_type
);
1821 set_gdbarch_report_signal_info (gdbarch
, i386_linux_report_signal_info
);
1825 amd64_linux_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
1827 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
1828 struct tdesc_arch_data
*tdesc_data
= info
.tdesc_data
;
1829 const struct tdesc_feature
*feature
;
1832 gdb_assert (tdesc_data
);
1834 tdep
->gregset_reg_offset
= amd64_linux_gregset_reg_offset
;
1835 tdep
->gregset_num_regs
= ARRAY_SIZE (amd64_linux_gregset_reg_offset
);
1836 tdep
->sizeof_gregset
= 27 * 8;
1838 amd64_init_abi (info
, gdbarch
,
1839 amd64_linux_read_description (X86_XSTATE_SSE_MASK
, false));
1841 const target_desc
*tdesc
= tdep
->tdesc
;
1843 /* Reserve a number for orig_rax. */
1844 set_gdbarch_num_regs (gdbarch
, AMD64_LINUX_NUM_REGS
);
1846 feature
= tdesc_find_feature (tdesc
, "org.gnu.gdb.i386.linux");
1847 if (feature
== NULL
)
1850 valid_p
= tdesc_numbered_register (feature
, tdesc_data
,
1851 AMD64_LINUX_ORIG_RAX_REGNUM
,
1856 amd64_linux_init_abi_common (info
, gdbarch
, 2);
1858 /* Initialize the amd64_linux_record_tdep. */
1859 /* These values are the size of the type that will be used in a system
1860 call. They are obtained from Linux Kernel source. */
1861 amd64_linux_record_tdep
.size_pointer
1862 = gdbarch_ptr_bit (gdbarch
) / TARGET_CHAR_BIT
;
1863 amd64_linux_record_tdep
.size__old_kernel_stat
= 32;
1864 amd64_linux_record_tdep
.size_tms
= 32;
1865 amd64_linux_record_tdep
.size_loff_t
= 8;
1866 amd64_linux_record_tdep
.size_flock
= 32;
1867 amd64_linux_record_tdep
.size_oldold_utsname
= 45;
1868 amd64_linux_record_tdep
.size_ustat
= 32;
1869 /* ADM64 doesn't need this size because it doesn't have sys_sigaction
1870 but sys_rt_sigaction. */
1871 amd64_linux_record_tdep
.size_old_sigaction
= 32;
1872 /* ADM64 doesn't need this size because it doesn't have sys_sigpending
1873 but sys_rt_sigpending. */
1874 amd64_linux_record_tdep
.size_old_sigset_t
= 8;
1875 amd64_linux_record_tdep
.size_rlimit
= 16;
1876 amd64_linux_record_tdep
.size_rusage
= 144;
1877 amd64_linux_record_tdep
.size_timeval
= 16;
1878 amd64_linux_record_tdep
.size_timezone
= 8;
1879 /* ADM64 doesn't need this size because it doesn't have sys_getgroups16
1880 but sys_getgroups. */
1881 amd64_linux_record_tdep
.size_old_gid_t
= 2;
1882 /* ADM64 doesn't need this size because it doesn't have sys_getresuid16
1883 but sys_getresuid. */
1884 amd64_linux_record_tdep
.size_old_uid_t
= 2;
1885 amd64_linux_record_tdep
.size_fd_set
= 128;
1886 /* ADM64 doesn't need this size because it doesn't have sys_readdir. */
1887 amd64_linux_record_tdep
.size_old_dirent
= 280;
1888 amd64_linux_record_tdep
.size_statfs
= 120;
1889 amd64_linux_record_tdep
.size_statfs64
= 120;
1890 amd64_linux_record_tdep
.size_sockaddr
= 16;
1891 amd64_linux_record_tdep
.size_int
1892 = gdbarch_int_bit (gdbarch
) / TARGET_CHAR_BIT
;
1893 amd64_linux_record_tdep
.size_long
1894 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
1895 amd64_linux_record_tdep
.size_ulong
1896 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
1897 amd64_linux_record_tdep
.size_msghdr
= 56;
1898 amd64_linux_record_tdep
.size_itimerval
= 32;
1899 amd64_linux_record_tdep
.size_stat
= 144;
1900 amd64_linux_record_tdep
.size_old_utsname
= 325;
1901 amd64_linux_record_tdep
.size_sysinfo
= 112;
1902 amd64_linux_record_tdep
.size_msqid_ds
= 120;
1903 amd64_linux_record_tdep
.size_shmid_ds
= 112;
1904 amd64_linux_record_tdep
.size_new_utsname
= 390;
1905 amd64_linux_record_tdep
.size_timex
= 208;
1906 amd64_linux_record_tdep
.size_mem_dqinfo
= 24;
1907 amd64_linux_record_tdep
.size_if_dqblk
= 72;
1908 amd64_linux_record_tdep
.size_fs_quota_stat
= 80;
1909 amd64_linux_record_tdep
.size_timespec
= 16;
1910 amd64_linux_record_tdep
.size_pollfd
= 8;
1911 amd64_linux_record_tdep
.size_NFS_FHSIZE
= 32;
1912 amd64_linux_record_tdep
.size_knfsd_fh
= 132;
1913 amd64_linux_record_tdep
.size_TASK_COMM_LEN
= 16;
1914 amd64_linux_record_tdep
.size_sigaction
= 32;
1915 amd64_linux_record_tdep
.size_sigset_t
= 8;
1916 amd64_linux_record_tdep
.size_siginfo_t
= 128;
1917 amd64_linux_record_tdep
.size_cap_user_data_t
= 8;
1918 amd64_linux_record_tdep
.size_stack_t
= 24;
1919 amd64_linux_record_tdep
.size_off_t
= 8;
1920 amd64_linux_record_tdep
.size_stat64
= 144;
1921 amd64_linux_record_tdep
.size_gid_t
= 4;
1922 amd64_linux_record_tdep
.size_uid_t
= 4;
1923 amd64_linux_record_tdep
.size_PAGE_SIZE
= 4096;
1924 amd64_linux_record_tdep
.size_flock64
= 32;
1925 amd64_linux_record_tdep
.size_user_desc
= 16;
1926 amd64_linux_record_tdep
.size_io_event
= 32;
1927 amd64_linux_record_tdep
.size_iocb
= 64;
1928 amd64_linux_record_tdep
.size_epoll_event
= 12;
1929 amd64_linux_record_tdep
.size_itimerspec
= 32;
1930 amd64_linux_record_tdep
.size_mq_attr
= 64;
1931 amd64_linux_record_tdep
.size_termios
= 36;
1932 amd64_linux_record_tdep
.size_termios2
= 44;
1933 amd64_linux_record_tdep
.size_pid_t
= 4;
1934 amd64_linux_record_tdep
.size_winsize
= 8;
1935 amd64_linux_record_tdep
.size_serial_struct
= 72;
1936 amd64_linux_record_tdep
.size_serial_icounter_struct
= 80;
1937 amd64_linux_record_tdep
.size_hayes_esp_config
= 12;
1938 amd64_linux_record_tdep
.size_size_t
= 8;
1939 amd64_linux_record_tdep
.size_iovec
= 16;
1940 amd64_linux_record_tdep
.size_time_t
= 8;
1942 /* These values are the second argument of system call "sys_fcntl"
1943 and "sys_fcntl64". They are obtained from Linux Kernel source. */
1944 amd64_linux_record_tdep
.fcntl_F_GETLK
= 5;
1945 amd64_linux_record_tdep
.fcntl_F_GETLK64
= 12;
1946 amd64_linux_record_tdep
.fcntl_F_SETLK64
= 13;
1947 amd64_linux_record_tdep
.fcntl_F_SETLKW64
= 14;
1949 amd64_linux_record_tdep
.arg1
= AMD64_RDI_REGNUM
;
1950 amd64_linux_record_tdep
.arg2
= AMD64_RSI_REGNUM
;
1951 amd64_linux_record_tdep
.arg3
= AMD64_RDX_REGNUM
;
1952 amd64_linux_record_tdep
.arg4
= AMD64_R10_REGNUM
;
1953 amd64_linux_record_tdep
.arg5
= AMD64_R8_REGNUM
;
1954 amd64_linux_record_tdep
.arg6
= AMD64_R9_REGNUM
;
1956 /* These values are the second argument of system call "sys_ioctl".
1957 They are obtained from Linux Kernel source. */
1958 amd64_linux_record_tdep
.ioctl_TCGETS
= 0x5401;
1959 amd64_linux_record_tdep
.ioctl_TCSETS
= 0x5402;
1960 amd64_linux_record_tdep
.ioctl_TCSETSW
= 0x5403;
1961 amd64_linux_record_tdep
.ioctl_TCSETSF
= 0x5404;
1962 amd64_linux_record_tdep
.ioctl_TCGETA
= 0x5405;
1963 amd64_linux_record_tdep
.ioctl_TCSETA
= 0x5406;
1964 amd64_linux_record_tdep
.ioctl_TCSETAW
= 0x5407;
1965 amd64_linux_record_tdep
.ioctl_TCSETAF
= 0x5408;
1966 amd64_linux_record_tdep
.ioctl_TCSBRK
= 0x5409;
1967 amd64_linux_record_tdep
.ioctl_TCXONC
= 0x540A;
1968 amd64_linux_record_tdep
.ioctl_TCFLSH
= 0x540B;
1969 amd64_linux_record_tdep
.ioctl_TIOCEXCL
= 0x540C;
1970 amd64_linux_record_tdep
.ioctl_TIOCNXCL
= 0x540D;
1971 amd64_linux_record_tdep
.ioctl_TIOCSCTTY
= 0x540E;
1972 amd64_linux_record_tdep
.ioctl_TIOCGPGRP
= 0x540F;
1973 amd64_linux_record_tdep
.ioctl_TIOCSPGRP
= 0x5410;
1974 amd64_linux_record_tdep
.ioctl_TIOCOUTQ
= 0x5411;
1975 amd64_linux_record_tdep
.ioctl_TIOCSTI
= 0x5412;
1976 amd64_linux_record_tdep
.ioctl_TIOCGWINSZ
= 0x5413;
1977 amd64_linux_record_tdep
.ioctl_TIOCSWINSZ
= 0x5414;
1978 amd64_linux_record_tdep
.ioctl_TIOCMGET
= 0x5415;
1979 amd64_linux_record_tdep
.ioctl_TIOCMBIS
= 0x5416;
1980 amd64_linux_record_tdep
.ioctl_TIOCMBIC
= 0x5417;
1981 amd64_linux_record_tdep
.ioctl_TIOCMSET
= 0x5418;
1982 amd64_linux_record_tdep
.ioctl_TIOCGSOFTCAR
= 0x5419;
1983 amd64_linux_record_tdep
.ioctl_TIOCSSOFTCAR
= 0x541A;
1984 amd64_linux_record_tdep
.ioctl_FIONREAD
= 0x541B;
1985 amd64_linux_record_tdep
.ioctl_TIOCINQ
1986 = amd64_linux_record_tdep
.ioctl_FIONREAD
;
1987 amd64_linux_record_tdep
.ioctl_TIOCLINUX
= 0x541C;
1988 amd64_linux_record_tdep
.ioctl_TIOCCONS
= 0x541D;
1989 amd64_linux_record_tdep
.ioctl_TIOCGSERIAL
= 0x541E;
1990 amd64_linux_record_tdep
.ioctl_TIOCSSERIAL
= 0x541F;
1991 amd64_linux_record_tdep
.ioctl_TIOCPKT
= 0x5420;
1992 amd64_linux_record_tdep
.ioctl_FIONBIO
= 0x5421;
1993 amd64_linux_record_tdep
.ioctl_TIOCNOTTY
= 0x5422;
1994 amd64_linux_record_tdep
.ioctl_TIOCSETD
= 0x5423;
1995 amd64_linux_record_tdep
.ioctl_TIOCGETD
= 0x5424;
1996 amd64_linux_record_tdep
.ioctl_TCSBRKP
= 0x5425;
1997 amd64_linux_record_tdep
.ioctl_TIOCTTYGSTRUCT
= 0x5426;
1998 amd64_linux_record_tdep
.ioctl_TIOCSBRK
= 0x5427;
1999 amd64_linux_record_tdep
.ioctl_TIOCCBRK
= 0x5428;
2000 amd64_linux_record_tdep
.ioctl_TIOCGSID
= 0x5429;
2001 amd64_linux_record_tdep
.ioctl_TCGETS2
= 0x802c542a;
2002 amd64_linux_record_tdep
.ioctl_TCSETS2
= 0x402c542b;
2003 amd64_linux_record_tdep
.ioctl_TCSETSW2
= 0x402c542c;
2004 amd64_linux_record_tdep
.ioctl_TCSETSF2
= 0x402c542d;
2005 amd64_linux_record_tdep
.ioctl_TIOCGPTN
= 0x80045430;
2006 amd64_linux_record_tdep
.ioctl_TIOCSPTLCK
= 0x40045431;
2007 amd64_linux_record_tdep
.ioctl_FIONCLEX
= 0x5450;
2008 amd64_linux_record_tdep
.ioctl_FIOCLEX
= 0x5451;
2009 amd64_linux_record_tdep
.ioctl_FIOASYNC
= 0x5452;
2010 amd64_linux_record_tdep
.ioctl_TIOCSERCONFIG
= 0x5453;
2011 amd64_linux_record_tdep
.ioctl_TIOCSERGWILD
= 0x5454;
2012 amd64_linux_record_tdep
.ioctl_TIOCSERSWILD
= 0x5455;
2013 amd64_linux_record_tdep
.ioctl_TIOCGLCKTRMIOS
= 0x5456;
2014 amd64_linux_record_tdep
.ioctl_TIOCSLCKTRMIOS
= 0x5457;
2015 amd64_linux_record_tdep
.ioctl_TIOCSERGSTRUCT
= 0x5458;
2016 amd64_linux_record_tdep
.ioctl_TIOCSERGETLSR
= 0x5459;
2017 amd64_linux_record_tdep
.ioctl_TIOCSERGETMULTI
= 0x545A;
2018 amd64_linux_record_tdep
.ioctl_TIOCSERSETMULTI
= 0x545B;
2019 amd64_linux_record_tdep
.ioctl_TIOCMIWAIT
= 0x545C;
2020 amd64_linux_record_tdep
.ioctl_TIOCGICOUNT
= 0x545D;
2021 amd64_linux_record_tdep
.ioctl_TIOCGHAYESESP
= 0x545E;
2022 amd64_linux_record_tdep
.ioctl_TIOCSHAYESESP
= 0x545F;
2023 amd64_linux_record_tdep
.ioctl_FIOQSIZE
= 0x5460;
2025 tdep
->i386_syscall_record
= amd64_linux_syscall_record
;
2027 /* GNU/Linux uses SVR4-style shared libraries. */
2028 set_solib_svr4_fetch_link_map_offsets
2029 (gdbarch
, linux_lp64_fetch_link_map_offsets
);
2031 /* Register DTrace handlers. */
2032 set_gdbarch_dtrace_parse_probe_argument (gdbarch
, amd64_dtrace_parse_probe_argument
);
2033 set_gdbarch_dtrace_probe_is_enabled (gdbarch
, amd64_dtrace_probe_is_enabled
);
2034 set_gdbarch_dtrace_enable_probe (gdbarch
, amd64_dtrace_enable_probe
);
2035 set_gdbarch_dtrace_disable_probe (gdbarch
, amd64_dtrace_disable_probe
);
2039 amd64_x32_linux_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
2041 i386_gdbarch_tdep
*tdep
= gdbarch_tdep
<i386_gdbarch_tdep
> (gdbarch
);
2042 struct tdesc_arch_data
*tdesc_data
= info
.tdesc_data
;
2043 const struct tdesc_feature
*feature
;
2046 gdb_assert (tdesc_data
);
2048 tdep
->gregset_reg_offset
= amd64_linux_gregset_reg_offset
;
2049 tdep
->gregset_num_regs
= ARRAY_SIZE (amd64_linux_gregset_reg_offset
);
2050 tdep
->sizeof_gregset
= 27 * 8;
2052 amd64_x32_init_abi (info
, gdbarch
,
2053 amd64_linux_read_description (X86_XSTATE_SSE_MASK
,
2056 /* Reserve a number for orig_rax. */
2057 set_gdbarch_num_regs (gdbarch
, AMD64_LINUX_NUM_REGS
);
2059 const target_desc
*tdesc
= tdep
->tdesc
;
2061 feature
= tdesc_find_feature (tdesc
, "org.gnu.gdb.i386.linux");
2062 if (feature
== NULL
)
2065 valid_p
= tdesc_numbered_register (feature
, tdesc_data
,
2066 AMD64_LINUX_ORIG_RAX_REGNUM
,
2071 amd64_linux_init_abi_common (info
, gdbarch
, 0);
2073 /* Initialize the amd64_x32_linux_record_tdep. */
2074 /* These values are the size of the type that will be used in a system
2075 call. They are obtained from Linux Kernel source. */
2076 amd64_x32_linux_record_tdep
.size_pointer
2077 = gdbarch_ptr_bit (gdbarch
) / TARGET_CHAR_BIT
;
2078 amd64_x32_linux_record_tdep
.size__old_kernel_stat
= 32;
2079 amd64_x32_linux_record_tdep
.size_tms
= 32;
2080 amd64_x32_linux_record_tdep
.size_loff_t
= 8;
2081 amd64_x32_linux_record_tdep
.size_flock
= 32;
2082 amd64_x32_linux_record_tdep
.size_oldold_utsname
= 45;
2083 amd64_x32_linux_record_tdep
.size_ustat
= 32;
2084 /* ADM64 doesn't need this size because it doesn't have sys_sigaction
2085 but sys_rt_sigaction. */
2086 amd64_x32_linux_record_tdep
.size_old_sigaction
= 16;
2087 /* ADM64 doesn't need this size because it doesn't have sys_sigpending
2088 but sys_rt_sigpending. */
2089 amd64_x32_linux_record_tdep
.size_old_sigset_t
= 4;
2090 amd64_x32_linux_record_tdep
.size_rlimit
= 16;
2091 amd64_x32_linux_record_tdep
.size_rusage
= 144;
2092 amd64_x32_linux_record_tdep
.size_timeval
= 16;
2093 amd64_x32_linux_record_tdep
.size_timezone
= 8;
2094 /* ADM64 doesn't need this size because it doesn't have sys_getgroups16
2095 but sys_getgroups. */
2096 amd64_x32_linux_record_tdep
.size_old_gid_t
= 2;
2097 /* ADM64 doesn't need this size because it doesn't have sys_getresuid16
2098 but sys_getresuid. */
2099 amd64_x32_linux_record_tdep
.size_old_uid_t
= 2;
2100 amd64_x32_linux_record_tdep
.size_fd_set
= 128;
2101 /* ADM64 doesn't need this size because it doesn't have sys_readdir. */
2102 amd64_x32_linux_record_tdep
.size_old_dirent
= 268;
2103 amd64_x32_linux_record_tdep
.size_statfs
= 120;
2104 amd64_x32_linux_record_tdep
.size_statfs64
= 120;
2105 amd64_x32_linux_record_tdep
.size_sockaddr
= 16;
2106 amd64_x32_linux_record_tdep
.size_int
2107 = gdbarch_int_bit (gdbarch
) / TARGET_CHAR_BIT
;
2108 amd64_x32_linux_record_tdep
.size_long
2109 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
2110 amd64_x32_linux_record_tdep
.size_ulong
2111 = gdbarch_long_bit (gdbarch
) / TARGET_CHAR_BIT
;
2112 amd64_x32_linux_record_tdep
.size_msghdr
= 28;
2113 amd64_x32_linux_record_tdep
.size_itimerval
= 32;
2114 amd64_x32_linux_record_tdep
.size_stat
= 144;
2115 amd64_x32_linux_record_tdep
.size_old_utsname
= 325;
2116 amd64_x32_linux_record_tdep
.size_sysinfo
= 112;
2117 amd64_x32_linux_record_tdep
.size_msqid_ds
= 120;
2118 amd64_x32_linux_record_tdep
.size_shmid_ds
= 112;
2119 amd64_x32_linux_record_tdep
.size_new_utsname
= 390;
2120 amd64_x32_linux_record_tdep
.size_timex
= 208;
2121 amd64_x32_linux_record_tdep
.size_mem_dqinfo
= 24;
2122 amd64_x32_linux_record_tdep
.size_if_dqblk
= 72;
2123 amd64_x32_linux_record_tdep
.size_fs_quota_stat
= 80;
2124 amd64_x32_linux_record_tdep
.size_timespec
= 16;
2125 amd64_x32_linux_record_tdep
.size_pollfd
= 8;
2126 amd64_x32_linux_record_tdep
.size_NFS_FHSIZE
= 32;
2127 amd64_x32_linux_record_tdep
.size_knfsd_fh
= 132;
2128 amd64_x32_linux_record_tdep
.size_TASK_COMM_LEN
= 16;
2129 amd64_x32_linux_record_tdep
.size_sigaction
= 20;
2130 amd64_x32_linux_record_tdep
.size_sigset_t
= 8;
2131 amd64_x32_linux_record_tdep
.size_siginfo_t
= 128;
2132 amd64_x32_linux_record_tdep
.size_cap_user_data_t
= 8;
2133 amd64_x32_linux_record_tdep
.size_stack_t
= 12;
2134 amd64_x32_linux_record_tdep
.size_off_t
= 8;
2135 amd64_x32_linux_record_tdep
.size_stat64
= 144;
2136 amd64_x32_linux_record_tdep
.size_gid_t
= 4;
2137 amd64_x32_linux_record_tdep
.size_uid_t
= 4;
2138 amd64_x32_linux_record_tdep
.size_PAGE_SIZE
= 4096;
2139 amd64_x32_linux_record_tdep
.size_flock64
= 32;
2140 amd64_x32_linux_record_tdep
.size_user_desc
= 16;
2141 amd64_x32_linux_record_tdep
.size_io_event
= 32;
2142 amd64_x32_linux_record_tdep
.size_iocb
= 64;
2143 amd64_x32_linux_record_tdep
.size_epoll_event
= 12;
2144 amd64_x32_linux_record_tdep
.size_itimerspec
= 32;
2145 amd64_x32_linux_record_tdep
.size_mq_attr
= 64;
2146 amd64_x32_linux_record_tdep
.size_termios
= 36;
2147 amd64_x32_linux_record_tdep
.size_termios2
= 44;
2148 amd64_x32_linux_record_tdep
.size_pid_t
= 4;
2149 amd64_x32_linux_record_tdep
.size_winsize
= 8;
2150 amd64_x32_linux_record_tdep
.size_serial_struct
= 72;
2151 amd64_x32_linux_record_tdep
.size_serial_icounter_struct
= 80;
2152 amd64_x32_linux_record_tdep
.size_hayes_esp_config
= 12;
2153 amd64_x32_linux_record_tdep
.size_size_t
= 4;
2154 amd64_x32_linux_record_tdep
.size_iovec
= 8;
2155 amd64_x32_linux_record_tdep
.size_time_t
= 8;
2157 /* These values are the second argument of system call "sys_fcntl"
2158 and "sys_fcntl64". They are obtained from Linux Kernel source. */
2159 amd64_x32_linux_record_tdep
.fcntl_F_GETLK
= 5;
2160 amd64_x32_linux_record_tdep
.fcntl_F_GETLK64
= 12;
2161 amd64_x32_linux_record_tdep
.fcntl_F_SETLK64
= 13;
2162 amd64_x32_linux_record_tdep
.fcntl_F_SETLKW64
= 14;
2164 amd64_x32_linux_record_tdep
.arg1
= AMD64_RDI_REGNUM
;
2165 amd64_x32_linux_record_tdep
.arg2
= AMD64_RSI_REGNUM
;
2166 amd64_x32_linux_record_tdep
.arg3
= AMD64_RDX_REGNUM
;
2167 amd64_x32_linux_record_tdep
.arg4
= AMD64_R10_REGNUM
;
2168 amd64_x32_linux_record_tdep
.arg5
= AMD64_R8_REGNUM
;
2169 amd64_x32_linux_record_tdep
.arg6
= AMD64_R9_REGNUM
;
2171 /* These values are the second argument of system call "sys_ioctl".
2172 They are obtained from Linux Kernel source. */
2173 amd64_x32_linux_record_tdep
.ioctl_TCGETS
= 0x5401;
2174 amd64_x32_linux_record_tdep
.ioctl_TCSETS
= 0x5402;
2175 amd64_x32_linux_record_tdep
.ioctl_TCSETSW
= 0x5403;
2176 amd64_x32_linux_record_tdep
.ioctl_TCSETSF
= 0x5404;
2177 amd64_x32_linux_record_tdep
.ioctl_TCGETA
= 0x5405;
2178 amd64_x32_linux_record_tdep
.ioctl_TCSETA
= 0x5406;
2179 amd64_x32_linux_record_tdep
.ioctl_TCSETAW
= 0x5407;
2180 amd64_x32_linux_record_tdep
.ioctl_TCSETAF
= 0x5408;
2181 amd64_x32_linux_record_tdep
.ioctl_TCSBRK
= 0x5409;
2182 amd64_x32_linux_record_tdep
.ioctl_TCXONC
= 0x540A;
2183 amd64_x32_linux_record_tdep
.ioctl_TCFLSH
= 0x540B;
2184 amd64_x32_linux_record_tdep
.ioctl_TIOCEXCL
= 0x540C;
2185 amd64_x32_linux_record_tdep
.ioctl_TIOCNXCL
= 0x540D;
2186 amd64_x32_linux_record_tdep
.ioctl_TIOCSCTTY
= 0x540E;
2187 amd64_x32_linux_record_tdep
.ioctl_TIOCGPGRP
= 0x540F;
2188 amd64_x32_linux_record_tdep
.ioctl_TIOCSPGRP
= 0x5410;
2189 amd64_x32_linux_record_tdep
.ioctl_TIOCOUTQ
= 0x5411;
2190 amd64_x32_linux_record_tdep
.ioctl_TIOCSTI
= 0x5412;
2191 amd64_x32_linux_record_tdep
.ioctl_TIOCGWINSZ
= 0x5413;
2192 amd64_x32_linux_record_tdep
.ioctl_TIOCSWINSZ
= 0x5414;
2193 amd64_x32_linux_record_tdep
.ioctl_TIOCMGET
= 0x5415;
2194 amd64_x32_linux_record_tdep
.ioctl_TIOCMBIS
= 0x5416;
2195 amd64_x32_linux_record_tdep
.ioctl_TIOCMBIC
= 0x5417;
2196 amd64_x32_linux_record_tdep
.ioctl_TIOCMSET
= 0x5418;
2197 amd64_x32_linux_record_tdep
.ioctl_TIOCGSOFTCAR
= 0x5419;
2198 amd64_x32_linux_record_tdep
.ioctl_TIOCSSOFTCAR
= 0x541A;
2199 amd64_x32_linux_record_tdep
.ioctl_FIONREAD
= 0x541B;
2200 amd64_x32_linux_record_tdep
.ioctl_TIOCINQ
= amd64_x32_linux_record_tdep
.ioctl_FIONREAD
;
2201 amd64_x32_linux_record_tdep
.ioctl_TIOCLINUX
= 0x541C;
2202 amd64_x32_linux_record_tdep
.ioctl_TIOCCONS
= 0x541D;
2203 amd64_x32_linux_record_tdep
.ioctl_TIOCGSERIAL
= 0x541E;
2204 amd64_x32_linux_record_tdep
.ioctl_TIOCSSERIAL
= 0x541F;
2205 amd64_x32_linux_record_tdep
.ioctl_TIOCPKT
= 0x5420;
2206 amd64_x32_linux_record_tdep
.ioctl_FIONBIO
= 0x5421;
2207 amd64_x32_linux_record_tdep
.ioctl_TIOCNOTTY
= 0x5422;
2208 amd64_x32_linux_record_tdep
.ioctl_TIOCSETD
= 0x5423;
2209 amd64_x32_linux_record_tdep
.ioctl_TIOCGETD
= 0x5424;
2210 amd64_x32_linux_record_tdep
.ioctl_TCSBRKP
= 0x5425;
2211 amd64_x32_linux_record_tdep
.ioctl_TIOCTTYGSTRUCT
= 0x5426;
2212 amd64_x32_linux_record_tdep
.ioctl_TIOCSBRK
= 0x5427;
2213 amd64_x32_linux_record_tdep
.ioctl_TIOCCBRK
= 0x5428;
2214 amd64_x32_linux_record_tdep
.ioctl_TIOCGSID
= 0x5429;
2215 amd64_x32_linux_record_tdep
.ioctl_TCGETS2
= 0x802c542a;
2216 amd64_x32_linux_record_tdep
.ioctl_TCSETS2
= 0x402c542b;
2217 amd64_x32_linux_record_tdep
.ioctl_TCSETSW2
= 0x402c542c;
2218 amd64_x32_linux_record_tdep
.ioctl_TCSETSF2
= 0x402c542d;
2219 amd64_x32_linux_record_tdep
.ioctl_TIOCGPTN
= 0x80045430;
2220 amd64_x32_linux_record_tdep
.ioctl_TIOCSPTLCK
= 0x40045431;
2221 amd64_x32_linux_record_tdep
.ioctl_FIONCLEX
= 0x5450;
2222 amd64_x32_linux_record_tdep
.ioctl_FIOCLEX
= 0x5451;
2223 amd64_x32_linux_record_tdep
.ioctl_FIOASYNC
= 0x5452;
2224 amd64_x32_linux_record_tdep
.ioctl_TIOCSERCONFIG
= 0x5453;
2225 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGWILD
= 0x5454;
2226 amd64_x32_linux_record_tdep
.ioctl_TIOCSERSWILD
= 0x5455;
2227 amd64_x32_linux_record_tdep
.ioctl_TIOCGLCKTRMIOS
= 0x5456;
2228 amd64_x32_linux_record_tdep
.ioctl_TIOCSLCKTRMIOS
= 0x5457;
2229 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGSTRUCT
= 0x5458;
2230 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGETLSR
= 0x5459;
2231 amd64_x32_linux_record_tdep
.ioctl_TIOCSERGETMULTI
= 0x545A;
2232 amd64_x32_linux_record_tdep
.ioctl_TIOCSERSETMULTI
= 0x545B;
2233 amd64_x32_linux_record_tdep
.ioctl_TIOCMIWAIT
= 0x545C;
2234 amd64_x32_linux_record_tdep
.ioctl_TIOCGICOUNT
= 0x545D;
2235 amd64_x32_linux_record_tdep
.ioctl_TIOCGHAYESESP
= 0x545E;
2236 amd64_x32_linux_record_tdep
.ioctl_TIOCSHAYESESP
= 0x545F;
2237 amd64_x32_linux_record_tdep
.ioctl_FIOQSIZE
= 0x5460;
2239 tdep
->i386_syscall_record
= amd64_x32_linux_syscall_record
;
2241 /* GNU/Linux uses SVR4-style shared libraries. */
2242 set_solib_svr4_fetch_link_map_offsets
2243 (gdbarch
, linux_ilp32_fetch_link_map_offsets
);
2246 void _initialize_amd64_linux_tdep ();
2248 _initialize_amd64_linux_tdep ()
2250 gdbarch_register_osabi (bfd_arch_i386
, bfd_mach_x86_64
,
2251 GDB_OSABI_LINUX
, amd64_linux_init_abi
);
2252 gdbarch_register_osabi (bfd_arch_i386
, bfd_mach_x64_32
,
2253 GDB_OSABI_LINUX
, amd64_x32_linux_init_abi
);