Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / arch / x86 / tests / gen-insn-x86-dat.sh
blob0d0a003a9c5eaca76487ca4f090b735139b6a90a
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0-only
3 # gen-insn-x86-dat: generate data for the insn-x86 test
4 # Copyright (c) 2015, Intel Corporation.
7 set -e
9 if [ "$(uname -m)" != "x86_64" ]; then
10 echo "ERROR: This script only works on x86_64"
11 exit 1
14 cd $(dirname $0)
16 trap 'echo "Might need a more recent version of binutils"' EXIT
18 echo "Compiling insn-x86-dat-src.c to 64-bit object"
20 gcc -g -c insn-x86-dat-src.c
22 objdump -dSw insn-x86-dat-src.o | awk -f gen-insn-x86-dat.awk > insn-x86-dat-64.c
24 rm -f insn-x86-dat-src.o
26 echo "Compiling insn-x86-dat-src.c to 32-bit object"
28 gcc -g -c -m32 insn-x86-dat-src.c
30 objdump -dSw insn-x86-dat-src.o | awk -f gen-insn-x86-dat.awk > insn-x86-dat-32.c
32 rm -f insn-x86-dat-src.o
34 trap - EXIT
36 echo "Done (use git diff to see the changes)"