1 /* Target-dependent code for GNU/Linux i386.
3 Copyright (C) 2000-2014 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
28 #include "reggroups.h"
29 #include "dwarf2-frame.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"
39 #include "xml-syscall.h"
41 #include "i387-tdep.h"
42 #include "i386-xstate.h"
44 /* The syscall's XML filename for i386. */
45 #define XML_SYSCALL_FILENAME_I386 "syscalls/i386-linux.xml"
47 #include "record-full.h"
48 #include "linux-record.h"
51 #include "features/i386/i386-linux.c"
52 #include "features/i386/i386-mmx-linux.c"
53 #include "features/i386/i386-mpx-linux.c"
54 #include "features/i386/i386-avx-linux.c"
55 #include "features/i386/i386-avx512-linux.c"
57 /* Supported register note sections. */
58 static struct core_regset_section i386_linux_regset_sections[] =
60 { ".reg", 68, "general-purpose" },
61 { ".reg2", 108, "floating-point" },
65 static struct core_regset_section i386_linux_sse_regset_sections[] =
67 { ".reg", 68, "general-purpose" },
68 { ".reg-xfp", 512, "extended floating-point" },
72 static struct core_regset_section i386_linux_avx_regset_sections[] =
74 { ".reg", 68, "general-purpose" },
75 { ".reg-xstate", I386_XSTATE_MAX_SIZE, "XSAVE extended state" },
79 /* Return non-zero, when the register is in the corresponding register
80 group. Put the LINUX_ORIG_EAX register in the system group. */
82 i386_linux_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
83 struct reggroup *group)
85 if (regnum == I386_LINUX_ORIG_EAX_REGNUM)
86 return (group == system_reggroup
87 || group == save_reggroup
88 || group == restore_reggroup);
89 return i386_register_reggroup_p (gdbarch, regnum, group);
93 /* Recognizing signal handler frames. */
95 /* GNU/Linux has two flavors of signals. Normal signal handlers, and
96 "realtime" (RT) signals. The RT signals can provide additional
97 information to the signal handler if the SA_SIGINFO flag is set
98 when establishing a signal handler using `sigaction'. It is not
99 unlikely that future versions of GNU/Linux will support SA_SIGINFO
100 for normal signals too. */
102 /* When the i386 Linux kernel calls a signal handler and the
103 SA_RESTORER flag isn't set, the return address points to a bit of
104 code on the stack. This function returns whether the PC appears to
105 be within this bit of code.
107 The instruction sequence for normal signals is
111 or 0x58 0xb8 0x77 0x00 0x00 0x00 0xcd 0x80.
113 Checking for the code sequence should be somewhat reliable, because
114 the effect is to call the system call sigreturn. This is unlikely
115 to occur anywhere other than in a signal trampoline.
117 It kind of sucks that we have to read memory from the process in
118 order to identify a signal trampoline, but there doesn't seem to be
119 any other way. Therefore we only do the memory reads if no
120 function name could be identified, which should be the case since
121 the code is on the stack.
123 Detection of signal trampolines for handlers that set the
124 SA_RESTORER flag is in general not possible. Unfortunately this is
125 what the GNU C Library has been doing for quite some time now.
126 However, as of version 2.1.2, the GNU C Library uses signal
127 trampolines (named __restore and __restore_rt) that are identical
128 to the ones used by the kernel. Therefore, these trampolines are
131 #define LINUX_SIGTRAMP_INSN0 0x58 /* pop %eax */
132 #define LINUX_SIGTRAMP_OFFSET0 0
133 #define LINUX_SIGTRAMP_INSN1 0xb8 /* mov $NNNN, %eax */
134 #define LINUX_SIGTRAMP_OFFSET1 1
135 #define LINUX_SIGTRAMP_INSN2 0xcd /* int */
136 #define LINUX_SIGTRAMP_OFFSET2 6
138 static const gdb_byte linux_sigtramp_code[] =
140 LINUX_SIGTRAMP_INSN0, /* pop %eax */
141 LINUX_SIGTRAMP_INSN1, 0x77, 0x00, 0x00, 0x00, /* mov $0x77, %eax */
142 LINUX_SIGTRAMP_INSN2, 0x80 /* int $0x80 */
145 #define LINUX_SIGTRAMP_LEN (sizeof linux_sigtramp_code)
147 /* If THIS_FRAME is a sigtramp routine, return the address of the
148 start of the routine. Otherwise, return 0. */
151 i386_linux_sigtramp_start (struct frame_info *this_frame)
153 CORE_ADDR pc = get_frame_pc (this_frame);
154 gdb_byte buf[LINUX_SIGTRAMP_LEN];
156 /* We only recognize a signal trampoline if PC is at the start of
157 one of the three instructions. We optimize for finding the PC at
158 the start, as will be the case when the trampoline is not the
159 first frame on the stack. We assume that in the case where the
160 PC is not at the start of the instruction sequence, there will be
161 a few trailing readable bytes on the stack. */
163 if (!safe_frame_unwind_memory (this_frame, pc, buf, LINUX_SIGTRAMP_LEN))
166 if (buf[0] != LINUX_SIGTRAMP_INSN0)
172 case LINUX_SIGTRAMP_INSN1:
173 adjust = LINUX_SIGTRAMP_OFFSET1;
175 case LINUX_SIGTRAMP_INSN2:
176 adjust = LINUX_SIGTRAMP_OFFSET2;
184 if (!safe_frame_unwind_memory (this_frame, pc, buf, LINUX_SIGTRAMP_LEN))
188 if (memcmp (buf, linux_sigtramp_code, LINUX_SIGTRAMP_LEN) != 0)
194 /* This function does the same for RT signals. Here the instruction
198 or 0xb8 0xad 0x00 0x00 0x00 0xcd 0x80.
200 The effect is to call the system call rt_sigreturn. */
202 #define LINUX_RT_SIGTRAMP_INSN0 0xb8 /* mov $NNNN, %eax */
203 #define LINUX_RT_SIGTRAMP_OFFSET0 0
204 #define LINUX_RT_SIGTRAMP_INSN1 0xcd /* int */
205 #define LINUX_RT_SIGTRAMP_OFFSET1 5
207 static const gdb_byte linux_rt_sigtramp_code[] =
209 LINUX_RT_SIGTRAMP_INSN0, 0xad, 0x00, 0x00, 0x00, /* mov $0xad, %eax */
210 LINUX_RT_SIGTRAMP_INSN1, 0x80 /* int $0x80 */
213 #define LINUX_RT_SIGTRAMP_LEN (sizeof linux_rt_sigtramp_code)
215 /* If THIS_FRAME is an RT sigtramp routine, return the address of the
216 start of the routine. Otherwise, return 0. */
219 i386_linux_rt_sigtramp_start (struct frame_info *this_frame)
221 CORE_ADDR pc = get_frame_pc (this_frame);
222 gdb_byte buf[LINUX_RT_SIGTRAMP_LEN];
224 /* We only recognize a signal trampoline if PC is at the start of
225 one of the two instructions. We optimize for finding the PC at
226 the start, as will be the case when the trampoline is not the
227 first frame on the stack. We assume that in the case where the
228 PC is not at the start of the instruction sequence, there will be
229 a few trailing readable bytes on the stack. */
231 if (!safe_frame_unwind_memory (this_frame, pc, buf, LINUX_RT_SIGTRAMP_LEN))
234 if (buf[0] != LINUX_RT_SIGTRAMP_INSN0)
236 if (buf[0] != LINUX_RT_SIGTRAMP_INSN1)
239 pc -= LINUX_RT_SIGTRAMP_OFFSET1;
241 if (!safe_frame_unwind_memory (this_frame, pc, buf,
242 LINUX_RT_SIGTRAMP_LEN))
246 if (memcmp (buf, linux_rt_sigtramp_code, LINUX_RT_SIGTRAMP_LEN) != 0)
252 /* Return whether THIS_FRAME corresponds to a GNU/Linux sigtramp
256 i386_linux_sigtramp_p (struct frame_info *this_frame)
258 CORE_ADDR pc = get_frame_pc (this_frame);
261 find_pc_partial_function (pc, &name, NULL, NULL);
263 /* If we have NAME, we can optimize the search. The trampolines are
264 named __restore and __restore_rt. However, they aren't dynamically
265 exported from the shared C library, so the trampoline may appear to
266 be part of the preceding function. This should always be sigaction,
267 __sigaction, or __libc_sigaction (all aliases to the same function). */
268 if (name == NULL || strstr (name, "sigaction") != NULL)
269 return (i386_linux_sigtramp_start (this_frame) != 0
270 || i386_linux_rt_sigtramp_start (this_frame) != 0);
272 return (strcmp ("__restore", name) == 0
273 || strcmp ("__restore_rt", name) == 0);
276 /* Return one if the PC of THIS_FRAME is in a signal trampoline which
277 may have DWARF-2 CFI. */
280 i386_linux_dwarf_signal_frame_p (struct gdbarch *gdbarch,
281 struct frame_info *this_frame)
283 CORE_ADDR pc = get_frame_pc (this_frame);
286 find_pc_partial_function (pc, &name, NULL, NULL);
288 /* If a vsyscall DSO is in use, the signal trampolines may have these
290 if (name && (strcmp (name, "__kernel_sigreturn") == 0
291 || strcmp (name, "__kernel_rt_sigreturn") == 0))
297 /* Offset to struct sigcontext in ucontext, from <asm/ucontext.h>. */
298 #define I386_LINUX_UCONTEXT_SIGCONTEXT_OFFSET 20
300 /* Assuming THIS_FRAME is a GNU/Linux sigtramp routine, return the
301 address of the associated sigcontext structure. */
304 i386_linux_sigcontext_addr (struct frame_info *this_frame)
306 struct gdbarch *gdbarch = get_frame_arch (this_frame);
307 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
312 get_frame_register (this_frame, I386_ESP_REGNUM, buf);
313 sp = extract_unsigned_integer (buf, 4, byte_order);
315 pc = i386_linux_sigtramp_start (this_frame);
318 /* The sigcontext structure lives on the stack, right after
319 the signum argument. We determine the address of the
320 sigcontext structure by looking at the frame's stack
321 pointer. Keep in mind that the first instruction of the
322 sigtramp code is "pop %eax". If the PC is after this
323 instruction, adjust the returned value accordingly. */
324 if (pc == get_frame_pc (this_frame))
329 pc = i386_linux_rt_sigtramp_start (this_frame);
332 CORE_ADDR ucontext_addr;
334 /* The sigcontext structure is part of the user context. A
335 pointer to the user context is passed as the third argument
336 to the signal handler. */
337 read_memory (sp + 8, buf, 4);
338 ucontext_addr = extract_unsigned_integer (buf, 4, byte_order);
339 return ucontext_addr + I386_LINUX_UCONTEXT_SIGCONTEXT_OFFSET;
342 error (_("Couldn't recognize signal trampoline."));
346 /* Set the program counter for process PTID to PC. */
349 i386_linux_write_pc (struct regcache *regcache, CORE_ADDR pc)
351 regcache_cooked_write_unsigned (regcache, I386_EIP_REGNUM, pc);
353 /* We must be careful with modifying the program counter. If we
354 just interrupted a system call, the kernel might try to restart
355 it when we resume the inferior. On restarting the system call,
356 the kernel will try backing up the program counter even though it
357 no longer points at the system call. This typically results in a
358 SIGSEGV or SIGILL. We can prevent this by writing `-1' in the
359 "orig_eax" pseudo-register.
361 Note that "orig_eax" is saved when setting up a dummy call frame.
362 This means that it is properly restored when that frame is
363 popped, and that the interrupted system call will be restarted
364 when we resume the inferior on return from a function call from
365 within GDB. In all other cases the system call will not be
367 regcache_cooked_write_unsigned (regcache, I386_LINUX_ORIG_EAX_REGNUM, -1);
370 /* Record all registers but IP register for process-record. */
373 i386_all_but_ip_registers_record (struct regcache *regcache)
375 if (record_full_arch_list_add_reg (regcache, I386_EAX_REGNUM))
377 if (record_full_arch_list_add_reg (regcache, I386_ECX_REGNUM))
379 if (record_full_arch_list_add_reg (regcache, I386_EDX_REGNUM))
381 if (record_full_arch_list_add_reg (regcache, I386_EBX_REGNUM))
383 if (record_full_arch_list_add_reg (regcache, I386_ESP_REGNUM))
385 if (record_full_arch_list_add_reg (regcache, I386_EBP_REGNUM))
387 if (record_full_arch_list_add_reg (regcache, I386_ESI_REGNUM))
389 if (record_full_arch_list_add_reg (regcache, I386_EDI_REGNUM))
391 if (record_full_arch_list_add_reg (regcache, I386_EFLAGS_REGNUM))
397 /* i386_canonicalize_syscall maps from the native i386 Linux set
398 of syscall ids into a canonical set of syscall ids used by
399 process record (a mostly trivial mapping, since the canonical
400 set was originally taken from the i386 set). */
402 static enum gdb_syscall
403 i386_canonicalize_syscall (int syscall)
405 enum { i386_syscall_max = 499 };
407 if (syscall <= i386_syscall_max)
413 /* Parse the arguments of current system call instruction and record
414 the values of the registers and memory that will be changed into
415 "record_arch_list". This instruction is "int 0x80" (Linux
416 Kernel2.4) or "sysenter" (Linux Kernel 2.6).
418 Return -1 if something wrong. */
420 static struct linux_record_tdep i386_linux_record_tdep;
423 i386_linux_intx80_sysenter_syscall_record (struct regcache *regcache)
426 LONGEST syscall_native;
427 enum gdb_syscall syscall_gdb;
429 regcache_raw_read_signed (regcache, I386_EAX_REGNUM, &syscall_native);
431 syscall_gdb = i386_canonicalize_syscall (syscall_native);
435 printf_unfiltered (_("Process record and replay target doesn't "
436 "support syscall number %s\n"),
437 plongest (syscall_native));
441 if (syscall_gdb == gdb_sys_sigreturn
442 || syscall_gdb == gdb_sys_rt_sigreturn)
444 if (i386_all_but_ip_registers_record (regcache))
449 ret = record_linux_system_call (syscall_gdb, regcache,
450 &i386_linux_record_tdep);
454 /* Record the return value of the system call. */
455 if (record_full_arch_list_add_reg (regcache, I386_EAX_REGNUM))
461 #define I386_LINUX_xstate 270
462 #define I386_LINUX_frame_size 732
465 i386_linux_record_signal (struct gdbarch *gdbarch,
466 struct regcache *regcache,
467 enum gdb_signal signal)
471 if (i386_all_but_ip_registers_record (regcache))
474 if (record_full_arch_list_add_reg (regcache, I386_EIP_REGNUM))
477 /* Record the change in the stack. */
478 regcache_raw_read_unsigned (regcache, I386_ESP_REGNUM, &esp);
479 /* This is for xstate.
480 sp -= sizeof (struct _fpstate); */
481 esp -= I386_LINUX_xstate;
482 /* This is for frame_size.
483 sp -= sizeof (struct rt_sigframe); */
484 esp -= I386_LINUX_frame_size;
485 if (record_full_arch_list_add_mem (esp,
486 I386_LINUX_xstate + I386_LINUX_frame_size))
489 if (record_full_arch_list_add_end ())
496 /* Core of the implementation for gdbarch get_syscall_number. Get pending
497 syscall number from REGCACHE. If there is no pending syscall -1 will be
498 returned. Pending syscall means ptrace has stepped into the syscall but
499 another ptrace call will step out. PC is right after the int $0x80
500 / syscall / sysenter instruction in both cases, PC does not change during
501 the second ptrace step. */
504 i386_linux_get_syscall_number_from_regcache (struct regcache *regcache)
506 struct gdbarch *gdbarch = get_regcache_arch (regcache);
507 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
508 /* The content of a register. */
513 /* Getting the system call number from the register.
514 When dealing with x86 architecture, this information
515 is stored at %eax register. */
516 regcache_cooked_read (regcache, I386_LINUX_ORIG_EAX_REGNUM, buf);
518 ret = extract_signed_integer (buf, 4, byte_order);
523 /* Wrapper for i386_linux_get_syscall_number_from_regcache to make it
524 compatible with gdbarch get_syscall_number method prototype. */
527 i386_linux_get_syscall_number (struct gdbarch *gdbarch,
530 struct regcache *regcache = get_thread_regcache (ptid);
532 return i386_linux_get_syscall_number_from_regcache (regcache);
535 /* The register sets used in GNU/Linux ELF core-dumps are identical to
536 the register sets in `struct user' that are used for a.out
537 core-dumps. These are also used by ptrace(2). The corresponding
538 types are `elf_gregset_t' for the general-purpose registers (with
539 `elf_greg_t' the type of a single GP register) and `elf_fpregset_t'
540 for the floating-point registers.
542 Those types used to be available under the names `gregset_t' and
543 `fpregset_t' too, and GDB used those names in the past. But those
544 names are now used for the register sets used in the `mcontext_t'
545 type, which have a different size and layout. */
547 /* Mapping between the general-purpose registers in `struct user'
548 format and GDB's register cache layout. */
550 /* From <sys/reg.h>. */
551 int i386_linux_gregset_reg_offset[] =
562 14 * 4, /* %eflags */
569 -1, -1, -1, -1, -1, -1, -1, -1,
570 -1, -1, -1, -1, -1, -1, -1, -1,
571 -1, -1, -1, -1, -1, -1, -1, -1,
573 -1, -1, -1, -1, -1, -1, -1, -1,
574 -1, -1, -1, -1, /* MPX registers BND0 ... BND3. */
575 -1, -1, /* MPX registers BNDCFGU, BNDSTATUS. */
576 -1, -1, -1, -1, -1, -1, -1, -1, /* k0 ... k7 (AVX512) */
577 -1, -1, -1, -1, -1, -1, -1, -1, /* zmm0 ... zmm7 (AVX512) */
578 11 * 4, /* "orig_eax" */
581 /* Mapping between the general-purpose registers in `struct
582 sigcontext' format and GDB's register cache layout. */
584 /* From <asm/sigcontext.h>. */
585 static int i386_linux_sc_reg_offset[] =
596 16 * 4, /* %eflags */
605 /* Get XSAVE extended state xcr0 from core dump. */
608 i386_linux_core_read_xcr0 (bfd *abfd)
610 asection *xstate = bfd_get_section_by_name (abfd, ".reg-xstate");
615 size_t size = bfd_section_size (abfd, xstate);
617 /* Check extended state size. */
618 if (size < I386_XSTATE_AVX_SIZE)
619 xcr0 = I386_XSTATE_SSE_MASK;
624 if (! bfd_get_section_contents (abfd, xstate, contents,
625 I386_LINUX_XSAVE_XCR0_OFFSET,
628 warning (_("Couldn't read `xcr0' bytes from "
629 "`.reg-xstate' section in core file."));
633 xcr0 = bfd_get_64 (abfd, contents);
642 /* Get Linux/x86 target description from core dump. */
644 static const struct target_desc *
645 i386_linux_core_read_description (struct gdbarch *gdbarch,
646 struct target_ops *target,
650 uint64_t xcr0 = i386_linux_core_read_xcr0 (abfd);
652 switch ((xcr0 & I386_XSTATE_ALL_MASK))
654 case I386_XSTATE_MPX_AVX512_MASK:
655 case I386_XSTATE_AVX512_MASK:
656 return tdesc_i386_avx512_linux;
657 case I386_XSTATE_MPX_MASK:
658 return tdesc_i386_mpx_linux;
659 case I386_XSTATE_AVX_MASK:
660 return tdesc_i386_avx_linux;
661 case I386_XSTATE_SSE_MASK:
662 return tdesc_i386_linux;
663 case I386_XSTATE_X87_MASK:
664 return tdesc_i386_mmx_linux;
669 if (bfd_get_section_by_name (abfd, ".reg-xfp") != NULL)
670 return tdesc_i386_linux;
672 return tdesc_i386_mmx_linux;
675 /* Linux kernel shows PC value after the 'int $0x80' instruction even if
676 inferior is still inside the syscall. On next PTRACE_SINGLESTEP it will
677 finish the syscall but PC will not change.
679 Some vDSOs contain 'int $0x80; ret' and during stepping out of the syscall
680 i386_displaced_step_fixup would keep PC at the displaced pad location.
681 As PC is pointing to the 'ret' instruction before the step
682 i386_displaced_step_fixup would expect inferior has just executed that 'ret'
683 and PC should not be adjusted. In reality it finished syscall instead and
684 PC should get relocated back to its vDSO address. Hide the 'ret'
685 instruction by 'nop' so that i386_displaced_step_fixup is not confused.
687 It is not fully correct as the bytes in struct displaced_step_closure will
688 not match the inferior code. But we would need some new flag in
689 displaced_step_closure otherwise to keep the state that syscall is finishing
690 for the later i386_displaced_step_fixup execution as the syscall execution
691 is already no longer detectable there. The new flag field would mean
692 i386-linux-tdep.c needs to wrap all the displacement methods of i386-tdep.c
693 which does not seem worth it. The same effect is achieved by patching that
694 'nop' instruction there instead. */
696 static struct displaced_step_closure *
697 i386_linux_displaced_step_copy_insn (struct gdbarch *gdbarch,
698 CORE_ADDR from, CORE_ADDR to,
699 struct regcache *regs)
701 struct displaced_step_closure *closure;
703 closure = i386_displaced_step_copy_insn (gdbarch, from, to, regs);
705 if (i386_linux_get_syscall_number_from_regcache (regs) != -1)
707 /* Since we use simple_displaced_step_copy_insn, our closure is a
708 copy of the instruction. */
709 gdb_byte *insn = (gdb_byte *) closure;
719 i386_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
721 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
722 const struct target_desc *tdesc = info.target_desc;
723 struct tdesc_arch_data *tdesc_data = (void *) info.tdep_info;
724 const struct tdesc_feature *feature;
727 gdb_assert (tdesc_data);
729 linux_init_abi (info, gdbarch);
731 /* GNU/Linux uses ELF. */
732 i386_elf_init_abi (info, gdbarch);
734 /* Reserve a number for orig_eax. */
735 set_gdbarch_num_regs (gdbarch, I386_LINUX_NUM_REGS);
737 if (! tdesc_has_registers (tdesc))
738 tdesc = tdesc_i386_linux;
741 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.linux");
745 valid_p = tdesc_numbered_register (feature, tdesc_data,
746 I386_LINUX_ORIG_EAX_REGNUM,
751 /* Add the %orig_eax register used for syscall restarting. */
752 set_gdbarch_write_pc (gdbarch, i386_linux_write_pc);
754 tdep->register_reggroup_p = i386_linux_register_reggroup_p;
756 tdep->gregset_reg_offset = i386_linux_gregset_reg_offset;
757 tdep->gregset_num_regs = ARRAY_SIZE (i386_linux_gregset_reg_offset);
758 tdep->sizeof_gregset = 17 * 4;
760 tdep->jb_pc_offset = 20; /* From <bits/setjmp.h>. */
762 tdep->sigtramp_p = i386_linux_sigtramp_p;
763 tdep->sigcontext_addr = i386_linux_sigcontext_addr;
764 tdep->sc_reg_offset = i386_linux_sc_reg_offset;
765 tdep->sc_num_regs = ARRAY_SIZE (i386_linux_sc_reg_offset);
767 tdep->xsave_xcr0_offset = I386_LINUX_XSAVE_XCR0_OFFSET;
769 set_gdbarch_process_record (gdbarch, i386_process_record);
770 set_gdbarch_process_record_signal (gdbarch, i386_linux_record_signal);
772 /* Initialize the i386_linux_record_tdep. */
773 /* These values are the size of the type that will be used in a system
774 call. They are obtained from Linux Kernel source. */
775 i386_linux_record_tdep.size_pointer
776 = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
777 i386_linux_record_tdep.size__old_kernel_stat = 32;
778 i386_linux_record_tdep.size_tms = 16;
779 i386_linux_record_tdep.size_loff_t = 8;
780 i386_linux_record_tdep.size_flock = 16;
781 i386_linux_record_tdep.size_oldold_utsname = 45;
782 i386_linux_record_tdep.size_ustat = 20;
783 i386_linux_record_tdep.size_old_sigaction = 140;
784 i386_linux_record_tdep.size_old_sigset_t = 128;
785 i386_linux_record_tdep.size_rlimit = 8;
786 i386_linux_record_tdep.size_rusage = 72;
787 i386_linux_record_tdep.size_timeval = 8;
788 i386_linux_record_tdep.size_timezone = 8;
789 i386_linux_record_tdep.size_old_gid_t = 2;
790 i386_linux_record_tdep.size_old_uid_t = 2;
791 i386_linux_record_tdep.size_fd_set = 128;
792 i386_linux_record_tdep.size_dirent = 268;
793 i386_linux_record_tdep.size_dirent64 = 276;
794 i386_linux_record_tdep.size_statfs = 64;
795 i386_linux_record_tdep.size_statfs64 = 84;
796 i386_linux_record_tdep.size_sockaddr = 16;
797 i386_linux_record_tdep.size_int
798 = gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT;
799 i386_linux_record_tdep.size_long
800 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
801 i386_linux_record_tdep.size_ulong
802 = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
803 i386_linux_record_tdep.size_msghdr = 28;
804 i386_linux_record_tdep.size_itimerval = 16;
805 i386_linux_record_tdep.size_stat = 88;
806 i386_linux_record_tdep.size_old_utsname = 325;
807 i386_linux_record_tdep.size_sysinfo = 64;
808 i386_linux_record_tdep.size_msqid_ds = 88;
809 i386_linux_record_tdep.size_shmid_ds = 84;
810 i386_linux_record_tdep.size_new_utsname = 390;
811 i386_linux_record_tdep.size_timex = 128;
812 i386_linux_record_tdep.size_mem_dqinfo = 24;
813 i386_linux_record_tdep.size_if_dqblk = 68;
814 i386_linux_record_tdep.size_fs_quota_stat = 68;
815 i386_linux_record_tdep.size_timespec = 8;
816 i386_linux_record_tdep.size_pollfd = 8;
817 i386_linux_record_tdep.size_NFS_FHSIZE = 32;
818 i386_linux_record_tdep.size_knfsd_fh = 132;
819 i386_linux_record_tdep.size_TASK_COMM_LEN = 16;
820 i386_linux_record_tdep.size_sigaction = 140;
821 i386_linux_record_tdep.size_sigset_t = 8;
822 i386_linux_record_tdep.size_siginfo_t = 128;
823 i386_linux_record_tdep.size_cap_user_data_t = 12;
824 i386_linux_record_tdep.size_stack_t = 12;
825 i386_linux_record_tdep.size_off_t = i386_linux_record_tdep.size_long;
826 i386_linux_record_tdep.size_stat64 = 96;
827 i386_linux_record_tdep.size_gid_t = 2;
828 i386_linux_record_tdep.size_uid_t = 2;
829 i386_linux_record_tdep.size_PAGE_SIZE = 4096;
830 i386_linux_record_tdep.size_flock64 = 24;
831 i386_linux_record_tdep.size_user_desc = 16;
832 i386_linux_record_tdep.size_io_event = 32;
833 i386_linux_record_tdep.size_iocb = 64;
834 i386_linux_record_tdep.size_epoll_event = 12;
835 i386_linux_record_tdep.size_itimerspec
836 = i386_linux_record_tdep.size_timespec * 2;
837 i386_linux_record_tdep.size_mq_attr = 32;
838 i386_linux_record_tdep.size_siginfo = 128;
839 i386_linux_record_tdep.size_termios = 36;
840 i386_linux_record_tdep.size_termios2 = 44;
841 i386_linux_record_tdep.size_pid_t = 4;
842 i386_linux_record_tdep.size_winsize = 8;
843 i386_linux_record_tdep.size_serial_struct = 60;
844 i386_linux_record_tdep.size_serial_icounter_struct = 80;
845 i386_linux_record_tdep.size_hayes_esp_config = 12;
846 i386_linux_record_tdep.size_size_t = 4;
847 i386_linux_record_tdep.size_iovec = 8;
849 /* These values are the second argument of system call "sys_ioctl".
850 They are obtained from Linux Kernel source. */
851 i386_linux_record_tdep.ioctl_TCGETS = 0x5401;
852 i386_linux_record_tdep.ioctl_TCSETS = 0x5402;
853 i386_linux_record_tdep.ioctl_TCSETSW = 0x5403;
854 i386_linux_record_tdep.ioctl_TCSETSF = 0x5404;
855 i386_linux_record_tdep.ioctl_TCGETA = 0x5405;
856 i386_linux_record_tdep.ioctl_TCSETA = 0x5406;
857 i386_linux_record_tdep.ioctl_TCSETAW = 0x5407;
858 i386_linux_record_tdep.ioctl_TCSETAF = 0x5408;
859 i386_linux_record_tdep.ioctl_TCSBRK = 0x5409;
860 i386_linux_record_tdep.ioctl_TCXONC = 0x540A;
861 i386_linux_record_tdep.ioctl_TCFLSH = 0x540B;
862 i386_linux_record_tdep.ioctl_TIOCEXCL = 0x540C;
863 i386_linux_record_tdep.ioctl_TIOCNXCL = 0x540D;
864 i386_linux_record_tdep.ioctl_TIOCSCTTY = 0x540E;
865 i386_linux_record_tdep.ioctl_TIOCGPGRP = 0x540F;
866 i386_linux_record_tdep.ioctl_TIOCSPGRP = 0x5410;
867 i386_linux_record_tdep.ioctl_TIOCOUTQ = 0x5411;
868 i386_linux_record_tdep.ioctl_TIOCSTI = 0x5412;
869 i386_linux_record_tdep.ioctl_TIOCGWINSZ = 0x5413;
870 i386_linux_record_tdep.ioctl_TIOCSWINSZ = 0x5414;
871 i386_linux_record_tdep.ioctl_TIOCMGET = 0x5415;
872 i386_linux_record_tdep.ioctl_TIOCMBIS = 0x5416;
873 i386_linux_record_tdep.ioctl_TIOCMBIC = 0x5417;
874 i386_linux_record_tdep.ioctl_TIOCMSET = 0x5418;
875 i386_linux_record_tdep.ioctl_TIOCGSOFTCAR = 0x5419;
876 i386_linux_record_tdep.ioctl_TIOCSSOFTCAR = 0x541A;
877 i386_linux_record_tdep.ioctl_FIONREAD = 0x541B;
878 i386_linux_record_tdep.ioctl_TIOCINQ = i386_linux_record_tdep.ioctl_FIONREAD;
879 i386_linux_record_tdep.ioctl_TIOCLINUX = 0x541C;
880 i386_linux_record_tdep.ioctl_TIOCCONS = 0x541D;
881 i386_linux_record_tdep.ioctl_TIOCGSERIAL = 0x541E;
882 i386_linux_record_tdep.ioctl_TIOCSSERIAL = 0x541F;
883 i386_linux_record_tdep.ioctl_TIOCPKT = 0x5420;
884 i386_linux_record_tdep.ioctl_FIONBIO = 0x5421;
885 i386_linux_record_tdep.ioctl_TIOCNOTTY = 0x5422;
886 i386_linux_record_tdep.ioctl_TIOCSETD = 0x5423;
887 i386_linux_record_tdep.ioctl_TIOCGETD = 0x5424;
888 i386_linux_record_tdep.ioctl_TCSBRKP = 0x5425;
889 i386_linux_record_tdep.ioctl_TIOCTTYGSTRUCT = 0x5426;
890 i386_linux_record_tdep.ioctl_TIOCSBRK = 0x5427;
891 i386_linux_record_tdep.ioctl_TIOCCBRK = 0x5428;
892 i386_linux_record_tdep.ioctl_TIOCGSID = 0x5429;
893 i386_linux_record_tdep.ioctl_TCGETS2 = 0x802c542a;
894 i386_linux_record_tdep.ioctl_TCSETS2 = 0x402c542b;
895 i386_linux_record_tdep.ioctl_TCSETSW2 = 0x402c542c;
896 i386_linux_record_tdep.ioctl_TCSETSF2 = 0x402c542d;
897 i386_linux_record_tdep.ioctl_TIOCGPTN = 0x80045430;
898 i386_linux_record_tdep.ioctl_TIOCSPTLCK = 0x40045431;
899 i386_linux_record_tdep.ioctl_FIONCLEX = 0x5450;
900 i386_linux_record_tdep.ioctl_FIOCLEX = 0x5451;
901 i386_linux_record_tdep.ioctl_FIOASYNC = 0x5452;
902 i386_linux_record_tdep.ioctl_TIOCSERCONFIG = 0x5453;
903 i386_linux_record_tdep.ioctl_TIOCSERGWILD = 0x5454;
904 i386_linux_record_tdep.ioctl_TIOCSERSWILD = 0x5455;
905 i386_linux_record_tdep.ioctl_TIOCGLCKTRMIOS = 0x5456;
906 i386_linux_record_tdep.ioctl_TIOCSLCKTRMIOS = 0x5457;
907 i386_linux_record_tdep.ioctl_TIOCSERGSTRUCT = 0x5458;
908 i386_linux_record_tdep.ioctl_TIOCSERGETLSR = 0x5459;
909 i386_linux_record_tdep.ioctl_TIOCSERGETMULTI = 0x545A;
910 i386_linux_record_tdep.ioctl_TIOCSERSETMULTI = 0x545B;
911 i386_linux_record_tdep.ioctl_TIOCMIWAIT = 0x545C;
912 i386_linux_record_tdep.ioctl_TIOCGICOUNT = 0x545D;
913 i386_linux_record_tdep.ioctl_TIOCGHAYESESP = 0x545E;
914 i386_linux_record_tdep.ioctl_TIOCSHAYESESP = 0x545F;
915 i386_linux_record_tdep.ioctl_FIOQSIZE = 0x5460;
917 /* These values are the second argument of system call "sys_fcntl"
918 and "sys_fcntl64". They are obtained from Linux Kernel source. */
919 i386_linux_record_tdep.fcntl_F_GETLK = 5;
920 i386_linux_record_tdep.fcntl_F_GETLK64 = 12;
921 i386_linux_record_tdep.fcntl_F_SETLK64 = 13;
922 i386_linux_record_tdep.fcntl_F_SETLKW64 = 14;
924 i386_linux_record_tdep.arg1 = I386_EBX_REGNUM;
925 i386_linux_record_tdep.arg2 = I386_ECX_REGNUM;
926 i386_linux_record_tdep.arg3 = I386_EDX_REGNUM;
927 i386_linux_record_tdep.arg4 = I386_ESI_REGNUM;
928 i386_linux_record_tdep.arg5 = I386_EDI_REGNUM;
929 i386_linux_record_tdep.arg6 = I386_EBP_REGNUM;
931 tdep->i386_intx80_record = i386_linux_intx80_sysenter_syscall_record;
932 tdep->i386_sysenter_record = i386_linux_intx80_sysenter_syscall_record;
933 tdep->i386_syscall_record = i386_linux_intx80_sysenter_syscall_record;
935 /* N_FUN symbols in shared libaries have 0 for their values and need
937 set_gdbarch_sofun_address_maybe_missing (gdbarch, 1);
939 /* GNU/Linux uses SVR4-style shared libraries. */
940 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
941 set_solib_svr4_fetch_link_map_offsets
942 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
944 /* GNU/Linux uses the dynamic linker included in the GNU C Library. */
945 set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);
947 dwarf2_frame_set_signal_frame_p (gdbarch, i386_linux_dwarf_signal_frame_p);
949 /* Enable TLS support. */
950 set_gdbarch_fetch_tls_load_module_address (gdbarch,
951 svr4_fetch_objfile_link_map);
953 /* Install supported register note sections. */
954 if (tdesc_find_feature (tdesc, "org.gnu.gdb.i386.avx512")
955 || tdesc_find_feature (tdesc, "org.gnu.gdb.i386.avx"))
956 set_gdbarch_core_regset_sections (gdbarch, i386_linux_avx_regset_sections);
957 else if (tdesc_find_feature (tdesc, "org.gnu.gdb.i386.sse"))
958 set_gdbarch_core_regset_sections (gdbarch, i386_linux_sse_regset_sections);
960 set_gdbarch_core_regset_sections (gdbarch, i386_linux_regset_sections);
962 set_gdbarch_core_read_description (gdbarch,
963 i386_linux_core_read_description);
965 /* Displaced stepping. */
966 set_gdbarch_displaced_step_copy_insn (gdbarch,
967 i386_linux_displaced_step_copy_insn);
968 set_gdbarch_displaced_step_fixup (gdbarch, i386_displaced_step_fixup);
969 set_gdbarch_displaced_step_free_closure (gdbarch,
970 simple_displaced_step_free_closure);
971 set_gdbarch_displaced_step_location (gdbarch,
972 displaced_step_at_entry_point);
974 /* Functions for 'catch syscall'. */
975 set_xml_syscall_file_name (XML_SYSCALL_FILENAME_I386);
976 set_gdbarch_get_syscall_number (gdbarch,
977 i386_linux_get_syscall_number);
979 set_gdbarch_get_siginfo_type (gdbarch, linux_get_siginfo_type);
982 /* Provide a prototype to silence -Wmissing-prototypes. */
983 extern void _initialize_i386_linux_tdep (void);
986 _initialize_i386_linux_tdep (void)
988 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_LINUX,
989 i386_linux_init_abi);
991 /* Initialize the Linux target description. */
992 initialize_tdesc_i386_linux ();
993 initialize_tdesc_i386_mmx_linux ();
994 initialize_tdesc_i386_avx_linux ();
995 initialize_tdesc_i386_mpx_linux ();
996 initialize_tdesc_i386_avx512_linux ();