/usr/bin/pocl-standalone is in libpocl1-common 0.13-8.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | #!/bin/sh
# pocl-standalone - Run parallelization passes directly on an OpenCL source
# file and generate a parallel bytecode and a kernel description
# header file.
#
# Copyright (c) 2011-2012 Carlos Sánchez de La Lama / URJC and
# 2011-2013 Pekka Jääskeläinen / TUT
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
set -e # Abort on errors
if [ -n "$POCL_VERBOSE" ]; then
set -x
echo 0=$0 @=$@
fi
target=x86_64-pc-linux-gnu
while getopts h:t:o: o
do
case "$o" in
h) header="${OPTARG}";;
t) target="${OPTARG}";;
o) output_file="${OPTARG}";;
[?]) echo >&2 "Usage: $0 -o <output_file> <input_file>" && exit 1;;
esac
done
shift $((${OPTIND}-1))
if [ "x$header" = x ]
then
echo >&2 "Usage: $0 [-t target] -h <header> -o <output_file> <input_file>" && exit 1
fi
if [ "x$output_file" = x ]
then
echo >&2 "Usage: $0 [-t target] -h <header> -o <output_file> <input_file>" && exit 1
fi
case $target in
tce*) target_dir="tce"
target="tce-tut-llvm"
;;
*) target_dir="host";;
esac
case $target in
tce*) CLANG_FLAGS=""
LLC_FLAGS=""
LD_FLAGS="";;
x86_64-pc-linux-gnu) CLANG_FLAGS="--target=x86_64-pc-linux-gnu -march=x86-64 -D_CL_DISABLE_HALF"
DEVICE_CL_FLAGS="-Dcl_khr_byte_addressable_store -Dcl_khr_global_int32_base_atomics -Dcl_khr_global_int32_extended_atomics -Dcl_khr_local_int32_base_atomics -Dcl_khr_local_int32_extended_atomics -Dcl_khr_spir -Dcl_khr_int64 -Dcl_khr_fp64 -Dcl_khr_int64_base_atomics -Dcl_khr_int64_extended_atomics"
LLC_FLAGS="-relocation-model=pic -mtriple=x86_64-pc-linux-gnu -mcpu=x86-64"
LD_FLAGS="-shared -lm";;
x86_64-pc-linux-gnu) CLANG_FLAGS=""
LLC_FLAGS=""
LD_FLAGS="";;
esac
CLANG_FLAGS="$CLANG_FLAGS -fasm -fsigned-char -Xclang -ffake-address-space-map"
# With fp-contract we get calls to fma with processors which do not
# have fma instructions. These ruin the performance. Better to have
# the mul+add separated in the IR.
CLANG_FLAGS="$CLANG_FLAGS -ffp-contract=off"
tempdir="`dirname ${output_file}`/.pocl$$"
mkdir ${tempdir}
kernel_bc="${tempdir}/kernel.bc"
pocl_kernel_compiler_lib=/usr/lib/x86_64-linux-gnu/pocl/llvmopencl.so
/usr/lib/llvm-3.8/bin/clang ${CLANG_FLAGS} ${DEVICE_CL_FLAGS} $EXTRA_CLANG_FLAGS -c -emit-llvm -include /usr/share/pocl/include/_kernel.h -o ${kernel_bc} -x cl $1
rm -f ${header}
/usr/lib/llvm-3.8/bin/opt ${LLC_FLAGS} -load=$pocl_kernel_compiler_lib -generate-header -disable-output -header=${header} ${kernel_bc}
linked_bc="${tempdir}/linked.bc"
linked_out="${linked_bc}.out"
full_target_dir="/usr/share/pocl"
/usr/lib/llvm-3.8/bin/llvm-link -o ${linked_bc} ${kernel_bc} $full_target_dir/kernel-$target.bc
OPT_SWITCH="-O3"
if test "x$POCL_KERNEL_COMPILER_OPT_SWITCH" != "x";
then
OPT_SWITCH=$POCL_KERNEL_COMPILER_OPT_SWITCH
fi
EXTRA_OPTS=""
# -disable-simplify-libcalls was added because of TCE (it doesn't have
# a runtime linker which could link the libs later on), but it might
# also be harmful for wg-vectorization where we want to try to vectorize
# the code it wants to convert e.g. to a memset or a memcpy
/usr/lib/llvm-3.8/bin/opt ${LLC_FLAGS} \
-load=${pocl_kernel_compiler_lib} -domtree -workitem-handler-chooser -break-constgeps -generate-header -flatten -always-inline \
-globaldce -simplifycfg -loop-simplify -uniformity -phistoallocas -isolate-regions -implicit-loop-barriers -implicit-cond-barriers \
-loop-barriers -barriertails -barriers -isolate-regions -add-wi-metadata -wi-aa -workitemrepl -workitemloops \
-allocastoentry -workgroup -kernel=${kernel} -disable-simplify-libcalls \
-target-address-spaces \
${EXTRA_OPTS} ${OPT_SWITCH} -instcombine -header=/dev/null ${FP_CONTRACT} -o ${output_file} ${linked_bc}
rm -fr ${tempdir}
|