binutils-gdb/gdb/testsuite/gdb.arch
Simon Marchi c912f608be Fix generation of x86-64 gdbarch with osabi none (PR 22979)
When a 64-bits (x86-64) gdbarch is created, it is first born as a
32-bits gdbarch in i386_gdbarch_init.  The call gdbarch_init_osabi will
call the handler register for the selected (arch, osabi) pair, such as
amd64_linux_init_abi.  The various amd64 handlers call amd64_init_abi,
which turns the gdbarch into a 64-bits one.

When selecting the i386:x86-64 architecture with no osabi, no such
handler is ever called, so the gdbarch stays (wrongfully) a 32-bits one.

My first idea was to manually call amd64_init_abi & al in
i386_gdbarch_init when the osabi is GDB_OSABI_NONE.  However, this
doesn't work in a build of GDB where i386 is included as a target but
not amd64.  My next option (implemented in this patch), is to allow
registering handlers for GDB_OSABI_NONE.  I added two such handlers in
amd64-tdep.c, so now it works the same as for the "normal" osabis.  It
required re-ordering things in gdbarch_init_osabi to allow running
handlers for GDB_OSABI_NONE.

Without this patch applied (but with the previous one*) :

  (gdb) set osabi none
  (gdb) set architecture i386:x86-64
  The target architecture is assumed to be i386:x86-64
  (gdb) p sizeof(void*)
  $1 = 4

and now:

  (gdb) set osabi none
  (gdb) set architecture i386:x86-64
  The target architecture is assumed to be i386:x86-64
  (gdb) p sizeof(void*)
  $1 = 8

* Before the previous patch, which fixed "set osabi none", this bug was
  hidden because we didn't actually try to generate a gdbarch for no
  osabi, it would always fall back on Linux.  Generating the gdbarch for
  amd64/linux did work.

gdb/ChangeLog:

	PR gdb/22979
	* amd64-tdep.c (amd64_none_init_abi): New function.
	(amd64_x32_none_init_abi): New function.
	(_initialize_amd64_tdep): Register handlers for x86-64 and
	x64_32 with GDB_OSABI_NONE.
	* osabi.c (gdbarch_init_osabi): Allow running handlers for the
	GDB_OSABI_NONE osabi.

gdb/testsuite/ChangeLog:

	PR gdb/22979
	* gdb.arch/amd64-osabi.exp: New file.
