[PATCH 5/57][Arm][GAS] Add support for MVE instructions: vmull{b,t}
[binutils-gdb.git] / gdb / testsuite / gdb.base / bitops.exp
blobed0f08ebb6455db47bfc90eafba04daca523dd26
1 # Copyright 1998-2019 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # This file was written by Elena Zannoni (ezannoni@cygnus.com)
18 # This file is part of the gdb testsuite
20 # tests expressions with bitwise operators, and some
21 # logical operators
22 # Does not use a target program
23
27 # test running programs
31 gdb_exit
32 gdb_start
33 gdb_reinitialize_dir $srcdir/$subdir
36 gdb_test "print !1" ".\[0-9\]* = 0" "print value of !1"
38 gdb_test "print !0" ".\[0-9\]* = 1" "print value of !0"
40 gdb_test "print !100" ".\[0-9\]* = 0" "print value of !100"
42 gdb_test "print !1000" ".\[0-9\]* = 0" "print value of !1000"
44 gdb_test "print !10" ".\[0-9\]* = 0" "print value of !10"
46 gdb_test "print !2" ".\[0-9\]* = 0" "print value of !2 "
48 gdb_test "print 10 | 5" ".\[0-9\]* = 15" "print value of 10 | 5"
50 gdb_test "print 10 & 5" ".\[0-9\]* = 0" "print value of 10 & 5"
52 gdb_test "print 10 ^ 5" ".\[0-9\]* = 15" "print value of 10 ^ 5"
54 gdb_test "print -!0" ".\[0-9\]* = -1" "print value of -!0"
56 gdb_test "print ~-!0" ".\[0-9\]* = 0" "print value of ~-!0"
58 gdb_test "print 3 * 2 / 4.0 * 2.0" ".\[0-9\]* = 3" \
59     "print value of 3 * 2 / 4.0 * 2.0"
61 gdb_test "print 8 << 2 >> 4" ".\[0-9\]* = 2" \
62     "print value of 8 << 2 >> 4"
64 gdb_test "print -1 < 0 > 1" ".\[0-9\]* = 0" \
65     "print value of -1 < 0 > 1"
67 gdb_test "print 15 ^ 10 ^ 5 ^ 7" ".\[0-9\]* = 7" \
68     "print value of 15 ^ 10 ^ 5 ^ 7"
70 gdb_test "print 3.5 < 4.0" ".\[0-9\]* = 1" \
71     "print value of 3.5 < 4.0"
73 gdb_test "print 3.5 < -4.0" ".\[0-9\]* = 0" \
74     "print value of 3.5 < -4.0"
76 gdb_test "print 2 > -3" ".\[0-9\]* = 1" "print value of 2 > -3"
78 gdb_test "print -3>4" ".\[0-9\]* = 0" "print value of -3>4"
80 gdb_test "print (-3 > 4)" ".\[0-9\]* = 0" "print value of (-3 > 4)"
82 gdb_test "print 3>=2.5" ".\[0-9\]* = 1" "print value of 3>=2.5"
84 gdb_test "print 3>=4.5" ".\[0-9\]* = 0" "print value of 3>=4.5"
86 gdb_test "print 3==3.0" ".\[0-9\]* = 1" "print value of 3==3.0"
88 gdb_test "print 3==4.0" ".\[0-9\]* = 0" "print value of 3==4.0"
90 gdb_test "print 3!=3.0" ".\[0-9\]* = 0" "print value of 3!=3.0"
92 gdb_test "print 3!=5.0" ".\[0-9\]* = 1" "print value of 3!=5.0"
94 gdb_test "print 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2" \
95     ".\[0-9\]* = 0" \
96     "print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2"
98 gdb_test "print 1.0 || 0" ".\[0-9\]* = 1" \
99     "print value of 1.0 || 0"
101 gdb_test "print 0.0 || 1.0" ".\[0-9\]* = 1" \
102     "print value of 0.0 || 1.0"
104 gdb_test "print 0.0 || 0" ".\[0-9\]* = 0" \
105     "print value of 0.0 || 0"
107 gdb_test "print 0 || 1 && 0 | 0 ^ 0 == 8" ".\[0-9\]* = 0" \
108     "print value of 0 || 1 && 0 | 0 ^ 0 == 8"
110 gdb_test "print 0 == 8 > 128 >> 1 + 2 * 2" ".\[0-9\]* = 0" \
111     "print value of 0 == 8 > 128 >> 1 + 2 * 2"