[libclc] 28/92: Add script to check for unresolved function calls

Andreas Boll aboll-guest at moszumanska.debian.org
Mon Nov 6 15:11:57 UTC 2017


This is an automated email from the git hooks/post-receive script.

aboll-guest pushed a commit to branch master
in repository libclc.

commit 7f080098c43838ec31330648cf2a23d1614c2546
Author: Jan Vesely <jan.vesely at rutgers.edu>
Date:   Fri Sep 29 19:06:48 2017 +0000

    Add script to check for unresolved function calls
    
    v2: add shell shebang
        improve error checks and reporting
    v3: fix typo
    
    Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
    Reviewed-by: Aaron Watry <awatry at gmail.com>
    
    git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@314546 91177308-0d34-0410-b5e6-96231b3b80d8
---
 check_external_calls.sh | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/check_external_calls.sh b/check_external_calls.sh
new file mode 100755
index 0000000..ad1d8c2
--- /dev/null
+++ b/check_external_calls.sh
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+FILE=$1
+if [ ! -f $FILE ]; then
+	echo "ERROR: Not a file: $FILE"
+	exit 3
+fi
+ret=0
+if [ "x$LLVM_CONFIG" = "x" ]; then
+	LLVM_CONFIG=llvm-config
+	echo 'WARNING: $LLVM_CONFIG not set, falling back to $PATH llvm-config'
+	ret=2
+fi
+
+
+BIN_DIR=$($LLVM_CONFIG --bindir)
+DIS="$BIN_DIR/llvm-dis"
+if [ ! -x $DIS ]; then
+	echo "ERROR: Disassembler '$DIS' is not executable"
+	exit 3
+fi
+
+TMP_FILE=$(mktemp)
+
+# Check for calls. Calls to llvm intrinsics are OK
+$DIS < $FILE | grep ' call ' | grep -v '@llvm' > "$TMP_FILE"
+
+if [ $(wc -l < "$TMP_FILE") -ne "0" ]; then
+	echo "ERROR: unresolved calls detected"
+	cat $TMP_FILE
+	ret=1
+else
+	echo "File $FILE is OK"
+fi
+exit $ret

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opencl/libclc.git



More information about the Pkg-opencl-commits mailing list