1 /* Target-dependent code for GNU/Linux i386.
3 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
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/>. */
28 #include "reggroups.h"
29 #include "dwarf2-frame.h"
30 #include "gdb_string.h"
32 #include "i386-tdep.h"
33 #include "i386-linux-tdep.h"
34 #include "linux-tdep.h"
35 #include "glibc-tdep.h"
36 #include "solib-svr4.h"
38 #include "arch-utils.h"
40 #include "xml-syscall.h"
42 /* The syscall's XML filename for i386. */
43 #define XML_SYSCALL_FILENAME_I386 "syscalls/i386-linux.xml"
46 #include "linux-record.h"
49 /* Supported register note sections. */
50 static struct core_regset_section i386_linux_regset_sections[] =
52 { ".reg", 144, "general-purpose" },
53 { ".reg2", 108, "floating-point" },
54 { ".reg-xfp", 512, "extended floating-point" },
58 /* Return the name of register REG. */
61 i386_linux_register_name (struct gdbarch *gdbarch, int reg)
63 /* Deal with the extra "orig_eax" pseudo register. */
64 if (reg == I386_LINUX_ORIG_EAX_REGNUM)
67 return i386_register_name (gdbarch, reg);
70 /* Return non-zero, when the register is in the corresponding register
71 group. Put the LINUX_ORIG_EAX register in the system group. */
73 i386_linux_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
74 struct reggroup *group)
76 if (regnum == I386_LINUX_ORIG_EAX_REGNUM)
77 return (group == system_reggroup
78 || group == save_reggroup
79 || group == restore_reggroup);
80 return i386_register_reggroup_p (gdbarch, regnum, group);
84 /* Recognizing signal handler frames. */
86 /* GNU/Linux has two flavors of signals. Normal signal handlers, and
87 "realtime" (RT) signals. The RT signals can provide additional
88 information to the signal handler if the SA_SIGINFO flag is set
89 when establishing a signal handler using `sigaction'. It is not
90 unlikely that future versions of GNU/Linux will support SA_SIGINFO
91 for normal signals too. */
93 /* When the i386 Linux kernel calls a signal handler and the
94 SA_RESTORER flag isn't set, the return address points to a bit of
95 code on the stack. This function returns whether the PC appears to
96 be within this bit of code.
98 The instruction sequence for normal signals is
102 or 0x58 0xb8 0x77 0x00 0x00 0x00 0xcd 0x80.
104 Checking for the code sequence should be somewhat reliable, because
105 the effect is to call the system call sigreturn. This is unlikely
106 to occur anywhere other than in a signal trampoline.
108 It kind of sucks that we have to read memory from the process in
109 order to identify a signal trampoline, but there doesn't seem to be
110 any other way. Therefore we only do the memory reads if no
111 function name could be identified, which should be the case since
112 the code is on the stack.
114 Detection of signal trampolines for handlers that set the
115 SA_RESTORER flag is in general not possible. Unfortunately this is
116 what the GNU C Library has been doing for quite some time now.
117 However, as of version 2.1.2, the GNU C Library uses signal
118 trampolines (named __restore and __restore_rt) that are identical
119 to the ones used by the kernel. Therefore, these trampolines are
122 #define LINUX_SIGTRAMP_INSN0 0x58 /* pop %eax */
123 #define LINUX_SIGTRAMP_OFFSET0 0
124 #define LINUX_SIGTRAMP_INSN1 0xb8 /* mov $NNNN, %eax */
125 #define LINUX_SIGTRAMP_OFFSET1 1
126 #define LINUX_SIGTRAMP_INSN2 0xcd /* int */
127 #define LINUX_SIGTRAMP_OFFSET2 6
129 static const gdb_byte linux_sigtramp_code[] =
131 LINUX_SIGTRAMP_INSN0, /* pop %eax */
132 LINUX_SIGTRAMP_INSN1, 0x77, 0x00, 0x00, 0x00, /* mov $0x77, %eax */
133 LINUX_SIGTRAMP_INSN2, 0x80 /* int $0x80 */
136 #define LINUX_SIGTRAMP_LEN (sizeof linux_sigtramp_code)
138 /* If THIS_FRAME is a sigtramp routine, return the address of the
139 start of the routine. Otherwise, return 0. */
142 i386_linux_sigtramp_start (struct frame_info *this_frame)
144 CORE_ADDR pc = get_frame_pc (this_frame);
145 gdb_byte buf[LINUX_SIGTRAMP_LEN];
147 /* We only recognize a signal trampoline if PC is at the start of
148 one of the three instructions. We optimize for finding the PC at
149 the start, as will be the case when the trampoline is not the
150 first frame on the stack. We assume that in the case where the
151 PC is not at the start of the instruction sequence, there will be
152 a few trailing readable bytes on the stack. */
154 if (!safe_frame_unwind_memory (this_frame, pc, buf, LINUX_SIGTRAMP_LEN))
157 if (buf[0] != LINUX_SIGTRAMP_INSN0)
163 case LINUX_SIGTRAMP_INSN1:
164 adjust = LINUX_SIGTRAMP_OFFSET1;
166 case LINUX_SIGTRAMP_INSN2:
167 adjust = LINUX_SIGTRAMP_OFFSET2;
175 if (!safe_frame_unwind_memory (this_frame, pc, buf, LINUX_SIGTRAMP_LEN))
179 if (memcmp (buf, linux_sigtramp_code, LINUX_SIGTRAMP_LEN) != 0)
185 /* This function does the same for RT signals. Here the instruction
189 or 0xb8 0xad 0x00 0x00 0x00 0xcd 0x80.
191 The effect is to call the system call rt_sigreturn. */
193 #define LINUX_RT_SIGTRAMP_INSN0 0xb8 /* mov $NNNN, %eax */
194 #define LINUX_RT_SIGTRAMP_OFFSET0 0
195 #define LINUX_RT_SIGTRAMP_INSN1 0xcd /* int */
196 #define LINUX_RT_SIGTRAMP_OFFSET1 5
198 static const gdb_byte linux_rt_sigtramp_code[] =
200 LINUX_RT_SIGTRAMP_INSN0, 0xad, 0x00, 0x00, 0x00, /* mov $0xad, %eax */
201 LINUX_RT_SIGTRAMP_INSN1, 0x80 /* int $0x80 */
204 #define LINUX_RT_SIGTRAMP_LEN (sizeof linux_rt_sigtramp_code)
206 /* If THIS_FRAME is an RT sigtramp routine, return the address of the
207 start of the routine. Otherwise, return 0. */
210 i386_linux_rt_sigtramp_start (struct frame_info *this_frame)
212 CORE_ADDR pc = get_frame_pc (this_frame);
213 gdb_byte buf[LINUX_RT_SIGTRAMP_LEN];
215 /* We only recognize a signal trampoline if PC is at the start of
216 one of the two instructions. We optimize for finding the PC at
217 the start, as will be the case when the trampoline is not the
218 first frame on the stack. We assume that in the case where the
219 PC is not at the start of the instruction sequence, there will be
220 a few trailing readable bytes on the stack. */
222 if (!safe_frame_unwind_memory (this_frame, pc, buf, LINUX_RT_SIGTRAMP_LEN))
225 if (buf[0] != LINUX_RT_SIGTRAMP_INSN0)
227 if (buf[0] != LINUX_RT_SIGTRAMP_INSN1)
230 pc -= LINUX_RT_SIGTRAMP_OFFSET1;
232 if (!safe_frame_unwind_memory (this_frame, pc, buf,
233 LINUX_RT_SIGTRAMP_LEN))
237 if (memcmp (buf, linux_rt_sigtramp_code, LINUX_RT_SIGTRAMP_LEN) != 0)
243 /* Return whether THIS_FRAME corresponds to a GNU/Linux sigtramp
247 i386_linux_sigtramp_p (struct frame_info *this_frame)
249 CORE_ADDR pc = get_frame_pc (this_frame);
252 find_pc_partial_function (pc, &name, NULL, NULL);
254 /* If we have NAME, we can optimize the search. The trampolines are
255 named __restore and __restore_rt. However, they aren't dynamically
256 exported from the shared C library, so the trampoline may appear to
257 be part of the preceding function. This should always be sigaction,
258 __sigaction, or __libc_sigaction (all aliases to the same function). */
259 if (name == NULL || strstr (name, "sigaction") != NULL)
260 return (i386_linux_sigtramp_start (this_frame) != 0
261 || i386_linux_rt_sigtramp_start (this_frame) != 0);
263 return (strcmp ("__restore", name) == 0
264 || strcmp ("__restore_rt", name) == 0);
267 /* Return one if the PC of THIS_FRAME is in a signal trampoline which
268 may have DWARF-2 CFI. */
271 i386_linux_dwarf_signal_frame_p (struct gdbarch *gdbarch,
272 struct frame_info *this_frame)
274 CORE_ADDR pc = get_frame_pc (this_frame);
277 find_pc_partial_function (pc, &name, NULL, NULL);
279 /* If a vsyscall DSO is in use, the signal trampolines may have these
281 if (name && (strcmp (name, "__kernel_sigreturn") == 0
282 || strcmp (name, "__kernel_rt_sigreturn") == 0))
288 /* Offset to struct sigcontext in ucontext, from <asm/ucontext.h>. */
289 #define I386_LINUX_UCONTEXT_SIGCONTEXT_OFFSET 20
291 /* Assuming THIS_FRAME is a GNU/Linux sigtramp routine, return the
292 address of the associated sigcontext structure. */
295 i386_linux_sigcontext_addr (struct frame_info *this_frame)
297 struct gdbarch *gdbarch = get_frame_arch (this_frame);
298 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
303 get_frame_register (this_frame, I386_ESP_REGNUM, buf);
304 sp = extract_unsigned_integer (buf, 4, byte_order);
306 pc = i386_linux_sigtramp_start (this_frame);
309 /* The sigcontext structure lives on the stack, right after
310 the signum argument. We determine the address of the
311 sigcontext structure by looking at the frame's stack
312 pointer. Keep in mind that the first instruction of the
313 sigtramp code is "pop %eax". If the PC is after this
314 instruction, adjust the returned value accordingly. */
315 if (pc == get_frame_pc (this_frame))
320 pc = i386_linux_rt_sigtramp_start (this_frame);
323 CORE_ADDR ucontext_addr;
325 /* The sigcontext structure is part of the user context. A
326 pointer to the user context is passed as the third argument
327 to the signal handler. */
328 read_memory (sp + 8, buf, 4);
329 ucontext_addr = extract_unsigned_integer (buf, 4, byte_order);
330 return ucontext_addr + I386_LINUX_UCONTEXT_SIGCONTEXT_OFFSET;
333 error (_("Couldn't recognize signal trampoline."));
337 /* Set the program counter for process PTID to PC. */
340 i386_linux_write_pc (struct regcache *regcache, CORE_ADDR pc)
342 regcache_cooked_write_unsigned (regcache, I386_EIP_REGNUM, pc);
344 /* We must be careful with modifying the program counter. If we
345 just interrupted a system call, the kernel might try to restart
346 it when we resume the inferior. On restarting the system call,
347 the kernel will try backing up the program counter even though it
348 no longer points at the system call. This typically results in a
349 SIGSEGV or SIGILL. We can prevent this by writing `-1' in the
350 "orig_eax" pseudo-register.
352 Note that "orig_eax" is saved when setting up a dummy call frame.
353 This means that it is properly restored when that frame is
354 popped, and that the interrupted system call will be restarted
355 when we resume the inferior on return from a function call from
356 within GDB. In all other cases the system call will not be
358 regcache_cooked_write_unsigned (regcache, I386_LINUX_ORIG_EAX_REGNUM, -1);
361 /* Record all registers but IP register for process-record. */
364 i386_all_but_ip_registers_record (struct regcache *regcache)
366 if (record_arch_list_add_reg (regcache, I386_EAX_REGNUM))
368 if (record_arch_list_add_reg (regcache, I386_ECX_REGNUM))
370 if (record_arch_list_add_reg (regcache, I386_EDX_REGNUM))
372 if (record_arch_list_add_reg (regcache, I386_EBX_REGNUM))
374 if (record_arch_list_add_reg (regcache, I386_ESP_REGNUM))
376 if (record_arch_list_add_reg (regcache, I386_EBP_REGNUM))
378 if (record_arch_list_add_reg (regcache, I386_ESI_REGNUM))
380 if (record_arch_list_add_reg (regcache, I386_EDI_REGNUM))
382 if (record_arch_list_add_reg (regcache, I386_EFLAGS_REGNUM))
388 /* i386_canonicalize_syscall maps from the native i386 Linux set
389 of syscall ids into a canonical set of syscall ids used by
390 process record (a mostly trivial mapping, since the canonical
391 set was originally taken from the i386 set). */
393 static enum gdb_syscall
394 i386_canonicalize_syscall (int syscall)
396 enum { i386_syscall_max = 499 };
398 if (syscall <= i386_syscall_max)
404 /* Parse the arguments of current system call instruction and record
405 the values of the registers and memory that will be changed into
406 "record_arch_list". This instruction is "int 0x80" (Linux
407 Kernel2.4) or "sysenter" (Linux Kernel 2.6).
409 Return -1 if something wrong. */
411 static struct linux_record_tdep i386_linux_record_tdep;
414 i386_linux_intx80_sysenter_record (struct regcache *regcache)
417 LONGEST syscall_native;
418 enum gdb_syscall syscall_gdb;
420 regcache_raw_read_signed (regcache, I386_EAX_REGNUM, &syscall_native);
422 syscall_gdb = i386_canonicalize_syscall (syscall_native);
426 printf_unfiltered (_("Process record and replay target doesn't "
427 "support syscall number %s\n"),
428 plongest (syscall_native));
432 if (syscall_gdb == gdb_sys_sigreturn
433 || syscall_gdb == gdb_sys_rt_sigreturn)
435 if (i386_all_but_ip_registers_record (regcache))
440 ret = record_linux_system_call (syscall_gdb, regcache,
441 &i386_linux_record_tdep);
445 /* Record the return value of the system call. */
446 if (record_arch_list_add_reg (regcache, I386_EAX_REGNUM))
452 #define I386_LINUX_xstate 270
453 #define I386_LINUX_frame_size 732
456 i386_linux_record_signal (struct gdbarch *gdbarch,
457 struct regcache *regcache,
458 enum target_signal signal)
462 if (i386_all_but_ip_registers_record (regcache))
465 if (record_arch_list_add_reg (regcache, I386_EIP_REGNUM))
468 /* Record the change in the stack. */
469 regcache_raw_read_unsigned (regcache, I386_ESP_REGNUM, &esp);
470 /* This is for xstate.
471 sp -= sizeof (struct _fpstate); */
472 esp -= I386_LINUX_xstate;
473 /* This is for frame_size.
474 sp -= sizeof (struct rt_sigframe); */
475 esp -= I386_LINUX_frame_size;
476 if (record_arch_list_add_mem (esp,
477 I386_LINUX_xstate + I386_LINUX_frame_size))
480 if (record_arch_list_add_end ())
488 i386_linux_get_syscall_number (struct gdbarch *gdbarch,
491 struct regcache *regcache = get_thread_regcache (ptid);
492 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
493 /* The content of a register. */
498 /* Getting the system call number from the register.
499 When dealing with x86 architecture, this information
500 is stored at %eax register. */
501 regcache_cooked_read (regcache, I386_LINUX_ORIG_EAX_REGNUM, buf);
503 ret = extract_signed_integer (buf, 4, byte_order);
508 /* The register sets used in GNU/Linux ELF core-dumps are identical to
509 the register sets in `struct user' that are used for a.out
510 core-dumps. These are also used by ptrace(2). The corresponding
511 types are `elf_gregset_t' for the general-purpose registers (with
512 `elf_greg_t' the type of a single GP register) and `elf_fpregset_t'
513 for the floating-point registers.
515 Those types used to be available under the names `gregset_t' and
516 `fpregset_t' too, and GDB used those names in the past. But those
517 names are now used for the register sets used in the `mcontext_t'
518 type, which have a different size and layout. */
520 /* Mapping between the general-purpose registers in `struct user'
521 format and GDB's register cache layout. */
523 /* From <sys/reg.h>. */
524 static int i386_linux_gregset_reg_offset[] =
535 14 * 4, /* %eflags */
542 -1, -1, -1, -1, -1, -1, -1, -1,
543 -1, -1, -1, -1, -1, -1, -1, -1,
544 -1, -1, -1, -1, -1, -1, -1, -1,
546 11 * 4 /* "orig_eax" */
549 /* Mapping between the general-purpose registers in `struct
550 sigcontext' format and GDB's register cache layout. */
552 /* From <asm/sigcontext.h>. */
553 static int i386_linux_sc_reg_offset[] =
564 16 * 4, /* %eflags */
574 i386_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
576 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
578 /* GNU/Linux uses ELF. */
579 i386_elf_init_abi (info, gdbarch);
581 /* Since we have the extra "orig_eax" register on GNU/Linux, we have
582 to adjust a few things. */
584 set_gdbarch_write_pc (gdbarch, i386_linux_write_pc);
585 set_gdbarch_num_regs (gdbarch, I386_LINUX_NUM_REGS);
586 set_gdbarch_register_name (gdbarch, i386_linux_register_name);
587 set_gdbarch_register_reggroup_p (gdbarch, i386_linux_register_reggroup_p);
589 tdep->gregset_reg_offset = i386_linux_gregset_reg_offset;
590 tdep->gregset_num_regs = ARRAY_SIZE (i386_linux_gregset_reg_offset);
591 tdep->sizeof_gregset = 17 * 4;
593 tdep->jb_pc_offset = 20; /* From <bits/setjmp.h>. */
595 tdep->sigtramp_p = i386_linux_sigtramp_p;
596 tdep->sigcontext_addr = i386_linux_sigcontext_addr;
597 tdep->sc_reg_offset = i386_linux_sc_reg_offset;
598 tdep->sc_num_regs = ARRAY_SIZE (i386_linux_sc_reg_offset);
600 set_gdbarch_process_record (gdbarch, i386_process_record);
601 set_gdbarch_process_record_signal (gdbarch, i386_linux_record_signal);
603 /* Initialize the i386_linux_record_tdep. */
604 /* These values are the size of the type that will be used in a system
605 call. They are obtained from Linux Kernel source. */
606 i386_linux_record_tdep.size_pointer
607 = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
608 i386_linux_record_tdep.size__old_kernel_stat = 32;
609 i386_linux_record_tdep.size_tms = 16;
610 i386_linux_record_tdep.size_loff_t = 8;
611 i386_linux_record_tdep.size_flock = 16;
612 i386_linux_record_tdep.size_oldold_utsname = 45;
613 i386_linux_record_tdep.size_ustat = 20;
614 i386_linux_record_tdep.size_old_sigaction = 140;
615 i386_linux_record_tdep.size_old_sigset_t = 128;
616 i386_linux_record_tdep.size_rlimit = 8;
617 i386_linux_record_tdep.size_rusage = 72;
618 i386_linux_record_tdep.size_timeval = 8;
619 i386_linux_record_tdep.size_timezone = 8;
620 i386_linux_record_tdep.size_old_gid_t = 2;
621 i386_linux_record_tdep.size_old_uid_t = 2;
622 i386_linux_record_tdep.size_fd_set = 128;
623 i386_linux_record_tdep.size_dirent = 268;
624 i386_linux_record_tdep.size_dirent64 = 276;
625 i386_linux_record_tdep.size_statfs = 64;
626 i386_linux_record_tdep.size_statfs64 = 84;
627 i386_linux_record_tdep.size_sockaddr = 16;
628 i386_linux_record_tdep.size_int
629 = gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT;
630 i386_linux_record_tdep.size_long
631 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
632 i386_linux_record_tdep.size_ulong
633 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
634 i386_linux_record_tdep.size_msghdr = 28;
635 i386_linux_record_tdep.size_itimerval = 16;
636 i386_linux_record_tdep.size_stat = 88;
637 i386_linux_record_tdep.size_old_utsname = 325;
638 i386_linux_record_tdep.size_sysinfo = 64;
639 i386_linux_record_tdep.size_msqid_ds = 88;
640 i386_linux_record_tdep.size_shmid_ds = 84;
641 i386_linux_record_tdep.size_new_utsname = 390;
642 i386_linux_record_tdep.size_timex = 128;
643 i386_linux_record_tdep.size_mem_dqinfo = 24;
644 i386_linux_record_tdep.size_if_dqblk = 68;
645 i386_linux_record_tdep.size_fs_quota_stat = 68;
646 i386_linux_record_tdep.size_timespec = 8;
647 i386_linux_record_tdep.size_pollfd = 8;
648 i386_linux_record_tdep.size_NFS_FHSIZE = 32;
649 i386_linux_record_tdep.size_knfsd_fh = 132;
650 i386_linux_record_tdep.size_TASK_COMM_LEN = 16;
651 i386_linux_record_tdep.size_sigaction = 140;
652 i386_linux_record_tdep.size_sigset_t = 8;
653 i386_linux_record_tdep.size_siginfo_t = 128;
654 i386_linux_record_tdep.size_cap_user_data_t = 12;
655 i386_linux_record_tdep.size_stack_t = 12;
656 i386_linux_record_tdep.size_off_t = i386_linux_record_tdep.size_long;
657 i386_linux_record_tdep.size_stat64 = 96;
658 i386_linux_record_tdep.size_gid_t = 2;
659 i386_linux_record_tdep.size_uid_t = 2;
660 i386_linux_record_tdep.size_PAGE_SIZE = 4096;
661 i386_linux_record_tdep.size_flock64 = 24;
662 i386_linux_record_tdep.size_user_desc = 16;
663 i386_linux_record_tdep.size_io_event = 32;
664 i386_linux_record_tdep.size_iocb = 64;
665 i386_linux_record_tdep.size_epoll_event = 12;
666 i386_linux_record_tdep.size_itimerspec
667 = i386_linux_record_tdep.size_timespec * 2;
668 i386_linux_record_tdep.size_mq_attr = 32;
669 i386_linux_record_tdep.size_siginfo = 128;
670 i386_linux_record_tdep.size_termios = 36;
671 i386_linux_record_tdep.size_termios2 = 44;
672 i386_linux_record_tdep.size_pid_t = 4;
673 i386_linux_record_tdep.size_winsize = 8;
674 i386_linux_record_tdep.size_serial_struct = 60;
675 i386_linux_record_tdep.size_serial_icounter_struct = 80;
676 i386_linux_record_tdep.size_hayes_esp_config = 12;
677 i386_linux_record_tdep.size_size_t = 4;
678 i386_linux_record_tdep.size_iovec = 8;
680 /* These values are the second argument of system call "sys_ioctl".
681 They are obtained from Linux Kernel source. */
682 i386_linux_record_tdep.ioctl_TCGETS = 0x5401;
683 i386_linux_record_tdep.ioctl_TCSETS = 0x5402;
684 i386_linux_record_tdep.ioctl_TCSETSW = 0x5403;
685 i386_linux_record_tdep.ioctl_TCSETSF = 0x5404;
686 i386_linux_record_tdep.ioctl_TCGETA = 0x5405;
687 i386_linux_record_tdep.ioctl_TCSETA = 0x5406;
688 i386_linux_record_tdep.ioctl_TCSETAW = 0x5407;
689 i386_linux_record_tdep.ioctl_TCSETAF = 0x5408;
690 i386_linux_record_tdep.ioctl_TCSBRK = 0x5409;
691 i386_linux_record_tdep.ioctl_TCXONC = 0x540A;
692 i386_linux_record_tdep.ioctl_TCFLSH = 0x540B;
693 i386_linux_record_tdep.ioctl_TIOCEXCL = 0x540C;
694 i386_linux_record_tdep.ioctl_TIOCNXCL = 0x540D;
695 i386_linux_record_tdep.ioctl_TIOCSCTTY = 0x540E;
696 i386_linux_record_tdep.ioctl_TIOCGPGRP = 0x540F;
697 i386_linux_record_tdep.ioctl_TIOCSPGRP = 0x5410;
698 i386_linux_record_tdep.ioctl_TIOCOUTQ = 0x5411;
699 i386_linux_record_tdep.ioctl_TIOCSTI = 0x5412;
700 i386_linux_record_tdep.ioctl_TIOCGWINSZ = 0x5413;
701 i386_linux_record_tdep.ioctl_TIOCSWINSZ = 0x5414;
702 i386_linux_record_tdep.ioctl_TIOCMGET = 0x5415;
703 i386_linux_record_tdep.ioctl_TIOCMBIS = 0x5416;
704 i386_linux_record_tdep.ioctl_TIOCMBIC = 0x5417;
705 i386_linux_record_tdep.ioctl_TIOCMSET = 0x5418;
706 i386_linux_record_tdep.ioctl_TIOCGSOFTCAR = 0x5419;
707 i386_linux_record_tdep.ioctl_TIOCSSOFTCAR = 0x541A;
708 i386_linux_record_tdep.ioctl_FIONREAD = 0x541B;
709 i386_linux_record_tdep.ioctl_TIOCINQ = i386_linux_record_tdep.ioctl_FIONREAD;
710 i386_linux_record_tdep.ioctl_TIOCLINUX = 0x541C;
711 i386_linux_record_tdep.ioctl_TIOCCONS = 0x541D;
712 i386_linux_record_tdep.ioctl_TIOCGSERIAL = 0x541E;
713 i386_linux_record_tdep.ioctl_TIOCSSERIAL = 0x541F;
714 i386_linux_record_tdep.ioctl_TIOCPKT = 0x5420;
715 i386_linux_record_tdep.ioctl_FIONBIO = 0x5421;
716 i386_linux_record_tdep.ioctl_TIOCNOTTY = 0x5422;
717 i386_linux_record_tdep.ioctl_TIOCSETD = 0x5423;
718 i386_linux_record_tdep.ioctl_TIOCGETD = 0x5424;
719 i386_linux_record_tdep.ioctl_TCSBRKP = 0x5425;
720 i386_linux_record_tdep.ioctl_TIOCTTYGSTRUCT = 0x5426;
721 i386_linux_record_tdep.ioctl_TIOCSBRK = 0x5427;
722 i386_linux_record_tdep.ioctl_TIOCCBRK = 0x5428;
723 i386_linux_record_tdep.ioctl_TIOCGSID = 0x5429;
724 i386_linux_record_tdep.ioctl_TCGETS2 = 0x802c542a;
725 i386_linux_record_tdep.ioctl_TCSETS2 = 0x402c542b;
726 i386_linux_record_tdep.ioctl_TCSETSW2 = 0x402c542c;
727 i386_linux_record_tdep.ioctl_TCSETSF2 = 0x402c542d;
728 i386_linux_record_tdep.ioctl_TIOCGPTN = 0x80045430;
729 i386_linux_record_tdep.ioctl_TIOCSPTLCK = 0x40045431;
730 i386_linux_record_tdep.ioctl_FIONCLEX = 0x5450;
731 i386_linux_record_tdep.ioctl_FIOCLEX = 0x5451;
732 i386_linux_record_tdep.ioctl_FIOASYNC = 0x5452;
733 i386_linux_record_tdep.ioctl_TIOCSERCONFIG = 0x5453;
734 i386_linux_record_tdep.ioctl_TIOCSERGWILD = 0x5454;
735 i386_linux_record_tdep.ioctl_TIOCSERSWILD = 0x5455;
736 i386_linux_record_tdep.ioctl_TIOCGLCKTRMIOS = 0x5456;
737 i386_linux_record_tdep.ioctl_TIOCSLCKTRMIOS = 0x5457;
738 i386_linux_record_tdep.ioctl_TIOCSERGSTRUCT = 0x5458;
739 i386_linux_record_tdep.ioctl_TIOCSERGETLSR = 0x5459;
740 i386_linux_record_tdep.ioctl_TIOCSERGETMULTI = 0x545A;
741 i386_linux_record_tdep.ioctl_TIOCSERSETMULTI = 0x545B;
742 i386_linux_record_tdep.ioctl_TIOCMIWAIT = 0x545C;
743 i386_linux_record_tdep.ioctl_TIOCGICOUNT = 0x545D;
744 i386_linux_record_tdep.ioctl_TIOCGHAYESESP = 0x545E;
745 i386_linux_record_tdep.ioctl_TIOCSHAYESESP = 0x545F;
746 i386_linux_record_tdep.ioctl_FIOQSIZE = 0x5460;
748 /* These values are the second argument of system call "sys_fcntl"
749 and "sys_fcntl64". They are obtained from Linux Kernel source. */
750 i386_linux_record_tdep.fcntl_F_GETLK = 5;
751 i386_linux_record_tdep.fcntl_F_GETLK64 = 12;
752 i386_linux_record_tdep.fcntl_F_SETLK64 = 13;
753 i386_linux_record_tdep.fcntl_F_SETLKW64 = 14;
755 i386_linux_record_tdep.arg1 = I386_EBX_REGNUM;
756 i386_linux_record_tdep.arg2 = I386_ECX_REGNUM;
757 i386_linux_record_tdep.arg3 = I386_EDX_REGNUM;
758 i386_linux_record_tdep.arg4 = I386_ESI_REGNUM;
759 i386_linux_record_tdep.arg5 = I386_EDI_REGNUM;
760 i386_linux_record_tdep.arg6 = I386_EBP_REGNUM;
762 tdep->i386_intx80_record = i386_linux_intx80_sysenter_record;
763 tdep->i386_sysenter_record = i386_linux_intx80_sysenter_record;
765 /* N_FUN symbols in shared libaries have 0 for their values and need
767 set_gdbarch_sofun_address_maybe_missing (gdbarch, 1);
769 /* GNU/Linux uses SVR4-style shared libraries. */
770 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
771 set_solib_svr4_fetch_link_map_offsets
772 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
774 /* GNU/Linux uses the dynamic linker included in the GNU C Library. */
775 set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);
777 dwarf2_frame_set_signal_frame_p (gdbarch, i386_linux_dwarf_signal_frame_p);
779 /* Enable TLS support. */
780 set_gdbarch_fetch_tls_load_module_address (gdbarch,
781 svr4_fetch_objfile_link_map);
783 /* Install supported register note sections. */
784 set_gdbarch_core_regset_sections (gdbarch, i386_linux_regset_sections);
786 /* Displaced stepping. */
787 set_gdbarch_displaced_step_copy_insn (gdbarch,
788 simple_displaced_step_copy_insn);
789 set_gdbarch_displaced_step_fixup (gdbarch, i386_displaced_step_fixup);
790 set_gdbarch_displaced_step_free_closure (gdbarch,
791 simple_displaced_step_free_closure);
792 set_gdbarch_displaced_step_location (gdbarch,
793 displaced_step_at_entry_point);
795 /* Functions for 'catch syscall'. */
796 set_xml_syscall_file_name (XML_SYSCALL_FILENAME_I386);
797 set_gdbarch_get_syscall_number (gdbarch,
798 i386_linux_get_syscall_number);
800 set_gdbarch_get_siginfo_type (gdbarch, linux_get_siginfo_type);
803 /* Provide a prototype to silence -Wmissing-prototypes. */
804 extern void _initialize_i386_linux_tdep (void);
807 _initialize_i386_linux_tdep (void)
809 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_LINUX,
810 i386_linux_init_abi);