1 /* GNU/Linux/x86-64 specific low level interface, for the remote server
3 Copyright (C) 2002-2023 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/>. */
24 #include "linux-low.h"
27 #include "gdbsupport/x86-xstate.h"
28 #include "nat/gdb_ptrace.h"
31 #include "nat/amd64-linux-siginfo.h"
34 #include "gdb_proc_service.h"
35 /* Don't include elf/common.h if linux/elf.h got included by
36 gdb_proc_service.h. */
38 #include "elf/common.h"
41 #include "gdbsupport/agent.h"
43 #include "tracepoint.h"
45 #include "nat/linux-nat.h"
46 #include "nat/x86-linux.h"
47 #include "nat/x86-linux-dregs.h"
48 #include "linux-x86-tdesc.h"
51 static target_desc_up tdesc_amd64_linux_no_xml
;
53 static target_desc_up tdesc_i386_linux_no_xml
;
56 static unsigned char jump_insn
[] = { 0xe9, 0, 0, 0, 0 };
57 static unsigned char small_jump_insn
[] = { 0x66, 0xe9, 0, 0 };
59 /* Backward compatibility for gdb without XML support. */
61 static const char xmltarget_i386_linux_no_xml
[] = "@<target>\
62 <architecture>i386</architecture>\
63 <osabi>GNU/Linux</osabi>\
67 static const char xmltarget_amd64_linux_no_xml
[] = "@<target>\
68 <architecture>i386:x86-64</architecture>\
69 <osabi>GNU/Linux</osabi>\
74 #include <sys/procfs.h>
77 #ifndef PTRACE_GET_THREAD_AREA
78 #define PTRACE_GET_THREAD_AREA 25
81 /* This definition comes from prctl.h, but some kernels may not have it. */
82 #ifndef PTRACE_ARCH_PRCTL
83 #define PTRACE_ARCH_PRCTL 30
86 /* The following definitions come from prctl.h, but may be absent
87 for certain configurations. */
89 #define ARCH_SET_GS 0x1001
90 #define ARCH_SET_FS 0x1002
91 #define ARCH_GET_FS 0x1003
92 #define ARCH_GET_GS 0x1004
95 /* Linux target op definitions for the x86 architecture.
96 This is initialized assuming an amd64 target.
97 'low_arch_setup' will correct it for i386 or amd64 targets. */
99 class x86_target
: public linux_process_target
103 const regs_info
*get_regs_info () override
;
105 const gdb_byte
*sw_breakpoint_from_kind (int kind
, int *size
) override
;
107 bool supports_z_point_type (char z_type
) override
;
109 void process_qsupported (gdb::array_view
<const char * const> features
) override
;
111 bool supports_tracepoints () override
;
113 bool supports_fast_tracepoints () override
;
115 int install_fast_tracepoint_jump_pad
116 (CORE_ADDR tpoint
, CORE_ADDR tpaddr
, CORE_ADDR collector
,
117 CORE_ADDR lockaddr
, ULONGEST orig_size
, CORE_ADDR
*jump_entry
,
118 CORE_ADDR
*trampoline
, ULONGEST
*trampoline_size
,
119 unsigned char *jjump_pad_insn
, ULONGEST
*jjump_pad_insn_size
,
120 CORE_ADDR
*adjusted_insn_addr
, CORE_ADDR
*adjusted_insn_addr_end
,
123 int get_min_fast_tracepoint_insn_len () override
;
125 struct emit_ops
*emit_ops () override
;
127 int get_ipa_tdesc_idx () override
;
131 void low_arch_setup () override
;
133 bool low_cannot_fetch_register (int regno
) override
;
135 bool low_cannot_store_register (int regno
) override
;
137 bool low_supports_breakpoints () override
;
139 CORE_ADDR
low_get_pc (regcache
*regcache
) override
;
141 void low_set_pc (regcache
*regcache
, CORE_ADDR newpc
) override
;
143 int low_decr_pc_after_break () override
;
145 bool low_breakpoint_at (CORE_ADDR pc
) override
;
147 int low_insert_point (raw_bkpt_type type
, CORE_ADDR addr
,
148 int size
, raw_breakpoint
*bp
) override
;
150 int low_remove_point (raw_bkpt_type type
, CORE_ADDR addr
,
151 int size
, raw_breakpoint
*bp
) override
;
153 bool low_stopped_by_watchpoint () override
;
155 CORE_ADDR
low_stopped_data_address () override
;
157 /* collect_ptrace_register/supply_ptrace_register are not needed in the
158 native i386 case (no registers smaller than an xfer unit), and are not
159 used in the biarch case (HAVE_LINUX_USRREGS is not defined). */
161 /* Need to fix up i386 siginfo if host is amd64. */
162 bool low_siginfo_fixup (siginfo_t
*native
, gdb_byte
*inf
,
163 int direction
) override
;
165 arch_process_info
*low_new_process () override
;
167 void low_delete_process (arch_process_info
*info
) override
;
169 void low_new_thread (lwp_info
*) override
;
171 void low_delete_thread (arch_lwp_info
*) override
;
173 void low_new_fork (process_info
*parent
, process_info
*child
) override
;
175 void low_prepare_to_resume (lwp_info
*lwp
) override
;
177 int low_get_thread_area (int lwpid
, CORE_ADDR
*addrp
) override
;
179 bool low_supports_range_stepping () override
;
181 bool low_supports_catch_syscall () override
;
183 void low_get_syscall_trapinfo (regcache
*regcache
, int *sysno
) override
;
187 /* Update all the target description of all processes; a new GDB
188 connected, and it may or not support xml target descriptions. */
189 void update_xmltarget ();
192 /* The singleton target ops object. */
194 static x86_target the_x86_target
;
196 /* Per-process arch-specific data we want to keep. */
198 struct arch_process_info
200 struct x86_debug_reg_state debug_reg_state
;
205 /* Mapping between the general-purpose registers in `struct user'
206 format and GDB's register array layout.
207 Note that the transfer layout uses 64-bit regs. */
208 static /*const*/ int i386_regmap
[] =
210 RAX
* 8, RCX
* 8, RDX
* 8, RBX
* 8,
211 RSP
* 8, RBP
* 8, RSI
* 8, RDI
* 8,
212 RIP
* 8, EFLAGS
* 8, CS
* 8, SS
* 8,
213 DS
* 8, ES
* 8, FS
* 8, GS
* 8
216 #define I386_NUM_REGS (sizeof (i386_regmap) / sizeof (i386_regmap[0]))
218 /* So code below doesn't have to care, i386 or amd64. */
219 #define ORIG_EAX ORIG_RAX
222 static const int x86_64_regmap
[] =
224 RAX
* 8, RBX
* 8, RCX
* 8, RDX
* 8,
225 RSI
* 8, RDI
* 8, RBP
* 8, RSP
* 8,
226 R8
* 8, R9
* 8, R10
* 8, R11
* 8,
227 R12
* 8, R13
* 8, R14
* 8, R15
* 8,
228 RIP
* 8, EFLAGS
* 8, CS
* 8, SS
* 8,
229 DS
* 8, ES
* 8, FS
* 8, GS
* 8,
230 -1, -1, -1, -1, -1, -1, -1, -1,
231 -1, -1, -1, -1, -1, -1, -1, -1,
232 -1, -1, -1, -1, -1, -1, -1, -1,
234 -1, -1, -1, -1, -1, -1, -1, -1,
237 -1, -1, -1, -1, /* MPX registers BND0 ... BND3. */
238 -1, -1, /* MPX registers BNDCFGU, BNDSTATUS. */
239 -1, -1, -1, -1, -1, -1, -1, -1, /* xmm16 ... xmm31 (AVX512) */
240 -1, -1, -1, -1, -1, -1, -1, -1,
241 -1, -1, -1, -1, -1, -1, -1, -1, /* ymm16 ... ymm31 (AVX512) */
242 -1, -1, -1, -1, -1, -1, -1, -1,
243 -1, -1, -1, -1, -1, -1, -1, -1, /* k0 ... k7 (AVX512) */
244 -1, -1, -1, -1, -1, -1, -1, -1, /* zmm0 ... zmm31 (AVX512) */
245 -1, -1, -1, -1, -1, -1, -1, -1,
246 -1, -1, -1, -1, -1, -1, -1, -1,
247 -1, -1, -1, -1, -1, -1, -1, -1,
251 #define X86_64_NUM_REGS (sizeof (x86_64_regmap) / sizeof (x86_64_regmap[0]))
252 #define X86_64_USER_REGS (GS + 1)
254 #else /* ! __x86_64__ */
256 /* Mapping between the general-purpose registers in `struct user'
257 format and GDB's register array layout. */
258 static /*const*/ int i386_regmap
[] =
260 EAX
* 4, ECX
* 4, EDX
* 4, EBX
* 4,
261 UESP
* 4, EBP
* 4, ESI
* 4, EDI
* 4,
262 EIP
* 4, EFL
* 4, CS
* 4, SS
* 4,
263 DS
* 4, ES
* 4, FS
* 4, GS
* 4
266 #define I386_NUM_REGS (sizeof (i386_regmap) / sizeof (i386_regmap[0]))
274 /* Returns true if THREAD belongs to a x86-64 process, per the tdesc. */
277 is_64bit_tdesc (thread_info
*thread
)
279 struct regcache
*regcache
= get_thread_regcache (thread
, 0);
281 return register_size (regcache
->tdesc
, 0) == 8;
287 /* Called by libthread_db. */
290 ps_get_thread_area (struct ps_prochandle
*ph
,
291 lwpid_t lwpid
, int idx
, void **base
)
294 lwp_info
*lwp
= find_lwp_pid (ptid_t (lwpid
));
295 gdb_assert (lwp
!= nullptr);
296 int use_64bit
= is_64bit_tdesc (get_lwp_thread (lwp
));
303 if (ptrace (PTRACE_ARCH_PRCTL
, lwpid
, base
, ARCH_GET_FS
) == 0)
307 if (ptrace (PTRACE_ARCH_PRCTL
, lwpid
, base
, ARCH_GET_GS
) == 0)
318 unsigned int desc
[4];
320 if (ptrace (PTRACE_GET_THREAD_AREA
, lwpid
,
321 (void *) (intptr_t) idx
, (unsigned long) &desc
) < 0)
324 /* Ensure we properly extend the value to 64-bits for x86_64. */
325 *base
= (void *) (uintptr_t) desc
[1];
330 /* Get the thread area address. This is used to recognize which
331 thread is which when tracing with the in-process agent library. We
332 don't read anything from the address, and treat it as opaque; it's
333 the address itself that we assume is unique per-thread. */
336 x86_target::low_get_thread_area (int lwpid
, CORE_ADDR
*addr
)
338 lwp_info
*lwp
= find_lwp_pid (ptid_t (lwpid
));
339 gdb_assert (lwp
!= nullptr);
341 int use_64bit
= is_64bit_tdesc (get_lwp_thread (lwp
));
346 if (ptrace (PTRACE_ARCH_PRCTL
, lwpid
, &base
, ARCH_GET_FS
) == 0)
348 *addr
= (CORE_ADDR
) (uintptr_t) base
;
357 struct thread_info
*thr
= get_lwp_thread (lwp
);
358 struct regcache
*regcache
= get_thread_regcache (thr
, 1);
359 unsigned int desc
[4];
361 const int reg_thread_area
= 3; /* bits to scale down register value. */
364 collect_register_by_name (regcache
, "gs", &gs
);
366 idx
= gs
>> reg_thread_area
;
368 if (ptrace (PTRACE_GET_THREAD_AREA
,
370 (void *) (long) idx
, (unsigned long) &desc
) < 0)
381 x86_target::low_cannot_store_register (int regno
)
384 if (is_64bit_tdesc (current_thread
))
388 return regno
>= I386_NUM_REGS
;
392 x86_target::low_cannot_fetch_register (int regno
)
395 if (is_64bit_tdesc (current_thread
))
399 return regno
>= I386_NUM_REGS
;
403 collect_register_i386 (struct regcache
*regcache
, int regno
, void *buf
)
405 collect_register (regcache
, regno
, buf
);
408 /* In case of x86_64 -m32, collect_register only writes 4 bytes, but the
409 space reserved in buf for the register is 8 bytes. Make sure the entire
410 reserved space is initialized. */
412 gdb_assert (register_size (regcache
->tdesc
, regno
) == 4);
416 /* Sign extend EAX value to avoid potential syscall restart
419 See amd64_linux_collect_native_gregset() in
420 gdb/amd64-linux-nat.c for a detailed explanation. */
421 *(int64_t *) buf
= *(int32_t *) buf
;
426 *(uint64_t *) buf
= *(uint32_t *) buf
;
432 x86_fill_gregset (struct regcache
*regcache
, void *buf
)
437 if (register_size (regcache
->tdesc
, 0) == 8)
439 for (i
= 0; i
< X86_64_NUM_REGS
; i
++)
440 if (x86_64_regmap
[i
] != -1)
441 collect_register (regcache
, i
, ((char *) buf
) + x86_64_regmap
[i
]);
447 for (i
= 0; i
< I386_NUM_REGS
; i
++)
448 collect_register_i386 (regcache
, i
, ((char *) buf
) + i386_regmap
[i
]);
450 /* Handle ORIG_EAX, which is not in i386_regmap. */
451 collect_register_i386 (regcache
, find_regno (regcache
->tdesc
, "orig_eax"),
452 ((char *) buf
) + ORIG_EAX
* REGSIZE
);
456 x86_store_gregset (struct regcache
*regcache
, const void *buf
)
461 if (register_size (regcache
->tdesc
, 0) == 8)
463 for (i
= 0; i
< X86_64_NUM_REGS
; i
++)
464 if (x86_64_regmap
[i
] != -1)
465 supply_register (regcache
, i
, ((char *) buf
) + x86_64_regmap
[i
]);
471 for (i
= 0; i
< I386_NUM_REGS
; i
++)
472 supply_register (regcache
, i
, ((char *) buf
) + i386_regmap
[i
]);
474 supply_register_by_name (regcache
, "orig_eax",
475 ((char *) buf
) + ORIG_EAX
* REGSIZE
);
479 x86_fill_fpregset (struct regcache
*regcache
, void *buf
)
482 i387_cache_to_fxsave (regcache
, buf
);
484 i387_cache_to_fsave (regcache
, buf
);
489 x86_store_fpregset (struct regcache
*regcache
, const void *buf
)
492 i387_fxsave_to_cache (regcache
, buf
);
494 i387_fsave_to_cache (regcache
, buf
);
501 x86_fill_fpxregset (struct regcache
*regcache
, void *buf
)
503 i387_cache_to_fxsave (regcache
, buf
);
507 x86_store_fpxregset (struct regcache
*regcache
, const void *buf
)
509 i387_fxsave_to_cache (regcache
, buf
);
515 x86_fill_xstateregset (struct regcache
*regcache
, void *buf
)
517 i387_cache_to_xsave (regcache
, buf
);
521 x86_store_xstateregset (struct regcache
*regcache
, const void *buf
)
523 i387_xsave_to_cache (regcache
, buf
);
526 /* ??? The non-biarch i386 case stores all the i387 regs twice.
527 Once in i387_.*fsave.* and once in i387_.*fxsave.*.
528 This is, presumably, to handle the case where PTRACE_[GS]ETFPXREGS
529 doesn't work. IWBN to avoid the duplication in the case where it
530 does work. Maybe the arch_setup routine could check whether it works
531 and update the supported regsets accordingly. */
533 static struct regset_info x86_regsets
[] =
535 #ifdef HAVE_PTRACE_GETREGS
536 { PTRACE_GETREGS
, PTRACE_SETREGS
, 0, sizeof (elf_gregset_t
),
538 x86_fill_gregset
, x86_store_gregset
},
539 { PTRACE_GETREGSET
, PTRACE_SETREGSET
, NT_X86_XSTATE
, 0,
540 EXTENDED_REGS
, x86_fill_xstateregset
, x86_store_xstateregset
},
542 # ifdef HAVE_PTRACE_GETFPXREGS
543 { PTRACE_GETFPXREGS
, PTRACE_SETFPXREGS
, 0, sizeof (elf_fpxregset_t
),
545 x86_fill_fpxregset
, x86_store_fpxregset
},
548 { PTRACE_GETFPREGS
, PTRACE_SETFPREGS
, 0, sizeof (elf_fpregset_t
),
550 x86_fill_fpregset
, x86_store_fpregset
},
551 #endif /* HAVE_PTRACE_GETREGS */
556 x86_target::low_supports_breakpoints ()
562 x86_target::low_get_pc (regcache
*regcache
)
564 int use_64bit
= register_size (regcache
->tdesc
, 0) == 8;
570 collect_register_by_name (regcache
, "rip", &pc
);
571 return (CORE_ADDR
) pc
;
577 collect_register_by_name (regcache
, "eip", &pc
);
578 return (CORE_ADDR
) pc
;
583 x86_target::low_set_pc (regcache
*regcache
, CORE_ADDR pc
)
585 int use_64bit
= register_size (regcache
->tdesc
, 0) == 8;
591 supply_register_by_name (regcache
, "rip", &newpc
);
597 supply_register_by_name (regcache
, "eip", &newpc
);
602 x86_target::low_decr_pc_after_break ()
608 static const gdb_byte x86_breakpoint
[] = { 0xCC };
609 #define x86_breakpoint_len 1
612 x86_target::low_breakpoint_at (CORE_ADDR pc
)
616 read_memory (pc
, &c
, 1);
623 /* Low-level function vector. */
624 struct x86_dr_low_type x86_dr_low
=
626 x86_linux_dr_set_control
,
627 x86_linux_dr_set_addr
,
628 x86_linux_dr_get_addr
,
629 x86_linux_dr_get_status
,
630 x86_linux_dr_get_control
,
634 /* Breakpoint/Watchpoint support. */
637 x86_target::supports_z_point_type (char z_type
)
643 case Z_PACKET_WRITE_WP
:
644 case Z_PACKET_ACCESS_WP
:
652 x86_target::low_insert_point (raw_bkpt_type type
, CORE_ADDR addr
,
653 int size
, raw_breakpoint
*bp
)
655 struct process_info
*proc
= current_process ();
659 case raw_bkpt_type_hw
:
660 case raw_bkpt_type_write_wp
:
661 case raw_bkpt_type_access_wp
:
663 enum target_hw_bp_type hw_type
664 = raw_bkpt_type_to_target_hw_bp_type (type
);
665 struct x86_debug_reg_state
*state
666 = &proc
->priv
->arch_private
->debug_reg_state
;
668 return x86_dr_insert_watchpoint (state
, hw_type
, addr
, size
);
678 x86_target::low_remove_point (raw_bkpt_type type
, CORE_ADDR addr
,
679 int size
, raw_breakpoint
*bp
)
681 struct process_info
*proc
= current_process ();
685 case raw_bkpt_type_hw
:
686 case raw_bkpt_type_write_wp
:
687 case raw_bkpt_type_access_wp
:
689 enum target_hw_bp_type hw_type
690 = raw_bkpt_type_to_target_hw_bp_type (type
);
691 struct x86_debug_reg_state
*state
692 = &proc
->priv
->arch_private
->debug_reg_state
;
694 return x86_dr_remove_watchpoint (state
, hw_type
, addr
, size
);
703 x86_target::low_stopped_by_watchpoint ()
705 struct process_info
*proc
= current_process ();
706 return x86_dr_stopped_by_watchpoint (&proc
->priv
->arch_private
->debug_reg_state
);
710 x86_target::low_stopped_data_address ()
712 struct process_info
*proc
= current_process ();
714 if (x86_dr_stopped_data_address (&proc
->priv
->arch_private
->debug_reg_state
,
720 /* Called when a new process is created. */
723 x86_target::low_new_process ()
725 struct arch_process_info
*info
= XCNEW (struct arch_process_info
);
727 x86_low_init_dregs (&info
->debug_reg_state
);
732 /* Called when a process is being deleted. */
735 x86_target::low_delete_process (arch_process_info
*info
)
741 x86_target::low_new_thread (lwp_info
*lwp
)
743 /* This comes from nat/. */
744 x86_linux_new_thread (lwp
);
748 x86_target::low_delete_thread (arch_lwp_info
*alwp
)
750 /* This comes from nat/. */
751 x86_linux_delete_thread (alwp
);
754 /* Target routine for new_fork. */
757 x86_target::low_new_fork (process_info
*parent
, process_info
*child
)
759 /* These are allocated by linux_add_process. */
760 gdb_assert (parent
->priv
!= NULL
761 && parent
->priv
->arch_private
!= NULL
);
762 gdb_assert (child
->priv
!= NULL
763 && child
->priv
->arch_private
!= NULL
);
765 /* Linux kernel before 2.6.33 commit
766 72f674d203cd230426437cdcf7dd6f681dad8b0d
767 will inherit hardware debug registers from parent
768 on fork/vfork/clone. Newer Linux kernels create such tasks with
769 zeroed debug registers.
771 GDB core assumes the child inherits the watchpoints/hw
772 breakpoints of the parent, and will remove them all from the
773 forked off process. Copy the debug registers mirrors into the
774 new process so that all breakpoints and watchpoints can be
775 removed together. The debug registers mirror will become zeroed
776 in the end before detaching the forked off process, thus making
777 this compatible with older Linux kernels too. */
779 *child
->priv
->arch_private
= *parent
->priv
->arch_private
;
783 x86_target::low_prepare_to_resume (lwp_info
*lwp
)
785 /* This comes from nat/. */
786 x86_linux_prepare_to_resume (lwp
);
789 /* See nat/x86-dregs.h. */
791 struct x86_debug_reg_state
*
792 x86_debug_reg_state (pid_t pid
)
794 struct process_info
*proc
= find_process_pid (pid
);
796 return &proc
->priv
->arch_private
->debug_reg_state
;
799 /* When GDBSERVER is built as a 64-bit application on linux, the
800 PTRACE_GETSIGINFO data is always presented in 64-bit layout. Since
801 debugging a 32-bit inferior with a 64-bit GDBSERVER should look the same
802 as debugging it with a 32-bit GDBSERVER, we do the 32-bit <-> 64-bit
803 conversion in-place ourselves. */
805 /* Convert a ptrace/host siginfo object, into/from the siginfo in the
806 layout of the inferiors' architecture. Returns true if any
807 conversion was done; false otherwise. If DIRECTION is 1, then copy
808 from INF to PTRACE. If DIRECTION is 0, copy from PTRACE to
812 x86_target::low_siginfo_fixup (siginfo_t
*ptrace
, gdb_byte
*inf
, int direction
)
815 unsigned int machine
;
816 int tid
= lwpid_of (current_thread
);
817 int is_elf64
= linux_pid_exe_is_elf_64_file (tid
, &machine
);
819 /* Is the inferior 32-bit? If so, then fixup the siginfo object. */
820 if (!is_64bit_tdesc (current_thread
))
821 return amd64_linux_siginfo_fixup_common (ptrace
, inf
, direction
,
823 /* No fixup for native x32 GDB. */
824 else if (!is_elf64
&& sizeof (void *) == 8)
825 return amd64_linux_siginfo_fixup_common (ptrace
, inf
, direction
,
834 /* Format of XSAVE extended state is:
838 sw_usable_bytes[464..511]
839 xstate_hdr_bytes[512..575]
844 Same memory layout will be used for the coredump NT_X86_XSTATE
845 representing the XSAVE extended state registers.
847 The first 8 bytes of the sw_usable_bytes[464..467] is the OS enabled
848 extended state mask, which is the same as the extended control register
849 0 (the XFEATURE_ENABLED_MASK register), XCR0. We can use this mask
850 together with the mask saved in the xstate_hdr_bytes to determine what
851 states the processor/OS supports and what state, used or initialized,
852 the process/thread is in. */
853 #define I386_LINUX_XSAVE_XCR0_OFFSET 464
855 /* Does the current host support the GETFPXREGS request? The header
856 file may or may not define it, and even if it is defined, the
857 kernel will return EIO if it's running on a pre-SSE processor. */
858 int have_ptrace_getfpxregs
=
859 #ifdef HAVE_PTRACE_GETFPXREGS
866 /* Get Linux/x86 target description from running target. */
868 static const struct target_desc
*
869 x86_linux_read_description (void)
871 unsigned int machine
;
875 static uint64_t xcr0
;
876 struct regset_info
*regset
;
878 tid
= lwpid_of (current_thread
);
880 is_elf64
= linux_pid_exe_is_elf_64_file (tid
, &machine
);
882 if (sizeof (void *) == 4)
885 error (_("Can't debug 64-bit process with 32-bit GDBserver"));
887 else if (machine
== EM_X86_64
)
888 error (_("Can't debug x86-64 process with 32-bit GDBserver"));
892 #if !defined __x86_64__ && defined HAVE_PTRACE_GETFPXREGS
893 if (machine
== EM_386
&& have_ptrace_getfpxregs
== -1)
895 elf_fpxregset_t fpxregs
;
897 if (ptrace (PTRACE_GETFPXREGS
, tid
, 0, (long) &fpxregs
) < 0)
899 have_ptrace_getfpxregs
= 0;
900 have_ptrace_getregset
= 0;
901 return i386_linux_read_description (X86_XSTATE_X87
);
904 have_ptrace_getfpxregs
= 1;
910 x86_xcr0
= X86_XSTATE_SSE_MASK
;
914 if (machine
== EM_X86_64
)
915 return tdesc_amd64_linux_no_xml
.get ();
918 return tdesc_i386_linux_no_xml
.get ();
921 if (have_ptrace_getregset
== -1)
923 uint64_t xstateregs
[(X86_XSTATE_SSE_SIZE
/ sizeof (uint64_t))];
926 iov
.iov_base
= xstateregs
;
927 iov
.iov_len
= sizeof (xstateregs
);
929 /* Check if PTRACE_GETREGSET works. */
930 if (ptrace (PTRACE_GETREGSET
, tid
,
931 (unsigned int) NT_X86_XSTATE
, (long) &iov
) < 0)
932 have_ptrace_getregset
= 0;
935 have_ptrace_getregset
= 1;
937 /* Get XCR0 from XSAVE extended state. */
938 xcr0
= xstateregs
[(I386_LINUX_XSAVE_XCR0_OFFSET
939 / sizeof (uint64_t))];
941 /* Use PTRACE_GETREGSET if it is available. */
942 for (regset
= x86_regsets
;
943 regset
->fill_function
!= NULL
; regset
++)
944 if (regset
->get_request
== PTRACE_GETREGSET
)
945 regset
->size
= X86_XSTATE_SIZE (xcr0
);
946 else if (regset
->type
!= GENERAL_REGS
)
951 /* Check the native XCR0 only if PTRACE_GETREGSET is available. */
952 xcr0_features
= (have_ptrace_getregset
953 && (xcr0
& X86_XSTATE_ALL_MASK
));
958 if (machine
== EM_X86_64
)
961 const target_desc
*tdesc
= NULL
;
965 tdesc
= amd64_linux_read_description (xcr0
& X86_XSTATE_ALL_MASK
,
970 tdesc
= amd64_linux_read_description (X86_XSTATE_SSE_MASK
, !is_elf64
);
976 const target_desc
*tdesc
= NULL
;
979 tdesc
= i386_linux_read_description (xcr0
& X86_XSTATE_ALL_MASK
);
982 tdesc
= i386_linux_read_description (X86_XSTATE_SSE
);
987 gdb_assert_not_reached ("failed to return tdesc");
990 /* Update all the target description of all processes; a new GDB
991 connected, and it may or not support xml target descriptions. */
994 x86_target::update_xmltarget ()
996 scoped_restore_current_thread restore_thread
;
998 /* Before changing the register cache's internal layout, flush the
999 contents of the current valid caches back to the threads, and
1000 release the current regcache objects. */
1001 regcache_release ();
1003 for_each_process ([this] (process_info
*proc
) {
1004 int pid
= proc
->pid
;
1006 /* Look up any thread of this process. */
1007 switch_to_thread (find_any_thread_of_pid (pid
));
1013 /* Process qSupported query, "xmlRegisters=". Update the buffer size for
1014 PTRACE_GETREGSET. */
1017 x86_target::process_qsupported (gdb::array_view
<const char * const> features
)
1019 /* Return if gdb doesn't support XML. If gdb sends "xmlRegisters="
1020 with "i386" in qSupported query, it supports x86 XML target
1024 for (const char *feature
: features
)
1026 if (startswith (feature
, "xmlRegisters="))
1028 char *copy
= xstrdup (feature
+ 13);
1031 for (char *p
= strtok_r (copy
, ",", &saveptr
);
1033 p
= strtok_r (NULL
, ",", &saveptr
))
1035 if (strcmp (p
, "i386") == 0)
1046 update_xmltarget ();
1049 /* Common for x86/x86-64. */
1051 static struct regsets_info x86_regsets_info
=
1053 x86_regsets
, /* regsets */
1054 0, /* num_regsets */
1055 NULL
, /* disabled_regsets */
1059 static struct regs_info amd64_linux_regs_info
=
1061 NULL
, /* regset_bitmap */
1062 NULL
, /* usrregs_info */
1066 static struct usrregs_info i386_linux_usrregs_info
=
1072 static struct regs_info i386_linux_regs_info
=
1074 NULL
, /* regset_bitmap */
1075 &i386_linux_usrregs_info
,
1080 x86_target::get_regs_info ()
1083 if (is_64bit_tdesc (current_thread
))
1084 return &amd64_linux_regs_info
;
1087 return &i386_linux_regs_info
;
1090 /* Initialize the target description for the architecture of the
1094 x86_target::low_arch_setup ()
1096 current_process ()->tdesc
= x86_linux_read_description ();
1100 x86_target::low_supports_catch_syscall ()
1105 /* Fill *SYSNO and *SYSRET with the syscall nr trapped and the syscall return
1106 code. This should only be called if LWP got a SYSCALL_SIGTRAP. */
1109 x86_target::low_get_syscall_trapinfo (regcache
*regcache
, int *sysno
)
1111 int use_64bit
= register_size (regcache
->tdesc
, 0) == 8;
1117 collect_register_by_name (regcache
, "orig_rax", &l_sysno
);
1118 *sysno
= (int) l_sysno
;
1121 collect_register_by_name (regcache
, "orig_eax", sysno
);
1125 x86_target::supports_tracepoints ()
1131 append_insns (CORE_ADDR
*to
, size_t len
, const unsigned char *buf
)
1133 target_write_memory (*to
, buf
, len
);
1138 push_opcode (unsigned char *buf
, const char *op
)
1140 unsigned char *buf_org
= buf
;
1145 unsigned long ul
= strtoul (op
, &endptr
, 16);
1154 return buf
- buf_org
;
1159 /* Build a jump pad that saves registers and calls a collection
1160 function. Writes a jump instruction to the jump pad to
1161 JJUMPAD_INSN. The caller is responsible to write it in at the
1162 tracepoint address. */
1165 amd64_install_fast_tracepoint_jump_pad (CORE_ADDR tpoint
, CORE_ADDR tpaddr
,
1166 CORE_ADDR collector
,
1169 CORE_ADDR
*jump_entry
,
1170 CORE_ADDR
*trampoline
,
1171 ULONGEST
*trampoline_size
,
1172 unsigned char *jjump_pad_insn
,
1173 ULONGEST
*jjump_pad_insn_size
,
1174 CORE_ADDR
*adjusted_insn_addr
,
1175 CORE_ADDR
*adjusted_insn_addr_end
,
1178 unsigned char buf
[40];
1182 CORE_ADDR buildaddr
= *jump_entry
;
1184 /* Build the jump pad. */
1186 /* First, do tracepoint data collection. Save registers. */
1188 /* Need to ensure stack pointer saved first. */
1189 buf
[i
++] = 0x54; /* push %rsp */
1190 buf
[i
++] = 0x55; /* push %rbp */
1191 buf
[i
++] = 0x57; /* push %rdi */
1192 buf
[i
++] = 0x56; /* push %rsi */
1193 buf
[i
++] = 0x52; /* push %rdx */
1194 buf
[i
++] = 0x51; /* push %rcx */
1195 buf
[i
++] = 0x53; /* push %rbx */
1196 buf
[i
++] = 0x50; /* push %rax */
1197 buf
[i
++] = 0x41; buf
[i
++] = 0x57; /* push %r15 */
1198 buf
[i
++] = 0x41; buf
[i
++] = 0x56; /* push %r14 */
1199 buf
[i
++] = 0x41; buf
[i
++] = 0x55; /* push %r13 */
1200 buf
[i
++] = 0x41; buf
[i
++] = 0x54; /* push %r12 */
1201 buf
[i
++] = 0x41; buf
[i
++] = 0x53; /* push %r11 */
1202 buf
[i
++] = 0x41; buf
[i
++] = 0x52; /* push %r10 */
1203 buf
[i
++] = 0x41; buf
[i
++] = 0x51; /* push %r9 */
1204 buf
[i
++] = 0x41; buf
[i
++] = 0x50; /* push %r8 */
1205 buf
[i
++] = 0x9c; /* pushfq */
1206 buf
[i
++] = 0x48; /* movabs <addr>,%rdi */
1208 memcpy (buf
+ i
, &tpaddr
, 8);
1210 buf
[i
++] = 0x57; /* push %rdi */
1211 append_insns (&buildaddr
, i
, buf
);
1213 /* Stack space for the collecting_t object. */
1215 i
+= push_opcode (&buf
[i
], "48 83 ec 18"); /* sub $0x18,%rsp */
1216 i
+= push_opcode (&buf
[i
], "48 b8"); /* mov <tpoint>,%rax */
1217 memcpy (buf
+ i
, &tpoint
, 8);
1219 i
+= push_opcode (&buf
[i
], "48 89 04 24"); /* mov %rax,(%rsp) */
1220 i
+= push_opcode (&buf
[i
],
1221 "64 48 8b 04 25 00 00 00 00"); /* mov %fs:0x0,%rax */
1222 i
+= push_opcode (&buf
[i
], "48 89 44 24 08"); /* mov %rax,0x8(%rsp) */
1223 append_insns (&buildaddr
, i
, buf
);
1227 i
+= push_opcode (&buf
[i
], "48 be"); /* movl <lockaddr>,%rsi */
1228 memcpy (&buf
[i
], (void *) &lockaddr
, 8);
1230 i
+= push_opcode (&buf
[i
], "48 89 e1"); /* mov %rsp,%rcx */
1231 i
+= push_opcode (&buf
[i
], "31 c0"); /* xor %eax,%eax */
1232 i
+= push_opcode (&buf
[i
], "f0 48 0f b1 0e"); /* lock cmpxchg %rcx,(%rsi) */
1233 i
+= push_opcode (&buf
[i
], "48 85 c0"); /* test %rax,%rax */
1234 i
+= push_opcode (&buf
[i
], "75 f4"); /* jne <again> */
1235 append_insns (&buildaddr
, i
, buf
);
1237 /* Set up the gdb_collect call. */
1238 /* At this point, (stack pointer + 0x18) is the base of our saved
1242 i
+= push_opcode (&buf
[i
], "48 89 e6"); /* mov %rsp,%rsi */
1243 i
+= push_opcode (&buf
[i
], "48 83 c6 18"); /* add $0x18,%rsi */
1245 /* tpoint address may be 64-bit wide. */
1246 i
+= push_opcode (&buf
[i
], "48 bf"); /* movl <addr>,%rdi */
1247 memcpy (buf
+ i
, &tpoint
, 8);
1249 append_insns (&buildaddr
, i
, buf
);
1251 /* The collector function being in the shared library, may be
1252 >31-bits away off the jump pad. */
1254 i
+= push_opcode (&buf
[i
], "48 b8"); /* mov $collector,%rax */
1255 memcpy (buf
+ i
, &collector
, 8);
1257 i
+= push_opcode (&buf
[i
], "ff d0"); /* callq *%rax */
1258 append_insns (&buildaddr
, i
, buf
);
1260 /* Clear the spin-lock. */
1262 i
+= push_opcode (&buf
[i
], "31 c0"); /* xor %eax,%eax */
1263 i
+= push_opcode (&buf
[i
], "48 a3"); /* mov %rax, lockaddr */
1264 memcpy (buf
+ i
, &lockaddr
, 8);
1266 append_insns (&buildaddr
, i
, buf
);
1268 /* Remove stack that had been used for the collect_t object. */
1270 i
+= push_opcode (&buf
[i
], "48 83 c4 18"); /* add $0x18,%rsp */
1271 append_insns (&buildaddr
, i
, buf
);
1273 /* Restore register state. */
1275 buf
[i
++] = 0x48; /* add $0x8,%rsp */
1279 buf
[i
++] = 0x9d; /* popfq */
1280 buf
[i
++] = 0x41; buf
[i
++] = 0x58; /* pop %r8 */
1281 buf
[i
++] = 0x41; buf
[i
++] = 0x59; /* pop %r9 */
1282 buf
[i
++] = 0x41; buf
[i
++] = 0x5a; /* pop %r10 */
1283 buf
[i
++] = 0x41; buf
[i
++] = 0x5b; /* pop %r11 */
1284 buf
[i
++] = 0x41; buf
[i
++] = 0x5c; /* pop %r12 */
1285 buf
[i
++] = 0x41; buf
[i
++] = 0x5d; /* pop %r13 */
1286 buf
[i
++] = 0x41; buf
[i
++] = 0x5e; /* pop %r14 */
1287 buf
[i
++] = 0x41; buf
[i
++] = 0x5f; /* pop %r15 */
1288 buf
[i
++] = 0x58; /* pop %rax */
1289 buf
[i
++] = 0x5b; /* pop %rbx */
1290 buf
[i
++] = 0x59; /* pop %rcx */
1291 buf
[i
++] = 0x5a; /* pop %rdx */
1292 buf
[i
++] = 0x5e; /* pop %rsi */
1293 buf
[i
++] = 0x5f; /* pop %rdi */
1294 buf
[i
++] = 0x5d; /* pop %rbp */
1295 buf
[i
++] = 0x5c; /* pop %rsp */
1296 append_insns (&buildaddr
, i
, buf
);
1298 /* Now, adjust the original instruction to execute in the jump
1300 *adjusted_insn_addr
= buildaddr
;
1301 relocate_instruction (&buildaddr
, tpaddr
);
1302 *adjusted_insn_addr_end
= buildaddr
;
1304 /* Finally, write a jump back to the program. */
1306 loffset
= (tpaddr
+ orig_size
) - (buildaddr
+ sizeof (jump_insn
));
1307 if (loffset
> INT_MAX
|| loffset
< INT_MIN
)
1310 "E.Jump back from jump pad too far from tracepoint "
1311 "(offset 0x%" PRIx64
" > int32).", loffset
);
1315 offset
= (int) loffset
;
1316 memcpy (buf
, jump_insn
, sizeof (jump_insn
));
1317 memcpy (buf
+ 1, &offset
, 4);
1318 append_insns (&buildaddr
, sizeof (jump_insn
), buf
);
1320 /* The jump pad is now built. Wire in a jump to our jump pad. This
1321 is always done last (by our caller actually), so that we can
1322 install fast tracepoints with threads running. This relies on
1323 the agent's atomic write support. */
1324 loffset
= *jump_entry
- (tpaddr
+ sizeof (jump_insn
));
1325 if (loffset
> INT_MAX
|| loffset
< INT_MIN
)
1328 "E.Jump pad too far from tracepoint "
1329 "(offset 0x%" PRIx64
" > int32).", loffset
);
1333 offset
= (int) loffset
;
1335 memcpy (buf
, jump_insn
, sizeof (jump_insn
));
1336 memcpy (buf
+ 1, &offset
, 4);
1337 memcpy (jjump_pad_insn
, buf
, sizeof (jump_insn
));
1338 *jjump_pad_insn_size
= sizeof (jump_insn
);
1340 /* Return the end address of our pad. */
1341 *jump_entry
= buildaddr
;
1346 #endif /* __x86_64__ */
1348 /* Build a jump pad that saves registers and calls a collection
1349 function. Writes a jump instruction to the jump pad to
1350 JJUMPAD_INSN. The caller is responsible to write it in at the
1351 tracepoint address. */
1354 i386_install_fast_tracepoint_jump_pad (CORE_ADDR tpoint
, CORE_ADDR tpaddr
,
1355 CORE_ADDR collector
,
1358 CORE_ADDR
*jump_entry
,
1359 CORE_ADDR
*trampoline
,
1360 ULONGEST
*trampoline_size
,
1361 unsigned char *jjump_pad_insn
,
1362 ULONGEST
*jjump_pad_insn_size
,
1363 CORE_ADDR
*adjusted_insn_addr
,
1364 CORE_ADDR
*adjusted_insn_addr_end
,
1367 unsigned char buf
[0x100];
1369 CORE_ADDR buildaddr
= *jump_entry
;
1371 /* Build the jump pad. */
1373 /* First, do tracepoint data collection. Save registers. */
1375 buf
[i
++] = 0x60; /* pushad */
1376 buf
[i
++] = 0x68; /* push tpaddr aka $pc */
1377 *((int *)(buf
+ i
)) = (int) tpaddr
;
1379 buf
[i
++] = 0x9c; /* pushf */
1380 buf
[i
++] = 0x1e; /* push %ds */
1381 buf
[i
++] = 0x06; /* push %es */
1382 buf
[i
++] = 0x0f; /* push %fs */
1384 buf
[i
++] = 0x0f; /* push %gs */
1386 buf
[i
++] = 0x16; /* push %ss */
1387 buf
[i
++] = 0x0e; /* push %cs */
1388 append_insns (&buildaddr
, i
, buf
);
1390 /* Stack space for the collecting_t object. */
1392 i
+= push_opcode (&buf
[i
], "83 ec 08"); /* sub $0x8,%esp */
1394 /* Build the object. */
1395 i
+= push_opcode (&buf
[i
], "b8"); /* mov <tpoint>,%eax */
1396 memcpy (buf
+ i
, &tpoint
, 4);
1398 i
+= push_opcode (&buf
[i
], "89 04 24"); /* mov %eax,(%esp) */
1400 i
+= push_opcode (&buf
[i
], "65 a1 00 00 00 00"); /* mov %gs:0x0,%eax */
1401 i
+= push_opcode (&buf
[i
], "89 44 24 04"); /* mov %eax,0x4(%esp) */
1402 append_insns (&buildaddr
, i
, buf
);
1404 /* spin-lock. Note this is using cmpxchg, which leaves i386 behind.
1405 If we cared for it, this could be using xchg alternatively. */
1408 i
+= push_opcode (&buf
[i
], "31 c0"); /* xor %eax,%eax */
1409 i
+= push_opcode (&buf
[i
], "f0 0f b1 25"); /* lock cmpxchg
1411 memcpy (&buf
[i
], (void *) &lockaddr
, 4);
1413 i
+= push_opcode (&buf
[i
], "85 c0"); /* test %eax,%eax */
1414 i
+= push_opcode (&buf
[i
], "75 f2"); /* jne <again> */
1415 append_insns (&buildaddr
, i
, buf
);
1418 /* Set up arguments to the gdb_collect call. */
1420 i
+= push_opcode (&buf
[i
], "89 e0"); /* mov %esp,%eax */
1421 i
+= push_opcode (&buf
[i
], "83 c0 08"); /* add $0x08,%eax */
1422 i
+= push_opcode (&buf
[i
], "89 44 24 fc"); /* mov %eax,-0x4(%esp) */
1423 append_insns (&buildaddr
, i
, buf
);
1426 i
+= push_opcode (&buf
[i
], "83 ec 08"); /* sub $0x8,%esp */
1427 append_insns (&buildaddr
, i
, buf
);
1430 i
+= push_opcode (&buf
[i
], "c7 04 24"); /* movl <addr>,(%esp) */
1431 memcpy (&buf
[i
], (void *) &tpoint
, 4);
1433 append_insns (&buildaddr
, i
, buf
);
1435 buf
[0] = 0xe8; /* call <reladdr> */
1436 offset
= collector
- (buildaddr
+ sizeof (jump_insn
));
1437 memcpy (buf
+ 1, &offset
, 4);
1438 append_insns (&buildaddr
, 5, buf
);
1439 /* Clean up after the call. */
1440 buf
[0] = 0x83; /* add $0x8,%esp */
1443 append_insns (&buildaddr
, 3, buf
);
1446 /* Clear the spin-lock. This would need the LOCK prefix on older
1449 i
+= push_opcode (&buf
[i
], "31 c0"); /* xor %eax,%eax */
1450 i
+= push_opcode (&buf
[i
], "a3"); /* mov %eax, lockaddr */
1451 memcpy (buf
+ i
, &lockaddr
, 4);
1453 append_insns (&buildaddr
, i
, buf
);
1456 /* Remove stack that had been used for the collect_t object. */
1458 i
+= push_opcode (&buf
[i
], "83 c4 08"); /* add $0x08,%esp */
1459 append_insns (&buildaddr
, i
, buf
);
1462 buf
[i
++] = 0x83; /* add $0x4,%esp (no pop of %cs, assume unchanged) */
1465 buf
[i
++] = 0x17; /* pop %ss */
1466 buf
[i
++] = 0x0f; /* pop %gs */
1468 buf
[i
++] = 0x0f; /* pop %fs */
1470 buf
[i
++] = 0x07; /* pop %es */
1471 buf
[i
++] = 0x1f; /* pop %ds */
1472 buf
[i
++] = 0x9d; /* popf */
1473 buf
[i
++] = 0x83; /* add $0x4,%esp (pop of tpaddr aka $pc) */
1476 buf
[i
++] = 0x61; /* popad */
1477 append_insns (&buildaddr
, i
, buf
);
1479 /* Now, adjust the original instruction to execute in the jump
1481 *adjusted_insn_addr
= buildaddr
;
1482 relocate_instruction (&buildaddr
, tpaddr
);
1483 *adjusted_insn_addr_end
= buildaddr
;
1485 /* Write the jump back to the program. */
1486 offset
= (tpaddr
+ orig_size
) - (buildaddr
+ sizeof (jump_insn
));
1487 memcpy (buf
, jump_insn
, sizeof (jump_insn
));
1488 memcpy (buf
+ 1, &offset
, 4);
1489 append_insns (&buildaddr
, sizeof (jump_insn
), buf
);
1491 /* The jump pad is now built. Wire in a jump to our jump pad. This
1492 is always done last (by our caller actually), so that we can
1493 install fast tracepoints with threads running. This relies on
1494 the agent's atomic write support. */
1497 /* Create a trampoline. */
1498 *trampoline_size
= sizeof (jump_insn
);
1499 if (!claim_trampoline_space (*trampoline_size
, trampoline
))
1501 /* No trampoline space available. */
1503 "E.Cannot allocate trampoline space needed for fast "
1504 "tracepoints on 4-byte instructions.");
1508 offset
= *jump_entry
- (*trampoline
+ sizeof (jump_insn
));
1509 memcpy (buf
, jump_insn
, sizeof (jump_insn
));
1510 memcpy (buf
+ 1, &offset
, 4);
1511 target_write_memory (*trampoline
, buf
, sizeof (jump_insn
));
1513 /* Use a 16-bit relative jump instruction to jump to the trampoline. */
1514 offset
= (*trampoline
- (tpaddr
+ sizeof (small_jump_insn
))) & 0xffff;
1515 memcpy (buf
, small_jump_insn
, sizeof (small_jump_insn
));
1516 memcpy (buf
+ 2, &offset
, 2);
1517 memcpy (jjump_pad_insn
, buf
, sizeof (small_jump_insn
));
1518 *jjump_pad_insn_size
= sizeof (small_jump_insn
);
1522 /* Else use a 32-bit relative jump instruction. */
1523 offset
= *jump_entry
- (tpaddr
+ sizeof (jump_insn
));
1524 memcpy (buf
, jump_insn
, sizeof (jump_insn
));
1525 memcpy (buf
+ 1, &offset
, 4);
1526 memcpy (jjump_pad_insn
, buf
, sizeof (jump_insn
));
1527 *jjump_pad_insn_size
= sizeof (jump_insn
);
1530 /* Return the end address of our pad. */
1531 *jump_entry
= buildaddr
;
1537 x86_target::supports_fast_tracepoints ()
1543 x86_target::install_fast_tracepoint_jump_pad (CORE_ADDR tpoint
,
1545 CORE_ADDR collector
,
1548 CORE_ADDR
*jump_entry
,
1549 CORE_ADDR
*trampoline
,
1550 ULONGEST
*trampoline_size
,
1551 unsigned char *jjump_pad_insn
,
1552 ULONGEST
*jjump_pad_insn_size
,
1553 CORE_ADDR
*adjusted_insn_addr
,
1554 CORE_ADDR
*adjusted_insn_addr_end
,
1558 if (is_64bit_tdesc (current_thread
))
1559 return amd64_install_fast_tracepoint_jump_pad (tpoint
, tpaddr
,
1560 collector
, lockaddr
,
1561 orig_size
, jump_entry
,
1562 trampoline
, trampoline_size
,
1564 jjump_pad_insn_size
,
1566 adjusted_insn_addr_end
,
1570 return i386_install_fast_tracepoint_jump_pad (tpoint
, tpaddr
,
1571 collector
, lockaddr
,
1572 orig_size
, jump_entry
,
1573 trampoline
, trampoline_size
,
1575 jjump_pad_insn_size
,
1577 adjusted_insn_addr_end
,
1581 /* Return the minimum instruction length for fast tracepoints on x86/x86-64
1585 x86_target::get_min_fast_tracepoint_insn_len ()
1587 static int warned_about_fast_tracepoints
= 0;
1590 /* On x86-64, 5-byte jump instructions with a 4-byte offset are always
1591 used for fast tracepoints. */
1592 if (is_64bit_tdesc (current_thread
))
1596 if (agent_loaded_p ())
1598 char errbuf
[IPA_BUFSIZ
];
1602 /* On x86, if trampolines are available, then 4-byte jump instructions
1603 with a 2-byte offset may be used, otherwise 5-byte jump instructions
1604 with a 4-byte offset are used instead. */
1605 if (have_fast_tracepoint_trampoline_buffer (errbuf
))
1609 /* GDB has no channel to explain to user why a shorter fast
1610 tracepoint is not possible, but at least make GDBserver
1611 mention that something has gone awry. */
1612 if (!warned_about_fast_tracepoints
)
1614 warning ("4-byte fast tracepoints not available; %s", errbuf
);
1615 warned_about_fast_tracepoints
= 1;
1622 /* Indicate that the minimum length is currently unknown since the IPA
1623 has not loaded yet. */
1629 add_insns (unsigned char *start
, int len
)
1631 CORE_ADDR buildaddr
= current_insn_ptr
;
1633 threads_debug_printf ("Adding %d bytes of insn at %s",
1634 len
, paddress (buildaddr
));
1636 append_insns (&buildaddr
, len
, start
);
1637 current_insn_ptr
= buildaddr
;
1640 /* Our general strategy for emitting code is to avoid specifying raw
1641 bytes whenever possible, and instead copy a block of inline asm
1642 that is embedded in the function. This is a little messy, because
1643 we need to keep the compiler from discarding what looks like dead
1644 code, plus suppress various warnings. */
1646 #define EMIT_ASM(NAME, INSNS) \
1649 extern unsigned char start_ ## NAME, end_ ## NAME; \
1650 add_insns (&start_ ## NAME, &end_ ## NAME - &start_ ## NAME); \
1651 __asm__ ("jmp end_" #NAME "\n" \
1652 "\t" "start_" #NAME ":" \
1654 "\t" "end_" #NAME ":"); \
1659 #define EMIT_ASM32(NAME,INSNS) \
1662 extern unsigned char start_ ## NAME, end_ ## NAME; \
1663 add_insns (&start_ ## NAME, &end_ ## NAME - &start_ ## NAME); \
1664 __asm__ (".code32\n" \
1665 "\t" "jmp end_" #NAME "\n" \
1666 "\t" "start_" #NAME ":\n" \
1668 "\t" "end_" #NAME ":\n" \
1674 #define EMIT_ASM32(NAME,INSNS) EMIT_ASM(NAME,INSNS)
1681 amd64_emit_prologue (void)
1683 EMIT_ASM (amd64_prologue
,
1685 "movq %rsp,%rbp\n\t"
1686 "sub $0x20,%rsp\n\t"
1687 "movq %rdi,-8(%rbp)\n\t"
1688 "movq %rsi,-16(%rbp)");
1693 amd64_emit_epilogue (void)
1695 EMIT_ASM (amd64_epilogue
,
1696 "movq -16(%rbp),%rdi\n\t"
1697 "movq %rax,(%rdi)\n\t"
1704 amd64_emit_add (void)
1706 EMIT_ASM (amd64_add
,
1707 "add (%rsp),%rax\n\t"
1708 "lea 0x8(%rsp),%rsp");
1712 amd64_emit_sub (void)
1714 EMIT_ASM (amd64_sub
,
1715 "sub %rax,(%rsp)\n\t"
1720 amd64_emit_mul (void)
1726 amd64_emit_lsh (void)
1732 amd64_emit_rsh_signed (void)
1738 amd64_emit_rsh_unsigned (void)
1744 amd64_emit_ext (int arg
)
1749 EMIT_ASM (amd64_ext_8
,
1755 EMIT_ASM (amd64_ext_16
,
1760 EMIT_ASM (amd64_ext_32
,
1769 amd64_emit_log_not (void)
1771 EMIT_ASM (amd64_log_not
,
1772 "test %rax,%rax\n\t"
1778 amd64_emit_bit_and (void)
1780 EMIT_ASM (amd64_and
,
1781 "and (%rsp),%rax\n\t"
1782 "lea 0x8(%rsp),%rsp");
1786 amd64_emit_bit_or (void)
1789 "or (%rsp),%rax\n\t"
1790 "lea 0x8(%rsp),%rsp");
1794 amd64_emit_bit_xor (void)
1796 EMIT_ASM (amd64_xor
,
1797 "xor (%rsp),%rax\n\t"
1798 "lea 0x8(%rsp),%rsp");
1802 amd64_emit_bit_not (void)
1804 EMIT_ASM (amd64_bit_not
,
1805 "xorq $0xffffffffffffffff,%rax");
1809 amd64_emit_equal (void)
1811 EMIT_ASM (amd64_equal
,
1812 "cmp %rax,(%rsp)\n\t"
1813 "je .Lamd64_equal_true\n\t"
1815 "jmp .Lamd64_equal_end\n\t"
1816 ".Lamd64_equal_true:\n\t"
1818 ".Lamd64_equal_end:\n\t"
1819 "lea 0x8(%rsp),%rsp");
1823 amd64_emit_less_signed (void)
1825 EMIT_ASM (amd64_less_signed
,
1826 "cmp %rax,(%rsp)\n\t"
1827 "jl .Lamd64_less_signed_true\n\t"
1829 "jmp .Lamd64_less_signed_end\n\t"
1830 ".Lamd64_less_signed_true:\n\t"
1832 ".Lamd64_less_signed_end:\n\t"
1833 "lea 0x8(%rsp),%rsp");
1837 amd64_emit_less_unsigned (void)
1839 EMIT_ASM (amd64_less_unsigned
,
1840 "cmp %rax,(%rsp)\n\t"
1841 "jb .Lamd64_less_unsigned_true\n\t"
1843 "jmp .Lamd64_less_unsigned_end\n\t"
1844 ".Lamd64_less_unsigned_true:\n\t"
1846 ".Lamd64_less_unsigned_end:\n\t"
1847 "lea 0x8(%rsp),%rsp");
1851 amd64_emit_ref (int size
)
1856 EMIT_ASM (amd64_ref1
,
1860 EMIT_ASM (amd64_ref2
,
1864 EMIT_ASM (amd64_ref4
,
1865 "movl (%rax),%eax");
1868 EMIT_ASM (amd64_ref8
,
1869 "movq (%rax),%rax");
1875 amd64_emit_if_goto (int *offset_p
, int *size_p
)
1877 EMIT_ASM (amd64_if_goto
,
1881 ".byte 0x0f, 0x85, 0x0, 0x0, 0x0, 0x0");
1889 amd64_emit_goto (int *offset_p
, int *size_p
)
1891 EMIT_ASM (amd64_goto
,
1892 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0");
1900 amd64_write_goto_address (CORE_ADDR from
, CORE_ADDR to
, int size
)
1902 int diff
= (to
- (from
+ size
));
1903 unsigned char buf
[sizeof (int)];
1911 memcpy (buf
, &diff
, sizeof (int));
1912 target_write_memory (from
, buf
, sizeof (int));
1916 amd64_emit_const (LONGEST num
)
1918 unsigned char buf
[16];
1920 CORE_ADDR buildaddr
= current_insn_ptr
;
1923 buf
[i
++] = 0x48; buf
[i
++] = 0xb8; /* mov $<n>,%rax */
1924 memcpy (&buf
[i
], &num
, sizeof (num
));
1926 append_insns (&buildaddr
, i
, buf
);
1927 current_insn_ptr
= buildaddr
;
1931 amd64_emit_call (CORE_ADDR fn
)
1933 unsigned char buf
[16];
1935 CORE_ADDR buildaddr
;
1938 /* The destination function being in the shared library, may be
1939 >31-bits away off the compiled code pad. */
1941 buildaddr
= current_insn_ptr
;
1943 offset64
= fn
- (buildaddr
+ 1 /* call op */ + 4 /* 32-bit offset */);
1947 if (offset64
> INT_MAX
|| offset64
< INT_MIN
)
1949 /* Offset is too large for a call. Use callq, but that requires
1950 a register, so avoid it if possible. Use r10, since it is
1951 call-clobbered, we don't have to push/pop it. */
1952 buf
[i
++] = 0x48; /* mov $fn,%r10 */
1954 memcpy (buf
+ i
, &fn
, 8);
1956 buf
[i
++] = 0xff; /* callq *%r10 */
1961 int offset32
= offset64
; /* we know we can't overflow here. */
1963 buf
[i
++] = 0xe8; /* call <reladdr> */
1964 memcpy (buf
+ i
, &offset32
, 4);
1968 append_insns (&buildaddr
, i
, buf
);
1969 current_insn_ptr
= buildaddr
;
1973 amd64_emit_reg (int reg
)
1975 unsigned char buf
[16];
1977 CORE_ADDR buildaddr
;
1979 /* Assume raw_regs is still in %rdi. */
1980 buildaddr
= current_insn_ptr
;
1982 buf
[i
++] = 0xbe; /* mov $<n>,%esi */
1983 memcpy (&buf
[i
], ®
, sizeof (reg
));
1985 append_insns (&buildaddr
, i
, buf
);
1986 current_insn_ptr
= buildaddr
;
1987 amd64_emit_call (get_raw_reg_func_addr ());
1991 amd64_emit_pop (void)
1993 EMIT_ASM (amd64_pop
,
1998 amd64_emit_stack_flush (void)
2000 EMIT_ASM (amd64_stack_flush
,
2005 amd64_emit_zero_ext (int arg
)
2010 EMIT_ASM (amd64_zero_ext_8
,
2014 EMIT_ASM (amd64_zero_ext_16
,
2015 "and $0xffff,%rax");
2018 EMIT_ASM (amd64_zero_ext_32
,
2019 "mov $0xffffffff,%rcx\n\t"
2028 amd64_emit_swap (void)
2030 EMIT_ASM (amd64_swap
,
2037 amd64_emit_stack_adjust (int n
)
2039 unsigned char buf
[16];
2041 CORE_ADDR buildaddr
= current_insn_ptr
;
2044 buf
[i
++] = 0x48; /* lea $<n>(%rsp),%rsp */
2048 /* This only handles adjustments up to 16, but we don't expect any more. */
2050 append_insns (&buildaddr
, i
, buf
);
2051 current_insn_ptr
= buildaddr
;
2054 /* FN's prototype is `LONGEST(*fn)(int)'. */
2057 amd64_emit_int_call_1 (CORE_ADDR fn
, int arg1
)
2059 unsigned char buf
[16];
2061 CORE_ADDR buildaddr
;
2063 buildaddr
= current_insn_ptr
;
2065 buf
[i
++] = 0xbf; /* movl $<n>,%edi */
2066 memcpy (&buf
[i
], &arg1
, sizeof (arg1
));
2068 append_insns (&buildaddr
, i
, buf
);
2069 current_insn_ptr
= buildaddr
;
2070 amd64_emit_call (fn
);
2073 /* FN's prototype is `void(*fn)(int,LONGEST)'. */
2076 amd64_emit_void_call_2 (CORE_ADDR fn
, int arg1
)
2078 unsigned char buf
[16];
2080 CORE_ADDR buildaddr
;
2082 buildaddr
= current_insn_ptr
;
2084 buf
[i
++] = 0xbf; /* movl $<n>,%edi */
2085 memcpy (&buf
[i
], &arg1
, sizeof (arg1
));
2087 append_insns (&buildaddr
, i
, buf
);
2088 current_insn_ptr
= buildaddr
;
2089 EMIT_ASM (amd64_void_call_2_a
,
2090 /* Save away a copy of the stack top. */
2092 /* Also pass top as the second argument. */
2094 amd64_emit_call (fn
);
2095 EMIT_ASM (amd64_void_call_2_b
,
2096 /* Restore the stack top, %rax may have been trashed. */
2101 amd64_emit_eq_goto (int *offset_p
, int *size_p
)
2104 "cmp %rax,(%rsp)\n\t"
2105 "jne .Lamd64_eq_fallthru\n\t"
2106 "lea 0x8(%rsp),%rsp\n\t"
2108 /* jmp, but don't trust the assembler to choose the right jump */
2109 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2110 ".Lamd64_eq_fallthru:\n\t"
2111 "lea 0x8(%rsp),%rsp\n\t"
2121 amd64_emit_ne_goto (int *offset_p
, int *size_p
)
2124 "cmp %rax,(%rsp)\n\t"
2125 "je .Lamd64_ne_fallthru\n\t"
2126 "lea 0x8(%rsp),%rsp\n\t"
2128 /* jmp, but don't trust the assembler to choose the right jump */
2129 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2130 ".Lamd64_ne_fallthru:\n\t"
2131 "lea 0x8(%rsp),%rsp\n\t"
2141 amd64_emit_lt_goto (int *offset_p
, int *size_p
)
2144 "cmp %rax,(%rsp)\n\t"
2145 "jnl .Lamd64_lt_fallthru\n\t"
2146 "lea 0x8(%rsp),%rsp\n\t"
2148 /* jmp, but don't trust the assembler to choose the right jump */
2149 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2150 ".Lamd64_lt_fallthru:\n\t"
2151 "lea 0x8(%rsp),%rsp\n\t"
2161 amd64_emit_le_goto (int *offset_p
, int *size_p
)
2164 "cmp %rax,(%rsp)\n\t"
2165 "jnle .Lamd64_le_fallthru\n\t"
2166 "lea 0x8(%rsp),%rsp\n\t"
2168 /* jmp, but don't trust the assembler to choose the right jump */
2169 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2170 ".Lamd64_le_fallthru:\n\t"
2171 "lea 0x8(%rsp),%rsp\n\t"
2181 amd64_emit_gt_goto (int *offset_p
, int *size_p
)
2184 "cmp %rax,(%rsp)\n\t"
2185 "jng .Lamd64_gt_fallthru\n\t"
2186 "lea 0x8(%rsp),%rsp\n\t"
2188 /* jmp, but don't trust the assembler to choose the right jump */
2189 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2190 ".Lamd64_gt_fallthru:\n\t"
2191 "lea 0x8(%rsp),%rsp\n\t"
2201 amd64_emit_ge_goto (int *offset_p
, int *size_p
)
2204 "cmp %rax,(%rsp)\n\t"
2205 "jnge .Lamd64_ge_fallthru\n\t"
2206 ".Lamd64_ge_jump:\n\t"
2207 "lea 0x8(%rsp),%rsp\n\t"
2209 /* jmp, but don't trust the assembler to choose the right jump */
2210 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2211 ".Lamd64_ge_fallthru:\n\t"
2212 "lea 0x8(%rsp),%rsp\n\t"
2221 static emit_ops amd64_emit_ops
=
2223 amd64_emit_prologue
,
2224 amd64_emit_epilogue
,
2229 amd64_emit_rsh_signed
,
2230 amd64_emit_rsh_unsigned
,
2238 amd64_emit_less_signed
,
2239 amd64_emit_less_unsigned
,
2243 amd64_write_goto_address
,
2248 amd64_emit_stack_flush
,
2249 amd64_emit_zero_ext
,
2251 amd64_emit_stack_adjust
,
2252 amd64_emit_int_call_1
,
2253 amd64_emit_void_call_2
,
2262 #endif /* __x86_64__ */
2265 i386_emit_prologue (void)
2267 EMIT_ASM32 (i386_prologue
,
2271 /* At this point, the raw regs base address is at 8(%ebp), and the
2272 value pointer is at 12(%ebp). */
2276 i386_emit_epilogue (void)
2278 EMIT_ASM32 (i386_epilogue
,
2279 "mov 12(%ebp),%ecx\n\t"
2280 "mov %eax,(%ecx)\n\t"
2281 "mov %ebx,0x4(%ecx)\n\t"
2289 i386_emit_add (void)
2291 EMIT_ASM32 (i386_add
,
2292 "add (%esp),%eax\n\t"
2293 "adc 0x4(%esp),%ebx\n\t"
2294 "lea 0x8(%esp),%esp");
2298 i386_emit_sub (void)
2300 EMIT_ASM32 (i386_sub
,
2301 "subl %eax,(%esp)\n\t"
2302 "sbbl %ebx,4(%esp)\n\t"
2308 i386_emit_mul (void)
2314 i386_emit_lsh (void)
2320 i386_emit_rsh_signed (void)
2326 i386_emit_rsh_unsigned (void)
2332 i386_emit_ext (int arg
)
2337 EMIT_ASM32 (i386_ext_8
,
2340 "movl %eax,%ebx\n\t"
2344 EMIT_ASM32 (i386_ext_16
,
2346 "movl %eax,%ebx\n\t"
2350 EMIT_ASM32 (i386_ext_32
,
2351 "movl %eax,%ebx\n\t"
2360 i386_emit_log_not (void)
2362 EMIT_ASM32 (i386_log_not
,
2364 "test %eax,%eax\n\t"
2371 i386_emit_bit_and (void)
2373 EMIT_ASM32 (i386_and
,
2374 "and (%esp),%eax\n\t"
2375 "and 0x4(%esp),%ebx\n\t"
2376 "lea 0x8(%esp),%esp");
2380 i386_emit_bit_or (void)
2382 EMIT_ASM32 (i386_or
,
2383 "or (%esp),%eax\n\t"
2384 "or 0x4(%esp),%ebx\n\t"
2385 "lea 0x8(%esp),%esp");
2389 i386_emit_bit_xor (void)
2391 EMIT_ASM32 (i386_xor
,
2392 "xor (%esp),%eax\n\t"
2393 "xor 0x4(%esp),%ebx\n\t"
2394 "lea 0x8(%esp),%esp");
2398 i386_emit_bit_not (void)
2400 EMIT_ASM32 (i386_bit_not
,
2401 "xor $0xffffffff,%eax\n\t"
2402 "xor $0xffffffff,%ebx\n\t");
2406 i386_emit_equal (void)
2408 EMIT_ASM32 (i386_equal
,
2409 "cmpl %ebx,4(%esp)\n\t"
2410 "jne .Li386_equal_false\n\t"
2411 "cmpl %eax,(%esp)\n\t"
2412 "je .Li386_equal_true\n\t"
2413 ".Li386_equal_false:\n\t"
2415 "jmp .Li386_equal_end\n\t"
2416 ".Li386_equal_true:\n\t"
2418 ".Li386_equal_end:\n\t"
2420 "lea 0x8(%esp),%esp");
2424 i386_emit_less_signed (void)
2426 EMIT_ASM32 (i386_less_signed
,
2427 "cmpl %ebx,4(%esp)\n\t"
2428 "jl .Li386_less_signed_true\n\t"
2429 "jne .Li386_less_signed_false\n\t"
2430 "cmpl %eax,(%esp)\n\t"
2431 "jl .Li386_less_signed_true\n\t"
2432 ".Li386_less_signed_false:\n\t"
2434 "jmp .Li386_less_signed_end\n\t"
2435 ".Li386_less_signed_true:\n\t"
2437 ".Li386_less_signed_end:\n\t"
2439 "lea 0x8(%esp),%esp");
2443 i386_emit_less_unsigned (void)
2445 EMIT_ASM32 (i386_less_unsigned
,
2446 "cmpl %ebx,4(%esp)\n\t"
2447 "jb .Li386_less_unsigned_true\n\t"
2448 "jne .Li386_less_unsigned_false\n\t"
2449 "cmpl %eax,(%esp)\n\t"
2450 "jb .Li386_less_unsigned_true\n\t"
2451 ".Li386_less_unsigned_false:\n\t"
2453 "jmp .Li386_less_unsigned_end\n\t"
2454 ".Li386_less_unsigned_true:\n\t"
2456 ".Li386_less_unsigned_end:\n\t"
2458 "lea 0x8(%esp),%esp");
2462 i386_emit_ref (int size
)
2467 EMIT_ASM32 (i386_ref1
,
2471 EMIT_ASM32 (i386_ref2
,
2475 EMIT_ASM32 (i386_ref4
,
2476 "movl (%eax),%eax");
2479 EMIT_ASM32 (i386_ref8
,
2480 "movl 4(%eax),%ebx\n\t"
2481 "movl (%eax),%eax");
2487 i386_emit_if_goto (int *offset_p
, int *size_p
)
2489 EMIT_ASM32 (i386_if_goto
,
2495 /* Don't trust the assembler to choose the right jump */
2496 ".byte 0x0f, 0x85, 0x0, 0x0, 0x0, 0x0");
2499 *offset_p
= 11; /* be sure that this matches the sequence above */
2505 i386_emit_goto (int *offset_p
, int *size_p
)
2507 EMIT_ASM32 (i386_goto
,
2508 /* Don't trust the assembler to choose the right jump */
2509 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0");
2517 i386_write_goto_address (CORE_ADDR from
, CORE_ADDR to
, int size
)
2519 int diff
= (to
- (from
+ size
));
2520 unsigned char buf
[sizeof (int)];
2522 /* We're only doing 4-byte sizes at the moment. */
2529 memcpy (buf
, &diff
, sizeof (int));
2530 target_write_memory (from
, buf
, sizeof (int));
2534 i386_emit_const (LONGEST num
)
2536 unsigned char buf
[16];
2538 CORE_ADDR buildaddr
= current_insn_ptr
;
2541 buf
[i
++] = 0xb8; /* mov $<n>,%eax */
2542 lo
= num
& 0xffffffff;
2543 memcpy (&buf
[i
], &lo
, sizeof (lo
));
2545 hi
= ((num
>> 32) & 0xffffffff);
2548 buf
[i
++] = 0xbb; /* mov $<n>,%ebx */
2549 memcpy (&buf
[i
], &hi
, sizeof (hi
));
2554 buf
[i
++] = 0x31; buf
[i
++] = 0xdb; /* xor %ebx,%ebx */
2556 append_insns (&buildaddr
, i
, buf
);
2557 current_insn_ptr
= buildaddr
;
2561 i386_emit_call (CORE_ADDR fn
)
2563 unsigned char buf
[16];
2565 CORE_ADDR buildaddr
;
2567 buildaddr
= current_insn_ptr
;
2569 buf
[i
++] = 0xe8; /* call <reladdr> */
2570 offset
= ((int) fn
) - (buildaddr
+ 5);
2571 memcpy (buf
+ 1, &offset
, 4);
2572 append_insns (&buildaddr
, 5, buf
);
2573 current_insn_ptr
= buildaddr
;
2577 i386_emit_reg (int reg
)
2579 unsigned char buf
[16];
2581 CORE_ADDR buildaddr
;
2583 EMIT_ASM32 (i386_reg_a
,
2585 buildaddr
= current_insn_ptr
;
2587 buf
[i
++] = 0xb8; /* mov $<n>,%eax */
2588 memcpy (&buf
[i
], ®
, sizeof (reg
));
2590 append_insns (&buildaddr
, i
, buf
);
2591 current_insn_ptr
= buildaddr
;
2592 EMIT_ASM32 (i386_reg_b
,
2593 "mov %eax,4(%esp)\n\t"
2594 "mov 8(%ebp),%eax\n\t"
2596 i386_emit_call (get_raw_reg_func_addr ());
2597 EMIT_ASM32 (i386_reg_c
,
2599 "lea 0x8(%esp),%esp");
2603 i386_emit_pop (void)
2605 EMIT_ASM32 (i386_pop
,
2611 i386_emit_stack_flush (void)
2613 EMIT_ASM32 (i386_stack_flush
,
2619 i386_emit_zero_ext (int arg
)
2624 EMIT_ASM32 (i386_zero_ext_8
,
2625 "and $0xff,%eax\n\t"
2629 EMIT_ASM32 (i386_zero_ext_16
,
2630 "and $0xffff,%eax\n\t"
2634 EMIT_ASM32 (i386_zero_ext_32
,
2643 i386_emit_swap (void)
2645 EMIT_ASM32 (i386_swap
,
2655 i386_emit_stack_adjust (int n
)
2657 unsigned char buf
[16];
2659 CORE_ADDR buildaddr
= current_insn_ptr
;
2662 buf
[i
++] = 0x8d; /* lea $<n>(%esp),%esp */
2666 append_insns (&buildaddr
, i
, buf
);
2667 current_insn_ptr
= buildaddr
;
2670 /* FN's prototype is `LONGEST(*fn)(int)'. */
2673 i386_emit_int_call_1 (CORE_ADDR fn
, int arg1
)
2675 unsigned char buf
[16];
2677 CORE_ADDR buildaddr
;
2679 EMIT_ASM32 (i386_int_call_1_a
,
2680 /* Reserve a bit of stack space. */
2682 /* Put the one argument on the stack. */
2683 buildaddr
= current_insn_ptr
;
2685 buf
[i
++] = 0xc7; /* movl $<arg1>,(%esp) */
2688 memcpy (&buf
[i
], &arg1
, sizeof (arg1
));
2690 append_insns (&buildaddr
, i
, buf
);
2691 current_insn_ptr
= buildaddr
;
2692 i386_emit_call (fn
);
2693 EMIT_ASM32 (i386_int_call_1_c
,
2695 "lea 0x8(%esp),%esp");
2698 /* FN's prototype is `void(*fn)(int,LONGEST)'. */
2701 i386_emit_void_call_2 (CORE_ADDR fn
, int arg1
)
2703 unsigned char buf
[16];
2705 CORE_ADDR buildaddr
;
2707 EMIT_ASM32 (i386_void_call_2_a
,
2708 /* Preserve %eax only; we don't have to worry about %ebx. */
2710 /* Reserve a bit of stack space for arguments. */
2711 "sub $0x10,%esp\n\t"
2712 /* Copy "top" to the second argument position. (Note that
2713 we can't assume function won't scribble on its
2714 arguments, so don't try to restore from this.) */
2715 "mov %eax,4(%esp)\n\t"
2716 "mov %ebx,8(%esp)");
2717 /* Put the first argument on the stack. */
2718 buildaddr
= current_insn_ptr
;
2720 buf
[i
++] = 0xc7; /* movl $<arg1>,(%esp) */
2723 memcpy (&buf
[i
], &arg1
, sizeof (arg1
));
2725 append_insns (&buildaddr
, i
, buf
);
2726 current_insn_ptr
= buildaddr
;
2727 i386_emit_call (fn
);
2728 EMIT_ASM32 (i386_void_call_2_b
,
2729 "lea 0x10(%esp),%esp\n\t"
2730 /* Restore original stack top. */
2736 i386_emit_eq_goto (int *offset_p
, int *size_p
)
2739 /* Check low half first, more likely to be decider */
2740 "cmpl %eax,(%esp)\n\t"
2741 "jne .Leq_fallthru\n\t"
2742 "cmpl %ebx,4(%esp)\n\t"
2743 "jne .Leq_fallthru\n\t"
2744 "lea 0x8(%esp),%esp\n\t"
2747 /* jmp, but don't trust the assembler to choose the right jump */
2748 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2749 ".Leq_fallthru:\n\t"
2750 "lea 0x8(%esp),%esp\n\t"
2761 i386_emit_ne_goto (int *offset_p
, int *size_p
)
2764 /* Check low half first, more likely to be decider */
2765 "cmpl %eax,(%esp)\n\t"
2767 "cmpl %ebx,4(%esp)\n\t"
2768 "je .Lne_fallthru\n\t"
2770 "lea 0x8(%esp),%esp\n\t"
2773 /* jmp, but don't trust the assembler to choose the right jump */
2774 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2775 ".Lne_fallthru:\n\t"
2776 "lea 0x8(%esp),%esp\n\t"
2787 i386_emit_lt_goto (int *offset_p
, int *size_p
)
2790 "cmpl %ebx,4(%esp)\n\t"
2792 "jne .Llt_fallthru\n\t"
2793 "cmpl %eax,(%esp)\n\t"
2794 "jnl .Llt_fallthru\n\t"
2796 "lea 0x8(%esp),%esp\n\t"
2799 /* jmp, but don't trust the assembler to choose the right jump */
2800 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2801 ".Llt_fallthru:\n\t"
2802 "lea 0x8(%esp),%esp\n\t"
2813 i386_emit_le_goto (int *offset_p
, int *size_p
)
2816 "cmpl %ebx,4(%esp)\n\t"
2818 "jne .Lle_fallthru\n\t"
2819 "cmpl %eax,(%esp)\n\t"
2820 "jnle .Lle_fallthru\n\t"
2822 "lea 0x8(%esp),%esp\n\t"
2825 /* jmp, but don't trust the assembler to choose the right jump */
2826 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2827 ".Lle_fallthru:\n\t"
2828 "lea 0x8(%esp),%esp\n\t"
2839 i386_emit_gt_goto (int *offset_p
, int *size_p
)
2842 "cmpl %ebx,4(%esp)\n\t"
2844 "jne .Lgt_fallthru\n\t"
2845 "cmpl %eax,(%esp)\n\t"
2846 "jng .Lgt_fallthru\n\t"
2848 "lea 0x8(%esp),%esp\n\t"
2851 /* jmp, but don't trust the assembler to choose the right jump */
2852 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2853 ".Lgt_fallthru:\n\t"
2854 "lea 0x8(%esp),%esp\n\t"
2865 i386_emit_ge_goto (int *offset_p
, int *size_p
)
2868 "cmpl %ebx,4(%esp)\n\t"
2870 "jne .Lge_fallthru\n\t"
2871 "cmpl %eax,(%esp)\n\t"
2872 "jnge .Lge_fallthru\n\t"
2874 "lea 0x8(%esp),%esp\n\t"
2877 /* jmp, but don't trust the assembler to choose the right jump */
2878 ".byte 0xe9, 0x0, 0x0, 0x0, 0x0\n\t"
2879 ".Lge_fallthru:\n\t"
2880 "lea 0x8(%esp),%esp\n\t"
2890 static emit_ops i386_emit_ops
=
2898 i386_emit_rsh_signed
,
2899 i386_emit_rsh_unsigned
,
2907 i386_emit_less_signed
,
2908 i386_emit_less_unsigned
,
2912 i386_write_goto_address
,
2917 i386_emit_stack_flush
,
2920 i386_emit_stack_adjust
,
2921 i386_emit_int_call_1
,
2922 i386_emit_void_call_2
,
2933 x86_target::emit_ops ()
2936 if (is_64bit_tdesc (current_thread
))
2937 return &amd64_emit_ops
;
2940 return &i386_emit_ops
;
2943 /* Implementation of target ops method "sw_breakpoint_from_kind". */
2946 x86_target::sw_breakpoint_from_kind (int kind
, int *size
)
2948 *size
= x86_breakpoint_len
;
2949 return x86_breakpoint
;
2953 x86_target::low_supports_range_stepping ()
2959 x86_target::get_ipa_tdesc_idx ()
2961 struct regcache
*regcache
= get_thread_regcache (current_thread
, 0);
2962 const struct target_desc
*tdesc
= regcache
->tdesc
;
2965 return amd64_get_ipa_tdesc_idx (tdesc
);
2968 if (tdesc
== tdesc_i386_linux_no_xml
.get ())
2969 return X86_TDESC_SSE
;
2971 return i386_get_ipa_tdesc_idx (tdesc
);
2974 /* The linux target ops object. */
2976 linux_process_target
*the_linux_target
= &the_x86_target
;
2979 initialize_low_arch (void)
2981 /* Initialize the Linux target descriptions. */
2983 tdesc_amd64_linux_no_xml
= allocate_target_description ();
2984 copy_target_description (tdesc_amd64_linux_no_xml
.get (),
2985 amd64_linux_read_description (X86_XSTATE_SSE_MASK
,
2987 tdesc_amd64_linux_no_xml
->xmltarget
= xmltarget_amd64_linux_no_xml
;
2990 tdesc_i386_linux_no_xml
= allocate_target_description ();
2991 copy_target_description (tdesc_i386_linux_no_xml
.get (),
2992 i386_linux_read_description (X86_XSTATE_SSE_MASK
));
2993 tdesc_i386_linux_no_xml
->xmltarget
= xmltarget_i386_linux_no_xml
;
2995 initialize_regsets_info (&x86_regsets_info
);