binutils-gdb/gdb/syscalls/update-linux-from-src.sh
Tom de Vries 192257c998 [gdb/tdep] Add gdb/syscalls/update-linux-from-src.sh
Add a new script gdb/syscalls/update-linux-from-src.sh, that can be used to
generate *-linux.xml.in files from linux kernel sources, like so:
...
$ ./update-linux-from-src.sh ~/upstream/linux-stable.git
Skipping aarch64-linux.xml.in, no syscall.tbl
Generating amd64-linux.xml.in
Skipping arm-linux.xml.in, use arm-linux.py instead
Skipping bfin-linux.xml.in, no longer supported
Generating i386-linux.xml.in
Generating mips-n32-linux.xml.in
Generating mips-n64-linux.xml.in
Generating mips-o32-linux.xml.in
Generating ppc64-linux.xml.in
Generating ppc-linux.xml.in
Generating s390-linux.xml.in
Generating s390x-linux.xml.in
Generating sparc64-linux.xml.in
Generating sparc-linux.xml.in
...

Update *-linux.xml.in and *-linux.xml using linux kernel tag v5.18-rc6.
2022-05-18 11:56:32 +02:00

170 lines
3.6 KiB
Bash
Executable File

#!/bin/sh
# Copyright (C) 2022 Free Software Foundation, Inc.
#
# This file is part of GDB.
#
# 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/>.
# Used to generate .xml.in files, like so:
# $ ./update-linux-from-src.sh ~/linux-stable.git
if [ $# -lt 1 ]; then
echo "dir argument needed"
exit 1
fi
d="$1"
shift
if [ ! -d "$d" ]; then
echo "cannot find $d"
exit 1
fi
pre ()
{
f="$1"
year=$(date +%Y)
cat <<EOF
<?xml version="1.0"?>
<!-- Copyright (C) $start_date-$year Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. -->
<!DOCTYPE feature SYSTEM "gdb-syscalls.dtd">
<!-- This file was generated using the following file:
$f
The file mentioned above belongs to the Linux Kernel. -->
EOF
echo '<syscalls_info>'
}
post ()
{
echo '</syscalls_info>'
}
one ()
{
f="$1"
abi="$2"
start_date="$3"
offset="$4"
pre "$f" "$start_date"
grep -v "^#" "$d/$f" \
| awk '{print $2, $3, $1}' \
| grep -E "^$abi" \
| grep -E -v " (reserved|unused)[0-9]+ " \
| awk "{printf \" <syscall name=\\\"%s\\\" number=\\\"%s\\\"/>\n\", \$2, \$3 + $offset}"
post
}
for f in *.in; do
start_date=2009
offset=0
case $f in
amd64-linux.xml.in)
t="arch/x86/entry/syscalls/syscall_64.tbl"
abi="(common|64)"
;;
i386-linux.xml.in)
t="arch/x86/entry/syscalls/syscall_32.tbl"
abi=i386
;;
ppc64-linux.xml.in)
t="arch/powerpc/kernel/syscalls/syscall.tbl"
abi="(common|64|nospu)"
;;
ppc-linux.xml.in)
t="arch/powerpc/kernel/syscalls/syscall.tbl"
abi="(common|32|nospu)"
;;
s390-linux.xml.in)
t="arch/s390/kernel/syscalls/syscall.tbl"
abi="(common|32)"
;;
s390x-linux.xml.in)
t="arch/s390/kernel/syscalls/syscall.tbl"
abi="(common|64)"
;;
sparc64-linux.xml.in)
t="arch/sparc/kernel/syscalls/syscall.tbl"
abi="(common|64)"
start_date="2010"
;;
sparc-linux.xml.in)
t="arch/sparc/kernel/syscalls/syscall.tbl"
abi="(common|32)"
start_date="2010"
;;
mips-n32-linux.xml.in)
t="arch/mips/kernel/syscalls/syscall_n32.tbl"
abi="n32"
start_date="2011"
offset=6000
;;
mips-n64-linux.xml.in)
t="arch/mips/kernel/syscalls/syscall_n64.tbl"
abi="n64"
start_date="2011"
offset=5000
;;
mips-o32-linux.xml.in)
t="arch/mips/kernel/syscalls/syscall_o32.tbl"
abi="o32"
start_date="2011"
offset=4000
;;
bfin-linux.xml.in)
echo "Skipping $f, no longer supported"
continue
;;
aarch64-linux.xml.in)
echo "Skipping $f, no syscall.tbl"
continue
;;
arm-linux.xml.in)
echo "Skipping $f, use arm-linux.py instead"
continue
;;
linux-defaults.xml.in)
continue
;;
*)
echo "Don't know how to generate $f"
continue
;;
esac
echo "Generating $f"
one "$t" "$abi" "$start_date" "$offset" > "$f"
done