Browse Source
I noticed that the gdb.arch/riscv-unwind-long-insn.exp test was failing when run on a 64-bit RISC-V target. The problem was that GDB was failing to stop after a finish command, and was then running to an unexpected location. The reason GDB failed to stop at the finish breakpoint was that the frame-id of the inferior, when we reached the finish breakpoint, didn't match the expected frame-id that was stored on the breakpoint. The reason for this mismatch was that the assembler code that is included in this test, was written only taking 32-bit RISC-V into account, as a result, the $fp register was being corrupted, and this was causing the frame-id mismatch. Specifically, the $fp register would end up being sign-extended from 32 to 64 bits. If the expected $fp value has some significant bits above bit 31 then the computed and expected frame-ids would not match. To fix this I propose merging the two .s files into a single .S file, and making use of preprocessor macros to specialise the file for the correct size of $fp. There are plenty of existing tests that already make use of preprocessor macros in assembler files, so I assume this approach is fine. Once I'd decided to make use of preprocessor macros to solve the 32/64 bit issue, then I figured I might as well merge the two test assembler files, they only differed by a single instruction. With this change in place I now see this test fully passing on 32 and 64 bit RISC-V targets.users/aburgess/try-mips-disasm-styling
4 changed files with 67 additions and 93 deletions
@ -1,45 +0,0 @@ |
|||
/* Copyright 2019-2022 Free Software Foundation, Inc. |
|||
|
|||
This program is free software; you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation; either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|||
|
|||
.option nopic |
|||
.text |
|||
|
|||
.align 1 |
|||
.globl bar |
|||
.type bar, @function |
|||
bar: |
|||
tail 1f |
|||
.size bar, .-func |
|||
|
|||
.align 1 |
|||
.globl func |
|||
.type func, @function |
|||
func: |
|||
/* A fake 6 byte instruction. This is never executed, but the |
|||
prologue scanner will try to decode it. These long |
|||
instructions are ISA extensions, use .byte rather than an |
|||
actual instruction mnemonic so that the test can be compiled |
|||
with a toolchain that doesn't include any long instruction |
|||
extensions. */ |
|||
.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00 |
|||
1: |
|||
addi sp,sp,-16 |
|||
sw s0,12(sp) |
|||
addi s0,sp,16 |
|||
nop |
|||
lw s0,12(sp) |
|||
addi sp,sp,16 |
|||
jr ra |
|||
.size func, .-func |
|||
@ -1,45 +0,0 @@ |
|||
/* Copyright 2019-2022 Free Software Foundation, Inc. |
|||
|
|||
This program is free software; you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation; either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|||
|
|||
.option nopic |
|||
.text |
|||
|
|||
.align 1 |
|||
.globl bar |
|||
.type bar, @function |
|||
bar: |
|||
tail 1f |
|||
.size bar, .-func |
|||
|
|||
.align 1 |
|||
.globl func |
|||
.type func, @function |
|||
func: |
|||
/* A fake 8 byte instruction. This is never executed, but the |
|||
prologue scanner will try to decode it. These long |
|||
instructions are ISA extensions, use .byte rather than an |
|||
actual instruction mnemonic so that the test can be compiled |
|||
with a toolchain that doesn't include any long instruction |
|||
extensions. */ |
|||
.byte 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
|||
1: |
|||
addi sp,sp,-16 |
|||
sw s0,12(sp) |
|||
addi s0,sp,16 |
|||
nop |
|||
lw s0,12(sp) |
|||
addi sp,sp,16 |
|||
jr ra |
|||
.size func, .-func |
|||
@ -0,0 +1,62 @@ |
|||
/* Copyright 2019-2022 Free Software Foundation, Inc. |
|||
|
|||
This program is free software; you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation; either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|||
|
|||
.option nopic |
|||
.text |
|||
|
|||
.align 1 |
|||
.globl bar |
|||
.type bar, @function |
|||
bar: |
|||
tail 1f |
|||
.size bar, .-func |
|||
|
|||
.align 1 |
|||
.globl func |
|||
.type func, @function |
|||
func: |
|||
/* A fake instruction of either 6 or 8 bytes. This is never |
|||
executed, but the prologue scanner will try to decode it. |
|||
These long instructions are ISA extensions, use .byte rather |
|||
than an actual instruction mnemonic so that the test can be |
|||
compiled with a toolchain that doesn't include any long |
|||
instruction extensions. */ |
|||
#if BAD_INSN_LEN == 6 |
|||
/* A fake 6 byte instruction. */ |
|||
.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00 |
|||
#elif BAD_INSN_LEN == 8 |
|||
/* A fake 8 byte instruction. */ |
|||
.byte 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
|||
#else |
|||
#error unexpected bad instruction length |
|||
#endif |
|||
|
|||
1: |
|||
addi sp,sp,-16 |
|||
#if __SIZEOF_POINTER__ == 8 |
|||
sd s0,8(sp) |
|||
#else |
|||
sw s0,8(sp) |
|||
#endif |
|||
addi s0,sp,16 |
|||
nop |
|||
#if __SIZEOF_POINTER__ == 8 |
|||
ld s0,8(sp) |
|||
#else |
|||
lw s0,8(sp) |
|||
#endif |
|||
addi sp,sp,16 |
|||
jr ra |
|||
.size func, .-func |
|||
Loading…
Reference in new issue