mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
a2c5833233
The result of running etc/update-copyright.py --this-year, fixing all the files whose mode is changed by the script, plus a build with --enable-maintainer-mode --enable-cgen-maint=yes, then checking out */po/*.pot which we don't update frequently. The copy of cgen was with commit d1dd5fcc38ead reverted as that commit breaks building of bfp opcodes files.
74 lines
2.6 KiB
Bash
Executable File
74 lines
2.6 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# arm_branch_in_range.sh -- test ARM/THUMB/THUMB branch instructions whose
|
|
# targets are just within the branch range limits.
|
|
|
|
# Copyright (C) 2010-2022 Free Software Foundation, Inc.
|
|
# Written by Doug Kwan <dougkwan@google.com>
|
|
|
|
# This file is part of gold.
|
|
|
|
# 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, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
|
|
# This file goes with the assembler source files arm_bl_in_range.s
|
|
# thumb_bl_in_range.s that are assembled and linked to check that branches
|
|
# whose target are just within the branch range limits are handle correctly.
|
|
|
|
check()
|
|
{
|
|
file=$1
|
|
pattern=$2
|
|
|
|
found=`grep "$pattern" $file`
|
|
if test -z "$found"; then
|
|
echo "pattern \"$pattern\" not found in file $file."
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# This is a bit crude. Also, there are tabs in the grep patterns.
|
|
|
|
check arm_bl_in_range.stdout \
|
|
" 4000004: eb800000 bl 200000c <_backward_target>"
|
|
check arm_bl_in_range.stdout \
|
|
" 4000008: eb7fffff bl 600000c <_forward_target>"
|
|
check thumb_bl_in_range.stdout \
|
|
" 800004: f400 f800 bl 400008 <_backward_target>"
|
|
check thumb_bl_in_range.stdout \
|
|
" 800008: f3ff ffff bl c0000a <_forward_target>"
|
|
check thumb2_bl_in_range.stdout \
|
|
" 2000004: f400 d000 bl 1000008 <_backward_target>"
|
|
check thumb2_bl_in_range.stdout \
|
|
" 2000008: f3ff d7ff bl 300000a <_forward_target>"
|
|
check thumb_blx_in_range.stdout \
|
|
" 800006: f400 e800 blx 400008 <_backward_target>"
|
|
check thumb_blx_in_range.stdout \
|
|
" 80000c: f3ff effe blx c0000c <_forward_target>"
|
|
check thumb2_blx_in_range.stdout \
|
|
" 2000006: f400 c000 blx 1000008 <_backward_target>"
|
|
check thumb2_blx_in_range.stdout \
|
|
" 200000c: f3ff c7fe blx 300000c <_forward_target>"
|
|
check arm_thm_jump11.stdout \
|
|
" 8804: e400 b.n 8008 <_backward_target>"
|
|
check arm_thm_jump11.stdout \
|
|
" 8806: e3ff b.n 9008 <_forward_target>"
|
|
check arm_thm_jump8.stdout \
|
|
" 8104: d080 beq.n 8008 <_backward_target>"
|
|
check arm_thm_jump8.stdout \
|
|
" 8106: d07f beq.n 8208 <_forward_target>"
|
|
|
|
exit 0
|