gentbl.sh 1.1 KB
Newer Older
1
#!/bin/sh
2
# Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
8
#
# SPDX-License-Identifier: BSD-3-Clause

set -e

output=jmptbl.s
9
build=.
10
11
12
13
14
15
16
17

for i
do
	case $i in
	-o)
		output=$2
		shift 2
		;;
18
19
20
21
	-b)
		build=$2
		shift 2
		;;
22
23
24
25
	--bti=*)
		enable_bti=$(echo $1 | sed 's/--bti=\(.*\)/\1/')
		shift 1
		;;
26
27
28
29
30
	--)
		shift
		break
		;;
	-*)
31
		echo usage: gentbl.sh [-o output] [-b dir] file ... >&2
32
33
34
35
36
37
		exit 1
		;;
	esac
done

tmp=`mktemp`
38
trap "rm -f $$.tmp" EXIT INT QUIT
39
40
rm -f $output

41
42
43
44
45
46
47
48
49
50
51
52
53
# Pre-process include files
awk '!/^$/ && !/[:blank:]*#.*/{
if (NF == 2 && $1 == "include") {
	while ((getline line < $2) > 0)
		if (line !~ /^$/ && line !~ /[:blank:]*#.*/)
			print line
		close($2)
} else
	print
}' "$@" |
awk -v OFS="\t" '
BEGIN{print "#index\tlib\tfunction\t[patch]"}
{print NR-1, $0}' | tee $build/jmptbl.i |
54
awk -v OFS="\n" -v BTI=$enable_bti '
55
56
57
58
BEGIN {print "\t.text",
             "\t.globl\tjmptbl",
             "jmptbl:"}
      {sub(/[:blank:]*#.*/,"")}
59
60
61
62
!/^$/ {
	if (BTI == 1)
		print "\tbti\tj"
	if ($3 == "reserved")
63
64
65
66
		print "\t.word\t0x0"
	else
		print "\tb\t" $3}' > $$.tmp &&
mv $$.tmp $output