d9fd5a7189
Grab a copy of arch/mips/kernel/syscalls/syscall_n64.tbl and use it to
generate tools/perf/arch/mips/include/generated/asm/syscalls_n64.c file,
this is similar with commit 1b700c9975
("perf tools: Build syscall
table .c header from kernel's syscall_64.tbl")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Juxin Gao <gaojuxin@loongson.cn>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Cc: Xuefeng Li <lixuefeng@loongson.cn>
Cc: linux-mips@vger.kernel.org
Link: http://lore.kernel.org/lkml/1612409724-3516-4-git-send-email-yangtiezhu@loongson.cn
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
33 lines
677 B
Bash
33 lines
677 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Generate system call table for perf. Derived from
|
|
# s390 script.
|
|
#
|
|
# Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
|
|
# Changed by: Tiezhu Yang <yangtiezhu@loongson.cn>
|
|
|
|
SYSCALL_TBL=$1
|
|
|
|
if ! test -r $SYSCALL_TBL; then
|
|
echo "Could not read input file" >&2
|
|
exit 1
|
|
fi
|
|
|
|
create_table()
|
|
{
|
|
local max_nr nr abi sc discard
|
|
|
|
echo 'static const char *syscalltbl_mips_n64[] = {'
|
|
while read nr abi sc discard; do
|
|
printf '\t[%d] = "%s",\n' $nr $sc
|
|
max_nr=$nr
|
|
done
|
|
echo '};'
|
|
echo "#define SYSCALLTBL_MIPS_N64_MAX_ID $max_nr"
|
|
}
|
|
|
|
grep -E "^[[:digit:]]+[[:space:]]+(n64)" $SYSCALL_TBL \
|
|
|sort -k1 -n \
|
|
|create_table
|