diff options
author | Dimitar Dimitrov <dimitar@dinux.eu> | 2020-11-12 22:23:26 +0200 |
---|---|---|
committer | Dimitar Dimitrov <dimitar@dinux.eu> | 2020-11-12 22:41:10 +0200 |
commit | e57cf1f2cdf819946494becf282e47194aa6216d (patch) | |
tree | b30063156b4d1d911a625aaf4b53c8155ab25dbf /sim/testsuite | |
parent | 1350c3b47a6fed106d1f6814376dd12dea8a14d0 (diff) | |
download | gdb-e57cf1f2cdf819946494becf282e47194aa6216d.zip gdb-e57cf1f2cdf819946494becf282e47194aa6216d.tar.gz gdb-e57cf1f2cdf819946494becf282e47194aa6216d.tar.bz2 |
sim: pru: Add support for LMBD instruction
Binutils support for LMBD instruction was merged [1]. So add it also
to simulator.
LMBD instruction does left-most-bit-detection. It returns 32 if
the given bit value is not found in the provided word value.
[1] https://sourceware.org/pipermail/binutils/2020-October/113901.html
sim/pru/ChangeLog:
* pru.h (RS1SEL): New macro.
(RS1_WIDTH): New macro.
* pru.isa: Describe the LMBD instruction.
sim/testsuite/sim/pru/ChangeLog:
* lmbd.s: New test.
Diffstat (limited to 'sim/testsuite')
-rw-r--r-- | sim/testsuite/sim/pru/ChangeLog | 4 | ||||
-rw-r--r-- | sim/testsuite/sim/pru/lmbd.s | 61 |
2 files changed, 65 insertions, 0 deletions
diff --git a/sim/testsuite/sim/pru/ChangeLog b/sim/testsuite/sim/pru/ChangeLog index d8b438b..3d862d1 100644 --- a/sim/testsuite/sim/pru/ChangeLog +++ b/sim/testsuite/sim/pru/ChangeLog @@ -1,3 +1,7 @@ +2020-11-12 Dimitar Dimitrov <dimitar@dinux.eu> + + * lmbd.s: New test. + 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu> * add.s: New test. diff --git a/sim/testsuite/sim/pru/lmbd.s b/sim/testsuite/sim/pru/lmbd.s new file mode 100644 index 0000000..9a9e782 --- /dev/null +++ b/sim/testsuite/sim/pru/lmbd.s @@ -0,0 +1,61 @@ +# Check that lmbd insn works. +# mach: pru + +# Copyright (C) 2020 Free Software Foundation, Inc. +# Contributed by Dimitar Dimitrov <dimitar@dinux.eu> +# +# This file is part of the GNU simulators. +# +# 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/>. + +.include "testutils.inc" + + start + + ldi32 r14, 0xffffffff + ldi32 r15, 0x0 + ldi32 r16, 0x40000000 + ldi32 r17, 8 + + lmbd r0, r14, 0 + qbne 2f, r0, 32 + + lmbd r0, r14, 1 + qbne 2f, r0, 31 + + lmbd r0, r15, 1 + qbne 2f, r0, 32 + + lmbd r0, r15, 0 + qbne 2f, r0, 31 + + lmbd r0, r16, r15 + qbne 2f, r0, 31 + + lmbd r0, r16, 1 + qbne 2f, r0, 30 + + lmbd r0, r14.w1, 1 + qbne 2f, r0, 15 + + lmbd r0, r17.b0, 1 + qbne 2f, r0, 3 + + lmbd r0, r17.b0, r15 + qbne 2f, r0, 7 + + +1: + pass +2: fail |