binutils-gdb/gdb/testsuite/gdb.arch
Tom de Vries 0c4e2c6c88 [gdb/testsuite] Fix gdb.arch/i386-mpx.exp with -m32
When running test-case gdb.arch/i386-mpx.exp with target board unix/-m32, we
run into:
...
(gdb) print $bndstatus^M
$3 = {raw = 0xf7ca7ff2, status = {bde = 1039310844, error = 2}}^M
(gdb) FAIL: gdb.arch/i386-mpx.exp: bndstatus formating
print $bndstatus.raw^M
$4 = (void *) 0xf7ca7ff2^M
(gdb) FAIL: gdb.arch/i386-mpx.exp: bndstatus is zero by startup
...

The failure does not occur with -m64, there we have instead:
...
(gdb) print $bndstatus^M
$3 = {raw = 0x0, status = {bde = 0, error = 0}}^M
(gdb) PASS: gdb.arch/i386-mpx.exp: bndstatus formating
print $bndstatus.raw^M
$4 = (void *) 0x0^M
(gdb) PASS: gdb.arch/i386-mpx.exp: bndstatus is zero by startup
...

The difference is as follows.  At the point of issuing the print commands, we
have run to main, so in the case of -m64 we have executed:
...
00000000004004c7 <main>:
  4004c7:       55                      push   %rbp
  4004c8:       48 89 e5                mov    %rsp,%rbp
  4004cb:       89 7d fc                mov    %edi,-0x4(%rbp)
  4004ce:       48 89 75 f0             mov    %rsi,-0x10(%rbp)
  4004d2:       66 0f 1b 45 e0          bndmov %bnd0,-0x20(%rbp)
...
and in the case of -m32:
...
08048426 <main>:
 8048426:       55                      push   %ebp
 8048427:       89 e5                   mov    %esp,%ebp
 8048429:       83 ec 08                sub    $0x8,%esp
 804842c:       8d 45 0c                lea    0xc(%ebp),%eax
 804842f:       8b 55 0c                mov    0xc(%ebp),%edx
 8048432:       0f 1a 04 10             bndldx (%eax,%edx,1),%bnd0
 8048436:       66 0f 1b 45 f8          bndmov %bnd0,-0x8(%ebp)
...

In both cases, the bnd instructions attempt to save the bound for pointer
argument argv to stack.  However, there's no such bound set.

In the -m64 case, that means we just save some random value to stack.

In the -m32 case, that means that when executing bndldx the corresponding
entry in the Bounds Directory is invalid, and $bndstatus is updated to reflect
that.

Fix this by dropping the unnecessary argv parameter to main, similar to all
other gdb.arch/i386-mpx*.c test-cases.

Tested on x86_64-linux.

gdb/testsuite/ChangeLog:

2021-01-19  Tom de Vries  <tdevries@suse.de>

	* gdb.arch/i386-mpx.c (main): Drop argc/argv parameter.
