summaryrefslogtreecommitdiff
path: root/tools/perf/arch/loongarch/entry/syscalls/mksyscalltbl
blob: c52156f7204d45b8ab31a15486b9cc386c4e6049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
#
# Generate system call table for perf. Derived from
# powerpc script.
#
# Author(s):  Ming Wang <wangming01@loongson.cn>
# Author(s):  Huacai Chen <chenhuacai@loongson.cn>
# Copyright (C) 2020-2023 Loongson Technology Corporation Limited

gcc=$1
hostcc=$2
incpath=$3
input=$4

if ! test -r $input; then
	echo "Could not read input file" >&2
	exit 1
fi

create_table_from_c()
{
	local sc nr last_sc

	create_table_exe=`mktemp ${TMPDIR:-/tmp}/create-table-XXXXXX`

	{

	cat <<-_EoHEADER
		#include <stdio.h>
		#include "$input"
		int main(int argc, char *argv[])
		{
	_EoHEADER

	while read sc nr; do
		printf "%s\n" "	printf(\"\\t[%d] = \\\"$sc\\\",\\n\", $nr);"
		last_sc=$nr
	done

	printf "%s\n" "	printf(\"#define SYSCALLTBL_LOONGARCH_MAX_ID %d\\n\", $last_sc);"
	printf "}\n"

	} | $hostcc -I $incpath/include/uapi -o $create_table_exe -x c -

	$create_table_exe

	rm -f $create_table_exe
}

create_table()
{
	echo "static const char *syscalltbl_loongarch[] = {"
	create_table_from_c
	echo "};"
}

$gcc -E -dM -x c  -I $incpath/include/uapi $input	       \
	|sed -ne 's/^#define __NR_//p' \
	|sort -t' ' -k2 -n \
	|create_table