2018-04-07 13:34:59 -04:00
..
aarch64-atomic-inst.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-atomic-inst.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-fp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-fp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-tagged-pointer.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-tagged-pointer.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-step.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-step.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
altivec-abi.c
altivec-abi.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
altivec-regs.c
altivec-regs.exp Make tests expect [ \t]+ pattern instead of \t for "info reg" command 2018-01-19 09:05:51 +03:00
amd64-byte.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-disp-step-avx.S gdb: Fix testsuite issue in gdb.arch/amd64-disp-step-avx.exp 2018-03-23 11:55:02 +00:00
amd64-disp-step-avx.exp gdb: Fix testsuite issue in gdb.arch/amd64-disp-step-avx.exp 2018-03-23 11:55:02 +00:00
amd64-disp-step.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-disp-step.exp gdb: Minor cleanup in some gdb.arch/* tests 2018-03-23 11:55:01 +00:00
amd64-dword.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-inline.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-inline.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-inline.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-param-dwarf5.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-param-dwarf5.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-param-dwarf5.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-param.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-param.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-param.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-paramref.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-paramref.cc Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value-paramref.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value.cc Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-entry-value.exp gdb: Add test for some error cases of @entry usage 2018-01-21 15:06:05 +00:00
amd64-entry-value.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-gs_base.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-gs_base.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-i386-address.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-i386-address.exp Fix a typo. 2018-02-21 11:13:51 -08:00
amd64-invalid-stack-middle.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-invalid-stack-middle.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-invalid-stack-middle.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-invalid-stack-top.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-invalid-stack-top.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-optimout-repeat.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-optimout-repeat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-optimout-repeat.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-osabi.exp Fix generation of x86-64 gdbarch with osabi none (PR 22979) 2018-04-07 13:34:59 -04:00
amd64-prologue-skip.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-prologue-skip.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-prologue-xmm.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-prologue-xmm.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-prologue-xmm.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-pseudo.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-optional-prefix.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-optional-prefix.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-special-operands.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-three-arg-disp.S
amd64-stap-three-arg-disp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-triplet.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-triplet.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-wrong-subexp.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-stap-wrong-subexp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-cxx.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-cxx1.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-cxx1.cc Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-cxx2.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-cxx2.cc Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-noret.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-noret.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-noret.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-ret.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-ret.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-ret.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-self.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-self.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tailcall-self.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-word.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-analyze-prologue.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-analyze-prologue.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-decode-insn.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-decode-insn.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-tdesc-cpu.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-tdesc-cpu.xml Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-bl-branch-dest.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-bl-branch-dest.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-disassembler-options.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-disp-step.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-disp-step.exp gdb: Minor cleanup in some gdb.arch/* tests 2018-03-23 11:55:01 +00:00
arm-neon.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-neon.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-single-step-kernel-helper.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-single-step-kernel-helper.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
avr-flash-qualifier.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
avr-flash-qualifier.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cordic.ko.bz2
cordic.ko.debug.bz2
disp-step-insn-reloc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
e500-abi.c
e500-abi.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
e500-prologue.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
e500-prologue.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
e500-regs.c
e500-regs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ftrace-insn-reloc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1291.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1291.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1431.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1431.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1558.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1558.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-avx.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-avx.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-avx512.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-avx512.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-biarch-core.core.bz2
i386-biarch-core.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-bp_permanent.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-bp_permanent.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-byte.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-cfi-notcurrent.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-cfi-notcurrent.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-disp-step.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-disp-step.exp gdb: Minor cleanup in some gdb.arch/* tests 2018-03-23 11:55:01 +00:00
i386-dr3-watch.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-dr3-watch.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-float.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-float.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-gnu-cfi-asm.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-gnu-cfi.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-gnu-cfi.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-call.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-call.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-map.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-map.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-sigsegv.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-sigsegv.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-simple_segv.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx-simple_segv.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-mpx.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-permbkpt.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-permbkpt.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-pkru.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-pkru.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-prologue.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-prologue.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-pseudo.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-signal.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-signal.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-size-overlap.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-size-overlap.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-size.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-size.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-sse-stack-align.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-sse-stack-align.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-sse-stack-align.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-sse.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-sse.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-stap-eval-lang-ada.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-stap-eval-lang-ada.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-stap-eval-lang-ada.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-unwind.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-unwind.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-word.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ia64-breakpoint-shadow.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ia64-breakpoint-shadow.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
insn-reloc.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
iwmmxt-regs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
iwmmxt-regs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-fcr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-fcr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-octeon-bbit.c
mips-octeon-bbit.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks-inmain.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks-sin.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks-sinfrob.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks-sinfrob16.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks-sinmain.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks-sinmips16.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips16-thunks.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pa-nullify.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pa-nullify.s
pa64-nullify.s
powerpc-aix-prologue.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-aix-prologue.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-altivec.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-altivec.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-altivec2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-altivec2.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-altivec3.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-altivec3.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-d128-regs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-d128-regs.exp Make tests expect [ \t]+ pattern instead of \t for "info reg" command 2018-01-19 09:05:51 +03:00
powerpc-disassembler-options.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-power7.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-power7.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-power8.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-power8.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-power9.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-power9.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-prologue-frame.S Fix for prologue processing on PowerPC 2018-01-31 19:24:05 +01:00
powerpc-prologue-frame.c Fix for prologue processing on PowerPC 2018-01-31 19:24:05 +01:00
powerpc-prologue-frame.exp Fix for prologue processing on PowerPC 2018-01-31 19:24:05 +01:00
powerpc-prologue.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-prologue.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-stackless.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-stackless.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-vsx.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-vsx.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-vsx2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-vsx2.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-vsx3.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
powerpc-vsx3.s Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-dfp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-dfp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-fp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-fp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-longdouble.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-longdouble.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc64-atomic-inst.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc64-atomic-inst.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc64-isa207-atomic-inst.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc64-isa207-atomic-inst.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc64-isa207-atomic-inst.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc64-symtab-cordic.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
s390-disassembler-options.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
s390-multiarch.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
s390-multiarch.exp Make tests expect [ \t]+ pattern instead of \t for "info reg" command 2018-01-19 09:05:51 +03:00
s390-stackless.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
s390-stackless.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
s390-tdbregs.c S390: Improve comments for s390-tdbregs test case 2018-01-19 14:14:07 +01:00
s390-tdbregs.exp S390: Improve comments for s390-tdbregs test case 2018-01-19 14:14:07 +01:00
s390-vregs.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
s390-vregs.exp S390: Fix infcalls in s390-vregs test case 2018-01-19 19:59:53 +01:00
sparc-sysstep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc-sysstep.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-adi.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-adi.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-regs.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-regs.exp gdb: Minor cleanup in some gdb.arch/* tests 2018-03-23 11:55:01 +00:00
spu-info.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
spu-info.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
spu-ls.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
spu-ls.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb-bx-pc.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb-bx-pc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb-prologue.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb-prologue.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb-singlestep.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb-singlestep.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb2-it.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thumb2-it.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vsx-regs.c
vsx-regs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00