2021-01-19 13:31:12 +01:00
..
aarch64-atomic-inst.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-atomic-inst.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-brk-patterns.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-brk-patterns.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-dbreg-contents.c
aarch64-dbreg-contents.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-fp.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-fp.exp aarch64: Add support for bfloat16 in gdb. 2021-01-12 14:03:58 +00:00
aarch64-pauth.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-pauth.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-prologue.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-prologue.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-sighandler-regs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-sighandler-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-tagged-pointer.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aarch64-tagged-pointer.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aix-sighandle.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
aix-sighandle.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
alpha-step.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
alpha-step.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
altivec-abi.c
altivec-abi.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
altivec-regs.c
altivec-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-break-on-asm-line.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-break-on-asm-line.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-byte.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-disp-step-avx.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-disp-step-avx.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-disp-step.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-disp-step.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-dword.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-inline.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-inline.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-inline.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-param-dwarf5.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-param-dwarf5.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-param-dwarf5.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-param.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-param.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-param.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-paramref.cc Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-paramref.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value-paramref.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value.cc Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-entry-value.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-eval.cc Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-eval.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-gs_base.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-gs_base.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-i386-address.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-i386-address.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-init-x87-values.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-init-x87-values.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-invalid-stack-middle.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-invalid-stack-middle.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-invalid-stack-middle.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-invalid-stack-top.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-invalid-stack-top.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-optimout-repeat.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-optimout-repeat.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-optimout-repeat.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-osabi.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-prologue-skip.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-prologue-skip.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-prologue-xmm.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-prologue-xmm.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-prologue-xmm.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-pseudo.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-optional-prefix.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-optional-prefix.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-special-operands.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-three-arg-disp.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-three-arg-disp.S [gdb/testsuite] Fix gdb.arch/amd64-stap-three-arg-disp.S 2021-01-11 18:24:55 +01:00
amd64-stap-triplet.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-triplet.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-wrong-subexp.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-stap-wrong-subexp.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-cxx1.cc Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-cxx1.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-cxx2.cc Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-cxx2.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-cxx.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-noret.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-noret.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-noret.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-ret.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-ret.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-ret.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-self.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-self.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-tailcall-self.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
amd64-word.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arc-analyze-prologue.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arc-analyze-prologue.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arc-decode-insn.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arc-decode-insn.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arc-tdesc-cpu.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arc-tdesc-cpu.xml Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-bl-branch-dest.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-bl-branch-dest.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-cmse-sgstubs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-cmse-sgstubs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-disassembler-options.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-disp-step.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-disp-step.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-neon.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-neon.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-single-step-kernel-helper.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
arm-single-step-kernel-helper.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
avr-flash-qualifier.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
avr-flash-qualifier.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
cordic.ko.bz2
cordic.ko.debug.bz2
disp-step-insn-reloc.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
e500-abi.c
e500-abi.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
e500-prologue.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
e500-prologue.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
e500-regs.c
e500-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ftrace-insn-reloc.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
gdb1291.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
gdb1291.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
gdb1431.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
gdb1431.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
gdb1558.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
gdb1558.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-avx512.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-avx512.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-avx.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-avx.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-biarch-core.core.bz2
i386-biarch-core.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-bp_permanent.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-bp_permanent.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-byte.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-cfi-notcurrent.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-cfi-notcurrent.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-disp-step.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-disp-step.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-dr3-watch.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-dr3-watch.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-float.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-float.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-gnu-cfi-asm.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-gnu-cfi.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-gnu-cfi.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-mpx-call.c [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx-call.exp [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx-map.c [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx-map.exp [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx-sigsegv.c [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx-sigsegv.exp [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx-simple_segv.c [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx-simple_segv.exp [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-mpx.c [gdb/testsuite] Fix gdb.arch/i386-mpx.exp with -m32 2021-01-19 13:31:12 +01:00
i386-mpx.exp [gdb/testsuite] Add have_mpx in lib/gdb.exp 2021-01-12 17:36:51 +01:00
i386-permbkpt.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-permbkpt.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-pkru.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-pkru.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-prologue-skip-cf-protection.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-prologue-skip-cf-protection.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-prologue.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-prologue.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-pseudo.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-signal.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-signal.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-size-overlap.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-size-overlap.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-size.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-size.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-sse-stack-align.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-sse-stack-align.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-sse-stack-align.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-sse.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-sse.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-stap-eval-lang-ada.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-stap-eval-lang-ada.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-stap-eval-lang-ada.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-unwind.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-unwind.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
i386-word.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ia64-breakpoint-shadow.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ia64-breakpoint-shadow.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
insn-reloc.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
iwmmxt-regs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
iwmmxt-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks-inmain.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks-main.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks-sin.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks-sinfrob16.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks-sinfrob.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks-sinmain.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks-sinmips16.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips16-thunks.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips-disassembler-options.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips-disassembler-options.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips-fcr.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips-fcr.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips-fpregset-core.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips-fpregset-core.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
mips-octeon-bbit.c
mips-octeon-bbit.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
pa64-nullify.s
pa-nullify.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
pa-nullify.s
powerpc-aix-prologue.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-aix-prologue.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-altivec2.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-altivec2.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-altivec3.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-altivec3.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-altivec.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-altivec.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-d128-regs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-d128-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-disassembler-options.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-fpscr-gcore.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-htm-regs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-htm-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-power7.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-power7.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-power8.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-power8.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-power9.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-power9.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-ppr-dscr.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-ppr-dscr.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-prologue-frame.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-prologue-frame.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-prologue-frame.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-prologue.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-prologue.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-stackless.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-stackless.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-tar.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-tar.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vector-regs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vector-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vsx2.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vsx2.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vsx3.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vsx3.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vsx-gcore.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vsx.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
powerpc-vsx.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc64-atomic-inst.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc64-atomic-inst.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc64-isa207-atomic-inst.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc64-isa207-atomic-inst.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc64-isa207-atomic-inst.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc64-symtab-cordic.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc-dfp.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc-dfp.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc-fp.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc-fp.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc-longdouble.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
ppc-longdouble.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
pr25124.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
pr25124.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-bp-infcall.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-bp-infcall.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-reg-aliases.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-reg-aliases.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-tdesc-loading-01.xml
riscv-tdesc-loading-02.xml
riscv-tdesc-loading-03.xml
riscv-tdesc-loading-04.xml
riscv-tdesc-loading.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-tdesc-regs-32.xml
riscv-tdesc-regs-64.xml
riscv-tdesc-regs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-tdesc-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-unwind-long-insn-6.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-unwind-long-insn-8.s Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-unwind-long-insn.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
riscv-unwind-long-insn.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-disassembler-options.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-multiarch.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-multiarch.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-stackless.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-stackless.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-tdbregs.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-tdbregs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-vregs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
s390-vregs.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
sparc64-adi.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
sparc64-adi.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
sparc64-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
sparc64-regs.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
sparc-sysstep.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
sparc-sysstep.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb2-it.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb2-it.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb-bx-pc.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb-bx-pc.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb-prologue.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb-prologue.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb-singlestep.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
thumb-singlestep.S Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
vsx-regs.c
vsx-regs.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
x86-avx512bf16.c Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00
x86-avx512bf16.exp Update copyright year range in all GDB files 2021-01-01 12:12:21 +04:00